GNOME Bugzilla – Bug 661481
Delete menu item does not show up translated
Last modified: 2011-11-14 07:13:59 UTC
The Edit -> Delete menu item does not show up translated. This is because a translation context is used incorrectly in the GtkActionEntry definition. The context was added in bug #571359. If you want to use a translation context, you need to use the g_dpgettext2() call to localize the string: http://developer.gnome.org/glib/stable/glib-I18N.html#NC-:CAPS The default function to localize GtkActionEntrys is gettext(), it would be necessary to replace it with g_dpgettext2() using gtk_action_group_set_translate_func(). But using a context here is not needed anymore, as the other occurrence of the _Delete string is not anymore in the source. The simplest solution would be to convert the context to a translator comment - it looks like one anyways.
Created attachment 198805 [details] [review] Convert the context into a comment This would count as a string freeze break, please ask for an approval on gnome-i18n@. You need two, hereby I give one :).
Ping?
Thanks. Merged into seahorse master.