More English hacking.

This commit is contained in:
secretlondon 2008-09-23 20:44:59 +00:00
parent 77388a8c1b
commit 3aa70784e9
3 changed files with 7 additions and 6 deletions

View file

@ -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."));
}