GNOME Bugzilla – Bug 682808
Fix misuse of N_()
Last modified: 2016-03-31 13:57:17 UTC
There are a few places where N_() is used without calling gettext() on the returned string. However, glib documentation for N_() says: "Only marks a string for translation. This is useful in situations where the translated strings can't be directly used, e.g. in string array initializers. To get the translated string, call gettext() at runtime." Since these uses are in places where _() can safely be called, use that instead.
Created attachment 222560 [details] [review] Fix misuse of N_()
Review of attachment 222560 [details] [review]: ack
Attachment 222560 [details] pushed as f43ac67 - Fix misuse of N_()