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/gtkpaned.c | |
parent | fb526d239af04183f5751f209c269d13b244de80 (diff) | |
download | gdk-pixbuf-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/gtkpaned.c')
-rw-r--r-- | gtk/gtkpaned.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gtk/gtkpaned.c b/gtk/gtkpaned.c index 1561e46d6..f3141a7af 100644 --- a/gtk/gtkpaned.c +++ b/gtk/gtkpaned.c @@ -235,8 +235,8 @@ gtk_paned_class_init (GtkPanedClass *class) g_object_class_install_property (object_class, PROP_POSITION, g_param_spec_int ("position", - _("Position"), - _("Position of paned separator in pixels (0 means all the way to the left/top)"), + P_("Position"), + P_("Position of paned separator in pixels (0 means all the way to the left/top)"), 0, G_MAXINT, 0, @@ -244,15 +244,15 @@ gtk_paned_class_init (GtkPanedClass *class) g_object_class_install_property (object_class, PROP_POSITION_SET, g_param_spec_boolean ("position_set", - _("Position Set"), - _("TRUE if the Position property should be used"), + P_("Position Set"), + P_("TRUE if the Position property should be used"), FALSE, G_PARAM_READABLE | G_PARAM_WRITABLE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_int ("handle_size", - _("Handle Size"), - _("Width of handle"), + P_("Handle Size"), + P_("Width of handle"), 0, G_MAXINT, 5, @@ -268,8 +268,8 @@ gtk_paned_class_init (GtkPanedClass *class) g_object_class_install_property (object_class, PROP_MIN_POSITION, g_param_spec_int ("min_position", - _("Minimal Position"), - _("Smallest possible value for the \"position\" property"), + P_("Minimal Position"), + P_("Smallest possible value for the \"position\" property"), 0, G_MAXINT, 0, @@ -286,8 +286,8 @@ gtk_paned_class_init (GtkPanedClass *class) g_object_class_install_property (object_class, PROP_MIN_POSITION, g_param_spec_int ("max_position", - _("Maximal Position"), - _("Largest possible value for the \"position\" property"), + P_("Maximal Position"), + P_("Largest possible value for the \"position\" property"), 0, G_MAXINT, G_MAXINT, @@ -304,8 +304,8 @@ gtk_paned_class_init (GtkPanedClass *class) gtk_container_class_install_child_property (container_class, CHILD_PROP_RESIZE, g_param_spec_boolean ("resize", - _("Resize"), - _("If TRUE, the child expands and shrinks along with the paned widget"), + P_("Resize"), + P_("If TRUE, the child expands and shrinks along with the paned widget"), TRUE, G_PARAM_READWRITE)); @@ -320,8 +320,8 @@ gtk_paned_class_init (GtkPanedClass *class) gtk_container_class_install_child_property (container_class, CHILD_PROP_SHRINK, g_param_spec_boolean ("shrink", - _("Shrink"), - _("If TRUE, the child can be made smaller than its requisition"), + P_("Shrink"), + P_("If TRUE, the child can be made smaller than its requisition"), TRUE, G_PARAM_READWRITE)); |