GNOME Bugzilla – Bug 707439
empty string must not be localized
Last modified: 2016-03-31 13:22:07 UTC
At src/main.vala:15, "" is set to use gettext. This should not be done, as "" has special meaning in gettext and will return information about the locale which should not be necessary for this application to access.
Created attachment 254051 [details] [review] main: Don't attempt to translate "" During the refactoring done in commit 0d6c295, we ended up passing _("") to g_option context_new(). This is a bad thing to do as "" is a magic string for gettext. g_option_context_new() can handle NULL, so let's use that here.
Review of attachment 254051 [details] [review]: ack
Attachment 254051 [details] pushed as f6fcb4d - main: Don't attempt to translate ""