String cleanup.
This commit is contained in:
parent
6c3893fd41
commit
6169f461b0
3 changed files with 3 additions and 2 deletions
|
|
@ -39,6 +39,7 @@ $Id$
|
||||||
+ Rails - Draws train tracks / rails over the image.
|
+ Rails - Draws train tracks / rails over the image.
|
||||||
+ TV - Adds television (CRT) interlacing lines over the image.
|
+ TV - Adds television (CRT) interlacing lines over the image.
|
||||||
+ Rosette - Paints at 3 points on the screen, in a rosette shape.
|
+ 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>
|
By Adam 'foo-script' Rakowski <foo-script@o2.pl>
|
||||||
(Part of Tux4Kids' participation in Google Summer of Code 2008)
|
(Part of Tux4Kids' participation in Google Summer of Code 2008)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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)
|
char * rosette_get_description(magic_api * api, int which, int mode)
|
||||||
{
|
{
|
||||||
if (!which)
|
if (!which)
|
||||||
return strdup(gettext_noop("Click and start drawing your rosette"));
|
return strdup(gettext_noop("Click and start drawing your rosette."));
|
||||||
else
|
else
|
||||||
return strdup(gettext_noop("You can draw just like Picasso!"));
|
return strdup(gettext_noop("You can draw just like Picasso!"));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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_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; }
|
int tv_requires_colors(magic_api * api, int which) { return 0; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue