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/gtkalignment.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/gtkalignment.c')
-rw-r--r-- | gtk/gtkalignment.c | 32 |
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, |