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/gtkscrollbar.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/gtkscrollbar.c')
-rw-r--r-- | gtk/gtkscrollbar.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gtk/gtkscrollbar.c b/gtk/gtkscrollbar.c index 87ef9ef8e2..d682e766d7 100644 --- a/gtk/gtkscrollbar.c +++ b/gtk/gtkscrollbar.c @@ -77,8 +77,8 @@ gtk_scrollbar_class_init (GtkScrollbarClass *class) gtk_widget_class_install_style_property (widget_class, g_param_spec_int ("min_slider_length", - _("Minimum Slider Length"), - _("Minimum length of scrollbar slider"), + P_("Minimum Slider Length"), + P_("Minimum length of scrollbar slider"), 0, G_MAXINT, 21, @@ -86,40 +86,40 @@ gtk_scrollbar_class_init (GtkScrollbarClass *class) gtk_widget_class_install_style_property (widget_class, g_param_spec_boolean ("fixed_slider_length", - _("Fixed slider size"), - _("Don't change slider size, just lock it to the minimum length"), + P_("Fixed slider size"), + P_("Don't change slider size, just lock it to the minimum length"), FALSE, G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_boolean ("has_backward_stepper", - _("Backward stepper"), - _("Display the standard backward arrow button"), + P_("Backward stepper"), + P_("Display the standard backward arrow button"), TRUE, G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_boolean ("has_forward_stepper", - _("Forward stepper"), - _("Display the standard forward arrow button"), + P_("Forward stepper"), + P_("Display the standard forward arrow button"), TRUE, G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_boolean ("has_secondary_backward_stepper", - _("Secondary backward stepper"), - _("Display a second backward arrow button on the opposite end of the scrollbar"), + P_("Secondary backward stepper"), + P_("Display a second backward arrow button on the opposite end of the scrollbar"), FALSE, G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_boolean ("has_secondary_forward_stepper", - _("Secondary forward stepper"), - _("Display a secondary forward arrow button on the opposite end of the scrollbar"), + P_("Secondary forward stepper"), + P_("Display a secondary forward arrow button on the opposite end of the scrollbar"), FALSE, G_PARAM_READABLE)); |