Consistent punctuation.

This commit is contained in:
Karl Ove Hufthammer 2008-09-21 15:26:39 +00:00
parent 6c953ea896
commit 550374546d
3 changed files with 4 additions and 4 deletions

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

View file

@ -59,7 +59,7 @@ SDL_Surface * fold_get_icon(magic_api * api, int which)
char * fold_get_name(magic_api * api, int which) { return(gettext_noop("Fold")); }
char * fold_get_description(magic_api * api, int which, int mode) { return strdup(gettext_noop("Choose a background color and click to turn the corner of the page over")); }
char * fold_get_description(magic_api * api, int which, int mode) { return strdup(gettext_noop("Choose a background color and click to turn the corner of the page over.")); }
int fold_requires_colors(magic_api * api, int which) { return 1; } //selected color will be a "backpage" color

View file

@ -81,8 +81,8 @@ 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 to make a puzzle in fullscreen mode"));
return strdup(gettext_noop("Select the area of the image where would you like to make a puzzle."));
return strdup(gettext_noop("Click to make a puzzle in fullscreen mode."));
}
void puzzle_release(magic_api * api, int which,