diff options
author | Matthias Clasen <maclas@gmx.de> | 2004-01-16 23:10:05 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-01-16 23:10:05 +0000 |
commit | 07d4d314b6e45daeb1bd22538aa7f057bcd37a65 (patch) | |
tree | a0d4c6086726f6a2428c08d70b5f10517bf11434 /gtk/gtkexpander.c | |
parent | fb526d239af04183f5751f209c269d13b244de80 (diff) | |
download | gtk+-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/gtkexpander.c')
-rw-r--r-- | gtk/gtkexpander.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/gtk/gtkexpander.c b/gtk/gtkexpander.c index bff45399f7..b839bf434b 100644 --- a/gtk/gtkexpander.c +++ b/gtk/gtkexpander.c @@ -191,40 +191,40 @@ gtk_expander_class_init (GtkExpanderClass *klass) g_object_class_install_property (gobject_class, PROP_EXPANDED, g_param_spec_boolean ("expanded", - _("Expanded"), - _("Whether the expander has been opened to reveal the child widget"), + P_("Expanded"), + P_("Whether the expander has been opened to reveal the child widget"), FALSE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); g_object_class_install_property (gobject_class, PROP_LABEL, g_param_spec_string ("label", - _("Label"), - _("Text of the expander's label"), + P_("Label"), + P_("Text of the expander's label"), NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); g_object_class_install_property (gobject_class, PROP_USE_UNDERLINE, g_param_spec_boolean ("use_underline", - _("Use underline"), - _("If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key"), + P_("Use underline"), + P_("If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key"), FALSE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); g_object_class_install_property (gobject_class, PROP_USE_MARKUP, g_param_spec_boolean ("use_markup", - _("Use markup"), - _("The text of the label includes XML markup. See pango_parse_markup()"), + P_("Use markup"), + P_("The text of the label includes XML markup. See pango_parse_markup()"), FALSE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); g_object_class_install_property (gobject_class, PROP_PADDING, g_param_spec_int ("spacing", - _("Spacing"), - _("Space to put between the label and the child"), + P_("Spacing"), + P_("Space to put between the label and the child"), 0, G_MAXINT, 0, @@ -233,15 +233,15 @@ gtk_expander_class_init (GtkExpanderClass *klass) g_object_class_install_property (gobject_class, PROP_LABEL_WIDGET, g_param_spec_object ("label_widget", - _("Label widget"), - _("A widget to display in place of the usual expander label"), + P_("Label widget"), + P_("A widget to display in place of the usual expander label"), GTK_TYPE_WIDGET, G_PARAM_READWRITE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_int ("expander-size", - _("Expander Size"), - _("Size of the expander arrow"), + P_("Expander Size"), + P_("Size of the expander arrow"), 0, G_MAXINT, DEFAULT_EXPANDER_SIZE, @@ -249,8 +249,8 @@ gtk_expander_class_init (GtkExpanderClass *klass) gtk_widget_class_install_style_property (widget_class, g_param_spec_int ("expander-spacing", - _("Indicator Spacing"), - _("Spacing around expander arrow"), + P_("Indicator Spacing"), + P_("Spacing around expander arrow"), 0, G_MAXINT, DEFAULT_EXPANDER_SPACING, |