Being more consistent w/ use of gettext()/_noop()
...in Magic tools (for names & descriptions / tool-tips).
This commit is contained in:
parent
0a2f406765
commit
244ab1d6f2
58 changed files with 212 additions and 205 deletions
|
|
@ -115,7 +115,7 @@ SDL_Surface *ribbon_get_icon(magic_api * api, int which ATTRIBUTE_UNUSED)
|
|||
// Return our names, localized:
|
||||
char *ribbon_get_name(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return (strdup(gettext_noop("Ribbon")));
|
||||
return (strdup(gettext("Ribbon")));
|
||||
}
|
||||
|
||||
// Return our group:
|
||||
|
|
@ -133,7 +133,7 @@ int ribbon_get_order(int which ATTRIBUTE_UNUSED)
|
|||
// Return our descriptions, localized:
|
||||
char *ribbon_get_description(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return (strdup(gettext_noop("Add a flowing ribbon to your picture.")));
|
||||
return (strdup(gettext("Add a flowing ribbon to your picture.")));
|
||||
}
|
||||
|
||||
// Do the effect:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue