From 9ab6854f87bcd4f76e429dafc31cc54fed009d2c Mon Sep 17 00:00:00 2001 From: secretlondon Date: Sat, 1 Nov 2008 21:49:10 +0000 Subject: [PATCH] Renamed alien to shift color. Tried to fix negative's description --- magic/src/alien.c | 6 +++--- magic/src/negative.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/magic/src/alien.c b/magic/src/alien.c index 985b601c4..2ba5e6ae3 100644 --- a/magic/src/alien.c +++ b/magic/src/alien.c @@ -61,11 +61,11 @@ const char * alien_icon_filenames[alien_NUM_TOOLS] = { "alien.png", }; const char * alien_names[alien_NUM_TOOLS] = { - gettext_noop("Alien"), + gettext_noop("Color Shift"), }; 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 to give your entire picture an \"alien\" appearance."),}, + {gettext_noop("Click and move the mouse to change the colors in parts of your picture."), + gettext_noop("Click to change the colors in your entire picture."),}, }; Uint32 alien_api_version(void) { return(TP_MAGIC_API_VERSION); } diff --git a/magic/src/negative.c b/magic/src/negative.c index 94ed34f24..b8ac9ff8e 100644 --- a/magic/src/negative.c +++ b/magic/src/negative.c @@ -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); }