Improve translators comments. (#389298, Christian Persch)

2006-12-24  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtkaccellabel.c: Improve translators comments.
        (#389298, Christian Persch)
This commit is contained in:
Matthias Clasen 2006-12-24 22:12:13 +00:00 committed by Matthias Clasen
parent 1e16587901
commit 502a54a17c
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2006-12-24 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaccellabel.c: Improve translators comments.
(#389298, Christian Persch)
2006-12-24 Bastien Nocera <hadess@hadess.net>
* gtk/gtkrecentmanager.c: Fix typo (s/expansive/expensive)

View File

@ -84,21 +84,24 @@ gtk_accel_label_class_init (GtkAccelLabelClass *class)
* that use the shift key. If the text on this key isn't typically
* translated on keyboards used for your language, don't translate
* this.
* And do not translate the part before the |.
*
* Don't include the prefix "keyboard label|" in the translation.
*/
class->mod_name_shift = g_strdup (Q_("keyboard label|Shift"));
/* This is the text that should appear next to menu accelerators
* that use the control key. If the text on this key isn't typically
* translated on keyboards used for your language, don't translate
* this.
* And do not translate the part before the |.
*
* Don't include the prefix "keyboard label|" in the translation.
*/
class->mod_name_control = g_strdup (Q_("keyboard label|Ctrl"));
/* This is the text that should appear next to menu accelerators
* that use the alt key. If the text on this key isn't typically
* translated on keyboards used for your language, don't translate
* this.
* And do not translate the part before the |.
*
* Don't include the prefix "keyboard label|" in the translation.
*/
class->mod_name_alt = g_strdup (Q_("keyboard label|Alt"));
class->mod_separator = g_strdup ("+");