summaryrefslogtreecommitdiff
path: root/gtk/gtkalignment.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtkalignment.c')
-rw-r--r--gtk/gtkalignment.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/gtk/gtkalignment.c b/gtk/gtkalignment.c
index 785fb32c6e..ab38f6d288 100644
--- a/gtk/gtkalignment.c
+++ b/gtk/gtkalignment.c
@@ -113,8 +113,8 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
g_object_class_install_property (gobject_class,
PROP_XALIGN,
g_param_spec_float("xalign",
- _("Horizontal alignment"),
- _("Horizontal position of child in available space. 0.0 is left aligned, 1.0 is right aligned"),
+ P_("Horizontal alignment"),
+ P_("Horizontal position of child in available space. 0.0 is left aligned, 1.0 is right aligned"),
0.0,
1.0,
0.5,
@@ -123,8 +123,8 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
g_object_class_install_property (gobject_class,
PROP_YALIGN,
g_param_spec_float("yalign",
- _("Vertical alignment"),
- _("Vertical position of child in available space. 0.0 is top aligned, 1.0 is bottom aligned"),
+ P_("Vertical alignment"),
+ P_("Vertical position of child in available space. 0.0 is top aligned, 1.0 is bottom aligned"),
0.0,
1.0,
0.5,
@@ -132,8 +132,8 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
g_object_class_install_property (gobject_class,
PROP_XSCALE,
g_param_spec_float("xscale",
- _("Horizontal scale"),
- _("If available horizontal space is bigger than needed for the child, how much of it to use for the child. 0.0 means none, 1.0 means all"),
+ P_("Horizontal scale"),
+ P_("If available horizontal space is bigger than needed for the child, how much of it to use for the child. 0.0 means none, 1.0 means all"),
0.0,
1.0,
1.0,
@@ -141,8 +141,8 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
g_object_class_install_property (gobject_class,
PROP_YSCALE,
g_param_spec_float("yscale",
- _("Vertical scale"),
- _("If available vertical space is bigger than needed for the child, how much of it to use for the child. 0.0 means none, 1.0 means all"),
+ P_("Vertical scale"),
+ P_("If available vertical space is bigger than needed for the child, how much of it to use for the child. 0.0 means none, 1.0 means all"),
0.0,
1.0,
1.0,
@@ -159,8 +159,8 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
g_object_class_install_property (gobject_class,
PROP_PADDING_TOP,
g_param_spec_uint("top_padding",
- _("Top Padding"),
- _("The padding to insert at the top of the widget."),
+ P_("Top Padding"),
+ P_("The padding to insert at the top of the widget."),
0,
G_MAXINT,
0,
@@ -176,8 +176,8 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
g_object_class_install_property (gobject_class,
PROP_PADDING_BOTTOM,
g_param_spec_uint("bottom_padding",
- _("Bottom Padding"),
- _("The padding to insert at the bottom of the widget."),
+ P_("Bottom Padding"),
+ P_("The padding to insert at the bottom of the widget."),
0,
G_MAXINT,
0,
@@ -193,8 +193,8 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
g_object_class_install_property (gobject_class,
PROP_PADDING_LEFT,
g_param_spec_uint("left_padding",
- _("Left Padding"),
- _("The padding to insert at the left of the widget."),
+ P_("Left Padding"),
+ P_("The padding to insert at the left of the widget."),
0,
G_MAXINT,
0,
@@ -210,8 +210,8 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
g_object_class_install_property (gobject_class,
PROP_PADDING_RIGHT,
g_param_spec_uint("right_padding",
- _("Right Padding"),
- _("The padding to insert at the right of the widget."),
+ P_("Right Padding"),
+ P_("The padding to insert at the right of the widget."),
0,
G_MAXINT,
0,