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/gtkrange.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/gtkrange.c')
-rw-r--r-- | gtk/gtkrange.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/gtk/gtkrange.c b/gtk/gtkrange.c index 301728613c..d277de8f18 100644 --- a/gtk/gtkrange.c +++ b/gtk/gtkrange.c @@ -278,8 +278,8 @@ gtk_range_class_init (GtkRangeClass *class) g_object_class_install_property (gobject_class, PROP_UPDATE_POLICY, g_param_spec_enum ("update_policy", - _("Update policy"), - _("How the range should be updated on the screen"), + P_("Update policy"), + P_("How the range should be updated on the screen"), GTK_TYPE_UPDATE_TYPE, GTK_UPDATE_CONTINUOUS, G_PARAM_READWRITE)); @@ -287,63 +287,63 @@ gtk_range_class_init (GtkRangeClass *class) g_object_class_install_property (gobject_class, PROP_ADJUSTMENT, g_param_spec_object ("adjustment", - _("Adjustment"), - _("The GtkAdjustment that contains the current value of this range object"), + P_("Adjustment"), + P_("The GtkAdjustment that contains the current value of this range object"), GTK_TYPE_ADJUSTMENT, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); g_object_class_install_property (gobject_class, PROP_INVERTED, g_param_spec_boolean ("inverted", - _("Inverted"), - _("Invert direction slider moves to increase range value"), + P_("Inverted"), + P_("Invert direction slider moves to increase range value"), FALSE, G_PARAM_READWRITE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_int ("slider_width", - _("Slider Width"), - _("Width of scrollbar or scale thumb"), + P_("Slider Width"), + P_("Width of scrollbar or scale thumb"), 0, G_MAXINT, 14, G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_int ("trough_border", - _("Trough Border"), - _("Spacing between thumb/steppers and outer trough bevel"), + P_("Trough Border"), + P_("Spacing between thumb/steppers and outer trough bevel"), 0, G_MAXINT, 1, G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_int ("stepper_size", - _("Stepper Size"), - _("Length of step buttons at ends"), + P_("Stepper Size"), + P_("Length of step buttons at ends"), 0, G_MAXINT, 14, G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_int ("stepper_spacing", - _("Stepper Spacing"), - _("Spacing between step buttons and thumb"), + P_("Stepper Spacing"), + P_("Spacing between step buttons and thumb"), 0, G_MAXINT, 0, G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_int ("arrow_displacement_x", - _("Arrow X Displacement"), - _("How far in the x direction to move the arrow when the button is depressed"), + P_("Arrow X Displacement"), + P_("How far in the x direction to move the arrow when the button is depressed"), G_MININT, G_MAXINT, 0, G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_int ("arrow_displacement_y", - _("Arrow Y Displacement"), - _("How far in the y direction to move the arrow when the button is depressed"), + P_("Arrow Y Displacement"), + P_("How far in the y direction to move the arrow when the button is depressed"), G_MININT, G_MAXINT, 0, |