String cleanup.

This commit is contained in:
William Kendrick 2008-08-18 22:00:47 +00:00
parent 6c3893fd41
commit 6169f461b0
3 changed files with 3 additions and 2 deletions

View file

@ -39,6 +39,7 @@ $Id$
+ Rails - Draws train tracks / rails over the image.
+ TV - Adds television (CRT) interlacing lines over the image.
+ Rosette - Paints at 3 points on the screen, in a rosette shape.
+ Picasso - Paints at 3 points, in a "Picasso" art style.
By Adam 'foo-script' Rakowski <foo-script@o2.pl>
(Part of Tux4Kids' participation in Google Summer of Code 2008)

View file

@ -92,7 +92,7 @@ char * rosette_get_name(magic_api * api, int which) { if (!which) return strdup(
char * rosette_get_description(magic_api * api, int which, int mode)
{
if (!which)
return strdup(gettext_noop("Click and start drawing your rosette"));
return strdup(gettext_noop("Click and start drawing your rosette."));
else
return strdup(gettext_noop("You can draw just like Picasso!"));
}

View file

@ -71,7 +71,7 @@ SDL_Surface * tv_get_icon(magic_api * api, int which)
char * tv_get_name(magic_api * api, int which) { return strdup(gettext_noop("TV")); }
char * tv_get_description(magic_api * api, int which, int mode) { return strdup(gettext_noop("Your picture will look like in television")); }
char * tv_get_description(magic_api * api, int which, int mode) { return strdup(gettext_noop("Click to make your picture look like it's on television.")); }
int tv_requires_colors(magic_api * api, int which) { return 0; }