summaryrefslogtreecommitdiff
path: root/gtk/gtkfontbutton.c
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2004-01-16 23:10:05 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-01-16 23:10:05 +0000
commit07d4d314b6e45daeb1bd22538aa7f057bcd37a65 (patch)
treea0d4c6086726f6a2428c08d70b5f10517bf11434 /gtk/gtkfontbutton.c
parentfb526d239af04183f5751f209c269d13b244de80 (diff)
downloadgtk+-07d4d314b6e45daeb1bd22538aa7f057bcd37a65.tar.gz
The first part of the fix for #114351 (see also gdk-pixbuf/ChangeLog and
Fri Jan 16 23:59:01 2004 Matthias Clasen <maclas@gmx.de> The first part of the fix for #114351 (see also gdk-pixbuf/ChangeLog and po/ChangeLog): * gtk/gtkintl.h: * gdk-pixbuf/gdk-pixbuf-i18n.h: * gdk/gdkintl.h: Define P_() for property blurbs and nicks. * gdk/gdkdisplaymanager.c: * gdk-pixbuf/gdk-pixbuf.c: * modules/input/gtkimcontextxim.c: * gtk/*.c: Mark property blurbs and nicks with P_(). * po/Makefile.in.in: Add --keyword=P_ to the xgettext invocation, since property blurbs and nicks are now marked with P_().
Diffstat (limited to 'gtk/gtkfontbutton.c')
-rw-r--r--gtk/gtkfontbutton.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/gtk/gtkfontbutton.c b/gtk/gtkfontbutton.c
index 7e56afa7cd..9a872a4231 100644
--- a/gtk/gtkfontbutton.c
+++ b/gtk/gtkfontbutton.c
@@ -172,8 +172,8 @@ gtk_font_button_class_init (GtkFontButtonClass *klass)
g_object_class_install_property (gobject_class,
PROP_TITLE,
g_param_spec_string ("title",
- _("Title"),
- _("The title of the font selection dialog"),
+ P_("Title"),
+ P_("The title of the font selection dialog"),
_("Pick a Font"),
(G_PARAM_READABLE |
G_PARAM_WRITABLE)));
@@ -188,9 +188,9 @@ gtk_font_button_class_init (GtkFontButtonClass *klass)
g_object_class_install_property (gobject_class,
PROP_FONT_NAME,
g_param_spec_string ("font_name",
- _("Font name"),
- _("The name of the selected font"),
- _("Sans 12"),
+ P_("Font name"),
+ P_("The name of the selected font"),
+ P_("Sans 12"),
(G_PARAM_READABLE |
G_PARAM_WRITABLE)));
@@ -204,8 +204,8 @@ gtk_font_button_class_init (GtkFontButtonClass *klass)
g_object_class_install_property (gobject_class,
PROP_USE_FONT,
g_param_spec_boolean ("use_font",
- _("Use font in label"),
- _("Whether the label is drawn in the selected font"),
+ P_("Use font in label"),
+ P_("Whether the label is drawn in the selected font"),
FALSE,
(G_PARAM_READABLE |
G_PARAM_WRITABLE)));
@@ -220,8 +220,8 @@ gtk_font_button_class_init (GtkFontButtonClass *klass)
g_object_class_install_property (gobject_class,
PROP_USE_SIZE,
g_param_spec_boolean ("use_size",
- _("Use size in label"),
- _("Whether the label is drawn with the selected font size"),
+ P_("Use size in label"),
+ P_("Whether the label is drawn with the selected font size"),
FALSE,
(G_PARAM_READABLE |
G_PARAM_WRITABLE)));
@@ -237,8 +237,8 @@ gtk_font_button_class_init (GtkFontButtonClass *klass)
g_object_class_install_property (gobject_class,
PROP_SHOW_SIZE,
g_param_spec_boolean ("show_style",
- _("Show style"),
- _("Whether the selected font style is shown in the label"),
+ P_("Show style"),
+ P_("Whether the selected font style is shown in the label"),
TRUE,
(G_PARAM_READABLE |
G_PARAM_WRITABLE)));
@@ -253,8 +253,8 @@ gtk_font_button_class_init (GtkFontButtonClass *klass)
g_object_class_install_property (gobject_class,
PROP_SHOW_SIZE,
g_param_spec_boolean ("show_size",
- _("Show size"),
- _("Whether selected font size is shown in the label"),
+ P_("Show size"),
+ P_("Whether selected font size is shown in the label"),
TRUE,
(G_PARAM_READABLE |
G_PARAM_WRITABLE)));