gettext_noop() should be used for some old system.

This commit is contained in:
Shin-ichi TOYAMA 2009-05-26 16:10:00 +00:00
parent db92c6c6cc
commit a5fdc5cf3a
10 changed files with 20 additions and 20 deletions

View file

@ -66,12 +66,12 @@ SDL_Surface * realrainbow_get_icon(magic_api * api, int which)
char * realrainbow_get_name(magic_api * api, int which)
{
return(strdup(gettext("Real Rainbow")));
return(strdup(gettext_noop("Real Rainbow")));
}
char * realrainbow_get_description(magic_api * api, int which, int mode)
{
return(strdup(gettext("Click where you want your rainbow to start, drag to where you want it to end, and then let go to draw a rainbow.")));
return(strdup(gettext_noop("Click where you want your rainbow to start, drag to where you want it to end, and then let go to draw a rainbow.")));
}
int realrainbow_modes(magic_api * api, int which)