gettext_noop() should be used for some old system.
This commit is contained in:
parent
db92c6c6cc
commit
a5fdc5cf3a
10 changed files with 20 additions and 20 deletions
|
|
@ -115,12 +115,12 @@ SDL_Surface * snow_get_icon(magic_api * api, int which){
|
|||
|
||||
// Return our names, localized:
|
||||
char * snow_get_name(magic_api * api, int which){
|
||||
return(strdup(gettext(snow_names[which])));
|
||||
return(strdup(gettext_noop(snow_names[which])));
|
||||
}
|
||||
|
||||
// Return our descriptions, localized:
|
||||
char * snow_get_description(magic_api * api, int which){
|
||||
return(strdup(gettext(snow_descs[which])));
|
||||
return(strdup(gettext_noop(snow_descs[which])));
|
||||
}
|
||||
|
||||
// Do the effect:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue