From 3aa70784e9d4a580bb3fb654f3374c37966bd408 Mon Sep 17 00:00:00 2001 From: secretlondon Date: Tue, 23 Sep 2008 20:44:59 +0000 Subject: [PATCH] More English hacking. --- magic/src/fisheye.c | 2 +- magic/src/puzzle.c | 5 +++-- magic/src/tint.c | 6 +++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/magic/src/fisheye.c b/magic/src/fisheye.c index 0bd3fb92f..2ecaab5da 100644 --- a/magic/src/fisheye.c +++ b/magic/src/fisheye.c @@ -76,7 +76,7 @@ SDL_Surface * fisheye_get_icon(magic_api * api, int which) 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.")); } +char * fisheye_get_description(magic_api * api, int which, int mode) { return strdup(gettext_noop("Click on part of your picture to create a fisheye effect.")); } int fisheye_requires_colors(magic_api * api, int which) { return 0; } diff --git a/magic/src/puzzle.c b/magic/src/puzzle.c index d45283e20..3dde76739 100755 --- a/magic/src/puzzle.c +++ b/magic/src/puzzle.c @@ -41,7 +41,8 @@ static Mix_Chunk * puzzle_snd; static int puzzle_gcd=0; //length of side of each rectangle; 0 is temporary value. -static int puzzle_rect_q=4; //quantity of rectangles when using paint mode. Must be an odd value +static int puzzle_rect_q=4; //quantity of rectangles when using paint mode. Must be an odd value - but +it's even! static int rects_w, rects_h; Uint32 puzzle_api_version(void) { return(TP_MAGIC_API_VERSION); } @@ -81,7 +82,7 @@ char * puzzle_get_name(magic_api * api, int which) char * puzzle_get_description(magic_api * api, int which, int mode) { if (mode==MODE_PAINT) - return strdup(gettext_noop("Select the area of the image where would you like to make a puzzle.")); + return strdup(gettext_noop("Click the part of your picture where would you like a puzzle.")); return strdup(gettext_noop("Click to make a puzzle in fullscreen mode.")); } diff --git a/magic/src/tint.c b/magic/src/tint.c index cdbe373fe..e7b5c36c3 100644 --- a/magic/src/tint.c +++ b/magic/src/tint.c @@ -69,13 +69,13 @@ const char * tint_icon_filenames[tint_NUM_TOOLS] = { }; const char * tint_names[tint_NUM_TOOLS] = { gettext_noop("Tint"), - gettext_noop("Separate Colors") // It does more than this but more intuitive than threshold. + gettext_noop("Color & 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 separate colors."), - gettext_noop("Click to turn your entire picture into separate colors.")} + {gettext_noop("Click and move the mouse around to turn parts of your picture into white and a color you choose."), + gettext_noop("Click to turn your entire picture into white and a color you choose.")} }; Uint32 tint_api_version(void) { return(TP_MAGIC_API_VERSION); }