summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2016-04-25 23:08:03 -0400
committerMatthias Clasen <mclasen@redhat.com>2016-05-05 15:03:59 -0400
commit4b4533ef6880e17c9812624c6387d4ade46b20b7 (patch)
treecce061b905b9a10236c798dbf86cc99137d4aa0f
parent113ce66151581b55a9c9c45161ed86d61cbe7d39 (diff)
downloadgtk+-4b4533ef6880e17c9812624c6387d4ade46b20b7.tar.gz
font button: Fix translation of font-name default
The default value should come out of regular translations, not property translations.
-rw-r--r--gtk/gtkfontbutton.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkfontbutton.c b/gtk/gtkfontbutton.c
index 91a0f98f46..5507375e37 100644
--- a/gtk/gtkfontbutton.c
+++ b/gtk/gtkfontbutton.c
@@ -490,7 +490,7 @@ gtk_font_button_class_init (GtkFontButtonClass *klass)
g_param_spec_string ("font-name",
P_("Font name"),
P_("The name of the selected font"),
- P_("Sans 12"),
+ _("Sans 12"),
GTK_PARAM_READWRITE));
/**