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/gtkhandlebox.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/gtkhandlebox.c')
-rw-r--r-- | gtk/gtkhandlebox.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtkhandlebox.c b/gtk/gtkhandlebox.c index 0d09fe23e6..b0d556eb9a 100644 --- a/gtk/gtkhandlebox.c +++ b/gtk/gtkhandlebox.c @@ -192,15 +192,15 @@ gtk_handle_box_class_init (GtkHandleBoxClass *class) g_object_class_install_property (gobject_class, PROP_SHADOW, g_param_spec_enum ("shadow", NULL, - _("Deprecated property, use shadow_type instead"), + P_("Deprecated property, use shadow_type instead"), GTK_TYPE_SHADOW_TYPE, GTK_SHADOW_ETCHED_OUT, G_PARAM_READABLE | G_PARAM_WRITABLE)); g_object_class_install_property (gobject_class, PROP_SHADOW_TYPE, g_param_spec_enum ("shadow_type", - _("Shadow type"), - _("Appearance of the shadow that surrounds the container"), + P_("Shadow type"), + P_("Appearance of the shadow that surrounds the container"), GTK_TYPE_SHADOW_TYPE, GTK_SHADOW_ETCHED_OUT, G_PARAM_READABLE | G_PARAM_WRITABLE)); @@ -208,8 +208,8 @@ gtk_handle_box_class_init (GtkHandleBoxClass *class) g_object_class_install_property (gobject_class, PROP_HANDLE_POSITION, g_param_spec_enum ("handle_position", - _("Handle position"), - _("Position of the handle relative to the child widget"), + P_("Handle position"), + P_("Position of the handle relative to the child widget"), GTK_TYPE_POSITION_TYPE, GTK_POS_LEFT, G_PARAM_READABLE | G_PARAM_WRITABLE)); @@ -217,8 +217,8 @@ gtk_handle_box_class_init (GtkHandleBoxClass *class) g_object_class_install_property (gobject_class, PROP_SNAP_EDGE, g_param_spec_enum ("snap_edge", - _("Snap edge"), - _("Side of the handlebox that's lined up with the docking point to dock the handlebox"), + P_("Snap edge"), + P_("Side of the handlebox that's lined up with the docking point to dock the handlebox"), GTK_TYPE_POSITION_TYPE, GTK_POS_TOP, G_PARAM_READABLE | G_PARAM_WRITABLE)); @@ -226,8 +226,8 @@ gtk_handle_box_class_init (GtkHandleBoxClass *class) g_object_class_install_property (gobject_class, PROP_SNAP_EDGE_SET, g_param_spec_boolean ("snap_edge_set", - _("Snap edge set"), - _("Whether to use the value from the snap_edge property or a value derived from handle_position"), + P_("Snap edge set"), + P_("Whether to use the value from the snap_edge property or a value derived from handle_position"), FALSE, G_PARAM_READABLE | G_PARAM_WRITABLE)); |