Fixing English bugs in some magic tools ;) and updated en_GB.po

This commit is contained in:
secretlondon 2008-08-26 03:52:51 +00:00
parent cfa3f04d8b
commit c801b3e3fa
4 changed files with 130 additions and 189 deletions

View file

@ -62,7 +62,7 @@ SDL_Surface * confetti_get_icon(magic_api * api, int which)
char * confetti_get_name(magic_api * api, int which) { return strdup(gettext_noop("Confetti")); }
char * confetti_get_description(magic_api * api, int which, int mode) { return strdup(gettext_noop("Click to throw a confetti!")); }
char * confetti_get_description(magic_api * api, int which, int mode) { return strdup(gettext_noop("Click to throw confetti!")); }
int confetti_requires_colors(magic_api * api, int which) { return 1; }

View file

@ -126,7 +126,7 @@ char * distortion_get_name(magic_api * api, int which)
char * distortion_get_description(magic_api * api, int which, int mode)
{
return(strdup(gettext_noop("Click and drag the mouse to cause a distortion in your picture.")));
return(strdup(gettext_noop("Click and drag the mouse to cause distortion in your picture.")));
}
// Report whether we accept colors

View file

@ -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")); }
char * fisheye_get_description(magic_api * api, int which, int mode) { return strdup(gettext_noop("Select an area of the image to create fisheye effect")); }
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")); }
int fisheye_requires_colors(magic_api * api, int which) { return 0; }