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/gtkprogressbar.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/gtkprogressbar.c')
-rw-r--r-- | gtk/gtkprogressbar.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/gtk/gtkprogressbar.c b/gtk/gtkprogressbar.c index b679722b85..1192a8302f 100644 --- a/gtk/gtkprogressbar.c +++ b/gtk/gtkprogressbar.c @@ -139,16 +139,16 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_ADJUSTMENT, g_param_spec_object ("adjustment", - _("Adjustment"), - _("The GtkAdjustment connected to the progress bar (Deprecated)"), + P_("Adjustment"), + P_("The GtkAdjustment connected to the progress bar (Deprecated)"), GTK_TYPE_ADJUSTMENT, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_ORIENTATION, g_param_spec_enum ("orientation", - _("Orientation"), - _("Orientation and growth direction of the progress bar"), + P_("Orientation"), + P_("Orientation and growth direction of the progress bar"), GTK_TYPE_PROGRESS_BAR_ORIENTATION, GTK_PROGRESS_LEFT_TO_RIGHT, G_PARAM_READWRITE)); @@ -156,8 +156,8 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_BAR_STYLE, g_param_spec_enum ("bar_style", - _("Bar style"), - _("Specifies the visual style of the bar in percentage mode (Deprecated)"), + P_("Bar style"), + P_("Specifies the visual style of the bar in percentage mode (Deprecated)"), GTK_TYPE_PROGRESS_BAR_STYLE, GTK_PROGRESS_CONTINUOUS, G_PARAM_READWRITE)); @@ -165,8 +165,8 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_ACTIVITY_STEP, g_param_spec_uint ("activity_step", - _("Activity Step"), - _("The increment used for each iteration in activity mode (Deprecated)"), + P_("Activity Step"), + P_("The increment used for each iteration in activity mode (Deprecated)"), -G_MAXUINT, G_MAXUINT, 3, @@ -175,8 +175,8 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_ACTIVITY_BLOCKS, g_param_spec_uint ("activity_blocks", - _("Activity Blocks"), - _("The number of blocks which can fit in the progress bar area in activity mode (Deprecated)"), + P_("Activity Blocks"), + P_("The number of blocks which can fit in the progress bar area in activity mode (Deprecated)"), 2, G_MAXUINT, 5, @@ -185,8 +185,8 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_DISCRETE_BLOCKS, g_param_spec_uint ("discrete_blocks", - _("Discrete Blocks"), - _("The number of discrete blocks in a progress bar (when shown in the discrete style)"), + P_("Discrete Blocks"), + P_("The number of discrete blocks in a progress bar (when shown in the discrete style)"), 2, G_MAXUINT, 10, @@ -195,8 +195,8 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_FRACTION, g_param_spec_double ("fraction", - _("Fraction"), - _("The fraction of total work that has been completed"), + P_("Fraction"), + P_("The fraction of total work that has been completed"), 0.0, 1.0, 0.0, @@ -205,8 +205,8 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_PULSE_STEP, g_param_spec_double ("pulse_step", - _("Pulse Step"), - _("The fraction of total progress to move the bouncing block when pulsed"), + P_("Pulse Step"), + P_("The fraction of total progress to move the bouncing block when pulsed"), 0.0, 1.0, 0.1, @@ -215,8 +215,8 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_TEXT, g_param_spec_string ("text", - _("Text"), - _("Text to be displayed in the progress bar"), + P_("Text"), + P_("Text to be displayed in the progress bar"), "%P %%", G_PARAM_READWRITE)); |