Renamed alien to shift color. Tried to fix negative's description

This commit is contained in:
secretlondon 2008-11-01 21:49:10 +00:00
parent 2ffac4bdc6
commit 9ab6854f87
2 changed files with 5 additions and 5 deletions

View file

@ -77,10 +77,10 @@ char * negative_get_description(magic_api * api, int which, int mode)
{
if (mode == MODE_PAINT)
return(strdup(
gettext_noop("Click and move the mouse around to draw a negative."))); /* FIXME: This barely makes sense */
gettext_noop("Click and move the mouse around to make your painting negative."))); /* Does this make more sense? */
else if (mode == MODE_FULLSCREEN)
return(strdup(
gettext_noop("Click to turn the image into its negative.")));
gettext_noop("Click to turn your painting into its negative.")));
else
return(NULL);
}