summaryrefslogtreecommitdiff
path: root/gtk/gtkvolumebutton.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2008-10-27 01:42:28 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-10-27 01:42:28 +0000
commit5cfd038335400f6c6fbc7751b685537e52ea8cd4 (patch)
tree8e6d74243fe671a0c24823c66a3215e9eb644a49 /gtk/gtkvolumebutton.c
parentca15f74ad2eceba1a9010971510486eae01d07f6 (diff)
downloadgtk+-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/gtkvolumebutton.c')
-rw-r--r--gtk/gtkvolumebutton.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gtk/gtkvolumebutton.c b/gtk/gtkvolumebutton.c
index d17585139f..af27691b76 100644
--- a/gtk/gtkvolumebutton.c
+++ b/gtk/gtkvolumebutton.c
@@ -164,10 +164,8 @@ cb_query_tooltip (GtkWidget *button,
* as used in the tooltip, eg. "49 %".
* Translate the "%d" to "%Id" if you want to use localised digits,
* or otherwise translate the "%d" to "%d".
- * Do not translate and do not include the "volume percentage|"
- * part in the translation!
*/
- str = g_strdup_printf (Q_("volume percentage|%d %%"), percent);
+ str = g_strdup_printf (C_("volume percentage", "%d %%"), percent);
}
gtk_tooltip_set_text (tooltip, str);