Renamed alien to shift color. Tried to fix negative's description
This commit is contained in:
parent
2ffac4bdc6
commit
9ab6854f87
2 changed files with 5 additions and 5 deletions
|
|
@ -61,11 +61,11 @@ const char * alien_icon_filenames[alien_NUM_TOOLS] = {
|
||||||
"alien.png",
|
"alien.png",
|
||||||
};
|
};
|
||||||
const char * alien_names[alien_NUM_TOOLS] = {
|
const char * alien_names[alien_NUM_TOOLS] = {
|
||||||
gettext_noop("Alien"),
|
gettext_noop("Color Shift"),
|
||||||
};
|
};
|
||||||
const char * alien_descs[alien_NUM_TOOLS][2] = {
|
const char * alien_descs[alien_NUM_TOOLS][2] = {
|
||||||
{gettext_noop("Click and move the mouse to give parts of your picture an \"alien\" appearance."),
|
{gettext_noop("Click and move the mouse to change the colors in parts of your picture."),
|
||||||
gettext_noop("Click to give your entire picture an \"alien\" appearance."),},
|
gettext_noop("Click to change the colors in your entire picture."),},
|
||||||
};
|
};
|
||||||
|
|
||||||
Uint32 alien_api_version(void) { return(TP_MAGIC_API_VERSION); }
|
Uint32 alien_api_version(void) { return(TP_MAGIC_API_VERSION); }
|
||||||
|
|
|
||||||
|
|
@ -77,10 +77,10 @@ char * negative_get_description(magic_api * api, int which, int mode)
|
||||||
{
|
{
|
||||||
if (mode == MODE_PAINT)
|
if (mode == MODE_PAINT)
|
||||||
return(strdup(
|
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)
|
else if (mode == MODE_FULLSCREEN)
|
||||||
return(strdup(
|
return(strdup(
|
||||||
gettext_noop("Click to turn the image into its negative.")));
|
gettext_noop("Click to turn your painting into its negative.")));
|
||||||
else
|
else
|
||||||
return(NULL);
|
return(NULL);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue