summaryrefslogtreecommitdiff
path: root/gtk/gtkprogressbar.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2010-08-10 09:23:49 +0100
committerPhilip Withnall <philip@tecnocode.co.uk>2010-08-10 09:23:49 +0100
commit3eb197b51fbcfab20abc618c7081bb400844996e (patch)
tree287f5648ffcfa7046adcb5fbbfb56175e7e352fc /gtk/gtkprogressbar.c
parentfb48e023d2959b5596eae54728c689264ffabdbd (diff)
downloadgtk+-3eb197b51fbcfab20abc618c7081bb400844996e.tar.gz
Bug 596125 — Property string fixes
Diffstat (limited to 'gtk/gtkprogressbar.c')
-rw-r--r--gtk/gtkprogressbar.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkprogressbar.c b/gtk/gtkprogressbar.c
index bea40f5e82..55a3ccee20 100644
--- a/gtk/gtkprogressbar.c
+++ b/gtk/gtkprogressbar.c
@@ -178,13 +178,13 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class)
GTK_PARAM_READWRITE));
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("xspacing",
- P_("XSpacing"),
+ P_("X spacing"),
P_("Extra spacing applied to the width of a progress bar."),
0, G_MAXINT, 7,
G_PARAM_READWRITE));
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("yspacing",
- P_("YSpacing"),
+ P_("Y spacing"),
P_("Extra spacing applied to the height of a progress bar."),
0, G_MAXINT, 7,
G_PARAM_READWRITE));
@@ -198,7 +198,7 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class)
*/
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("min-horizontal-bar-width",
- P_("Min horizontal bar width"),
+ P_("Minimum horizontal bar width"),
P_("The minimum horizontal width of the progress bar"),
1, G_MAXINT, MIN_HORIZONTAL_BAR_WIDTH,
G_PARAM_READWRITE));
@@ -211,7 +211,7 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class)
*/
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("min-horizontal-bar-height",
- P_("Min horizontal bar height"),
+ P_("Minimum horizontal bar height"),
P_("Minimum horizontal height of the progress bar"),
1, G_MAXINT, MIN_HORIZONTAL_BAR_HEIGHT,
G_PARAM_READWRITE));
@@ -224,7 +224,7 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class)
*/
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("min-vertical-bar-width",
- P_("Min vertical bar width"),
+ P_("Minimum vertical bar width"),
P_("The minimum vertical width of the progress bar"),
1, G_MAXINT, MIN_VERTICAL_BAR_WIDTH,
G_PARAM_READWRITE));
@@ -237,7 +237,7 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class)
*/
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("min-vertical-bar-height",
- P_("Min vertical bar height"),
+ P_("Minimum vertical bar height"),
P_("The minimum vertical height of the progress bar"),
1, G_MAXINT, MIN_VERTICAL_BAR_HEIGHT,
G_PARAM_READWRITE));