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
|
|
@ -1,6 +1,6 @@
|
|||
/* halftone.c
|
||||
|
||||
Last updated: January 16, 2024
|
||||
Last updated: October 7, 2024
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -136,7 +136,7 @@ char *halftone_get_name(magic_api * api ATTRIBUTE_UNUSED, int which)
|
|||
const char *our_name_localized;
|
||||
|
||||
our_name_english = names[which];
|
||||
our_name_localized = gettext_noop(our_name_english);
|
||||
our_name_localized = gettext(our_name_english);
|
||||
|
||||
return (strdup(our_name_localized));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue