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/gtkbox.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/gtkbox.c')
-rw-r--r-- | gtk/gtkbox.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gtk/gtkbox.c b/gtk/gtkbox.c index 4604f45743..87fb1b7942 100644 --- a/gtk/gtkbox.c +++ b/gtk/gtkbox.c @@ -125,8 +125,8 @@ gtk_box_class_init (GtkBoxClass *class) g_object_class_install_property (gobject_class, PROP_SPACING, g_param_spec_int ("spacing", - _("Spacing"), - _("The amount of space between children"), + P_("Spacing"), + P_("The amount of space between children"), 0, G_MAXINT, 0, @@ -135,44 +135,44 @@ gtk_box_class_init (GtkBoxClass *class) g_object_class_install_property (gobject_class, PROP_HOMOGENEOUS, g_param_spec_boolean ("homogeneous", - _("Homogeneous"), - _("Whether the children should all be the same size"), + P_("Homogeneous"), + P_("Whether the children should all be the same size"), FALSE, G_PARAM_READABLE | G_PARAM_WRITABLE)); gtk_container_class_install_child_property (container_class, CHILD_PROP_EXPAND, g_param_spec_boolean ("expand", - _("Expand"), - _("Whether the child should receive extra space when the parent grows"), + P_("Expand"), + P_("Whether the child should receive extra space when the parent grows"), TRUE, G_PARAM_READWRITE)); gtk_container_class_install_child_property (container_class, CHILD_PROP_FILL, g_param_spec_boolean ("fill", - _("Fill"), - _("Whether extra space given to the child should be allocated to the child or used as padding"), + P_("Fill"), + P_("Whether extra space given to the child should be allocated to the child or used as padding"), TRUE, G_PARAM_READWRITE)); gtk_container_class_install_child_property (container_class, CHILD_PROP_PADDING, g_param_spec_uint ("padding", - _("Padding"), - _("Extra space to put between the child and its neighbors, in pixels"), + P_("Padding"), + P_("Extra space to put between the child and its neighbors, in pixels"), 0, G_MAXINT, 0, G_PARAM_READWRITE)); gtk_container_class_install_child_property (container_class, CHILD_PROP_PACK_TYPE, g_param_spec_enum ("pack_type", - _("Pack type"), - _("A GtkPackType indicating whether the child is packed with reference to the start or end of the parent"), + P_("Pack type"), + P_("A GtkPackType indicating whether the child is packed with reference to the start or end of the parent"), GTK_TYPE_PACK_TYPE, GTK_PACK_START, G_PARAM_READWRITE)); gtk_container_class_install_child_property (container_class, CHILD_PROP_POSITION, g_param_spec_int ("position", - _("Position"), - _("The index of the child in the parent"), + P_("Position"), + P_("The index of the child in the parent"), -1, G_MAXINT, 0, G_PARAM_READWRITE)); } |