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/gtkmisc.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/gtkmisc.c')
-rw-r--r-- | gtk/gtkmisc.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/gtkmisc.c b/gtk/gtkmisc.c index fbbbe03d37..fd9ff5cad7 100644 --- a/gtk/gtkmisc.c +++ b/gtk/gtkmisc.c @@ -95,8 +95,8 @@ gtk_misc_class_init (GtkMiscClass *class) g_object_class_install_property (gobject_class, PROP_XALIGN, g_param_spec_float ("xalign", - _("X align"), - _("The horizontal alignment, from 0 (left) to 1 (right)"), + P_("X align"), + P_("The horizontal alignment, from 0 (left) to 1 (right)"), 0.0, 1.0, 0.5, @@ -105,8 +105,8 @@ gtk_misc_class_init (GtkMiscClass *class) g_object_class_install_property (gobject_class, PROP_YALIGN, g_param_spec_float ("yalign", - _("Y align"), - _("The vertical alignment, from 0 (top) to 1 (bottom)"), + P_("Y align"), + P_("The vertical alignment, from 0 (top) to 1 (bottom)"), 0.0, 1.0, 0.5, @@ -115,8 +115,8 @@ gtk_misc_class_init (GtkMiscClass *class) g_object_class_install_property (gobject_class, PROP_XPAD, g_param_spec_int ("xpad", - _("X pad"), - _("The amount of space to add on the left and right of the widget, in pixels"), + P_("X pad"), + P_("The amount of space to add on the left and right of the widget, in pixels"), 0, G_MAXINT, 0, @@ -125,8 +125,8 @@ gtk_misc_class_init (GtkMiscClass *class) g_object_class_install_property (gobject_class, PROP_YPAD, g_param_spec_int ("ypad", - _("Y pad"), - _("The amount of space to add on the top and bottom of the widget, in pixels"), + P_("Y pad"), + P_("The amount of space to add on the top and bottom of the widget, in pixels"), 0, G_MAXINT, 0, |