GNOME Bugzilla – Bug 673766
Rotation combo box items do not appear localized
Last modified: 2012-04-10 15:04:29 UTC
The rotation combo box items on the Displays panel do not appear translated. This is because the items got translation context support in [0], but to get the localized strings, one needs to use g_dpgettext2()[1], not gettext(). This change didn't happened. [0]: http://git.gnome.org/browse/gnome-control-center/commit/panels/display/cc-display-panel.c?id=5a5a037d09787da48f3c8b60ca5ce6dcb5ebcbf3 [1]: http://developer.gnome.org/glib/stable/glib-I18N.html#NC-:CAPS
Created attachment 211612 [details] [review] Trivial patch: use correct function
Could just use C_() here
actually, no, you can't
Committed with a more verbose commit message, and coding style fixes. Thanks!