More attempts to simplify and standardise the language of the new magic tools.

This commit is contained in:
secretlondon 2008-08-28 21:34:52 +00:00
parent ff84a1752f
commit ee8020589a
9 changed files with 24 additions and 24 deletions

View file

@ -65,13 +65,13 @@ const char * tint_icon_filenames[tint_NUM_TOOLS] = {
};
const char * tint_names[tint_NUM_TOOLS] = {
gettext_noop("Tint"),
gettext_noop("Threshold")
gettext_noop("Threshold") // We must be able to come up with a better name than this.
};
const char * tint_descs[tint_NUM_TOOLS][2] = {
{gettext_noop("Click and move the mouse around to change the color of parts of the picture."),
gettext_noop("Click to change the color of the entire image."),},
{gettext_noop("Click and move the mouse around to turn the image into pure color and white regions."),
gettext_noop("Click to turn the entire image into pure color and white regions.")}
{gettext_noop("Click and move the mouse around to change the color of parts of your picture."),
gettext_noop("Click to change the color of your entire picture."),},
{gettext_noop("Click and move the mouse around to turn parts of your picture into color and white."),
gettext_noop("Click to turn your entire picture into color and white.")}
};
Uint32 tint_api_version(void) { return(TP_MAGIC_API_VERSION); }