summaryrefslogtreecommitdiff
path: root/gtk/gtkprogressbar.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtkprogressbar.c')
-rw-r--r--gtk/gtkprogressbar.c36
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));