diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-12-24 22:12:13 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-12-24 22:12:13 +0000 |
commit | 502a54a17c7efb0327415883818dc3f28c543d11 (patch) | |
tree | 268dd9849f53ee8f00bc2591f04b18d40fca18cf /gtk/gtkaccellabel.c | |
parent | 1e165879010a3563c377e3d7b480c048e5f58fa1 (diff) | |
download | gtk+-502a54a17c7efb0327415883818dc3f28c543d11.tar.gz |
Improve translators comments. (#389298, Christian Persch)
2006-12-24 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaccellabel.c: Improve translators comments.
(#389298, Christian Persch)
Diffstat (limited to 'gtk/gtkaccellabel.c')
-rw-r--r-- | gtk/gtkaccellabel.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gtk/gtkaccellabel.c b/gtk/gtkaccellabel.c index 9d3ca419b7..5ea999499a 100644 --- a/gtk/gtkaccellabel.c +++ b/gtk/gtkaccellabel.c @@ -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 ("+"); |