GNOME Bugzilla – Bug 649159
i18n of column headers does not work
Last modified: 2011-05-02 10:50:51 UTC
When opening an archive, the column headers (Size, Type, Date Modified and Location) in the list of the archive contents do not show up translated. This is because these are marked for translation with NC_ (in src/fr-window.c), but a plain gettext call is used later to actually translate them. Docs[1] say g_dpgettext2() has to be used with the NC_ macro. This was introduced in bug #611359 which was just asking for translator comment, not context. [1]: http://developer.gnome.org/glib/stable/glib-I18N.html#NC-:CAPS
Created attachment 187014 [details] [review] Replace NC_ with N_, add translator comment
I think it's better to keep the context and use g_dpgettext2
Created attachment 187019 [details] [review] Use the g_dpgettext2 function As you wish.
patch pushed to master, thank you.