diff options
author | Matthias Clasen <mclasen@redhat.com> | 2008-10-27 01:42:28 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-10-27 01:42:28 +0000 |
commit | 5cfd038335400f6c6fbc7751b685537e52ea8cd4 (patch) | |
tree | 8e6d74243fe671a0c24823c66a3215e9eb644a49 /gtk/gtkimmulticontext.c | |
parent | ca15f74ad2eceba1a9010971510486eae01d07f6 (diff) | |
download | gtk+-5cfd038335400f6c6fbc7751b685537e52ea8cd4.tar.gz |
Use C_() instead of Q_(). String change!
2008-10-26 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaccellabel.c:
* gtk/gtkcalendar.c:
* gtk/gtkcellrendereraccel.c:
* gtk/gtkcellrendererprogress.c:
* gtk/gtkimmulticontext.c:
* gtk/gtkrecentchoosermenu.c:
* gtk/gtkvolumebutton.c: Use C_() instead of Q_(). String change!
svn path=/trunk/; revision=21716
Diffstat (limited to 'gtk/gtkimmulticontext.c')
-rw-r--r-- | gtk/gtkimmulticontext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkimmulticontext.c b/gtk/gtkimmulticontext.c index 8ce3aa988d..5462575705 100644 --- a/gtk/gtkimmulticontext.c +++ b/gtk/gtkimmulticontext.c @@ -542,7 +542,7 @@ gtk_im_multicontext_append_menuitems (GtkIMMulticontext *context, const char *system_context_id; system_context_id = _gtk_im_module_get_default_context_id (context->priv->client_window); - system_menuitem = menuitem = gtk_radio_menu_item_new_with_label (group, Q_("input method menu|System")); + system_menuitem = menuitem = gtk_radio_menu_item_new_with_label (group, C_("input method menu", "System")); if (!user_context_id) gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (menuitem), TRUE); group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (menuitem)); @@ -626,7 +626,7 @@ gtk_im_multicontext_append_menuitems (GtkIMMulticontext *context, char *text; label = gtk_bin_get_child (GTK_BIN (system_menuitem)); - text = g_strdup_printf (Q_("input method menu|System (%s)"), translated_name); + text = g_strdup_printf (C_("input method menu", "System (%s)"), translated_name); gtk_label_set_text (GTK_LABEL (label), text); g_free (text); } |