diff --git a/magic/src/fisheye.c b/magic/src/fisheye.c index 04e31938f..e3ee4e7f5 100644 --- a/magic/src/fisheye.c +++ b/magic/src/fisheye.c @@ -74,7 +74,7 @@ SDL_Surface * fisheye_get_icon(magic_api * api, int which) return(IMG_Load(fname)); } -char * fisheye_get_name(magic_api * api, int which) { return strdup(gettext_noop("Fisheye")); } +char * fisheye_get_name(magic_api * api, int which) { return strdup(gettext_noop("Fisheye")); } //Needs better name char * fisheye_get_description(magic_api * api, int which, int mode) { return strdup(gettext_noop("Select an area of the image to create the fisheye effect")); } diff --git a/magic/src/rosette.c b/magic/src/rosette.c index d274f14fb..74496c7ab 100644 --- a/magic/src/rosette.c +++ b/magic/src/rosette.c @@ -92,9 +92,9 @@ char * rosette_get_name(magic_api * api, int which) { if (!which) return strdup( char * rosette_get_description(magic_api * api, int which, int mode) { if (!which) - return strdup(gettext_noop("Click and start drawing your rosette.")); + return strdup(gettext_noop("Click and start drawing your rosette.")); //just k'scope with 3 bits? else - return strdup(gettext_noop("You can draw just like Picasso!")); + return strdup(gettext_noop("You can draw just like Picasso!")); //what is this actually doing? } int rosette_requires_colors(magic_api * api, int which) { return 1; } diff --git a/magic/src/tint.c b/magic/src/tint.c index 8b7dc81a4..77dfc6fb5 100644 --- a/magic/src/tint.c +++ b/magic/src/tint.c @@ -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") // We must be able to come up with a better name than this. + gettext_noop("Black and White") // It does more than this but more intuitive than threshold. }; const char * tint_descs[tint_NUM_TOOLS][2] = { {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.")} + {gettext_noop("Click and move the mouse around to turn parts of your picture into black and white."), + gettext_noop("Click to turn your entire picture into black and white.")} }; Uint32 tint_api_version(void) { return(TP_MAGIC_API_VERSION); }