Being more consistent w/ use of gettext()/_noop()

...in Magic tools (for names & descriptions / tool-tips).
This commit is contained in:
Bill Kendrick 2024-10-07 21:44:08 -07:00
parent 0a2f406765
commit 244ab1d6f2
58 changed files with 212 additions and 205 deletions

View file

@ -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));
}