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_().
This commit is contained in:

committed by
Matthias Clasen

parent
fb526d239a
commit
07d4d314b6
@ -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,
|
||||
|
Reference in New Issue
Block a user