From 550374546d69112322e34c5fb40cb7d58d58eb05 Mon Sep 17 00:00:00 2001 From: Karl Ove Hufthammer Date: Sun, 21 Sep 2008 15:26:39 +0000 Subject: [PATCH] Consistent punctuation. --- magic/src/fisheye.c | 2 +- magic/src/fold.c | 2 +- magic/src/puzzle.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/magic/src/fisheye.c b/magic/src/fisheye.c index e3ee4e7f5..0bd3fb92f 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("Select an area of the image to create the fisheye effect.")); } int fisheye_requires_colors(magic_api * api, int which) { return 0; } diff --git a/magic/src/fold.c b/magic/src/fold.c index f8b4c94d4..f8dfe96d4 100644 --- a/magic/src/fold.c +++ b/magic/src/fold.c @@ -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 diff --git a/magic/src/puzzle.c b/magic/src/puzzle.c index 652345568..d45283e20 100755 --- a/magic/src/puzzle.c +++ b/magic/src/puzzle.c @@ -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,