summaryrefslogtreecommitdiff
path: root/gtk/gtklayout.c
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2004-01-16 23:10:05 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-01-16 23:10:05 +0000
commit07d4d314b6e45daeb1bd22538aa7f057bcd37a65 (patch)
treea0d4c6086726f6a2428c08d70b5f10517bf11434 /gtk/gtklayout.c
parentfb526d239af04183f5751f209c269d13b244de80 (diff)
downloadgtk+-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/gtklayout.c')
-rw-r--r--gtk/gtklayout.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/gtk/gtklayout.c b/gtk/gtklayout.c
index 3d9ad1b537..50c1275026 100644
--- a/gtk/gtklayout.c
+++ b/gtk/gtklayout.c
@@ -608,8 +608,8 @@ gtk_layout_class_init (GtkLayoutClass *class)
gtk_container_class_install_child_property (container_class,
CHILD_PROP_X,
g_param_spec_int ("x",
- _("X position"),
- _("X position of child widget"),
+ P_("X position"),
+ P_("X position of child widget"),
G_MININT,
G_MAXINT,
0,
@@ -618,8 +618,8 @@ gtk_layout_class_init (GtkLayoutClass *class)
gtk_container_class_install_child_property (container_class,
CHILD_PROP_Y,
g_param_spec_int ("y",
- _("Y position"),
- _("Y position of child widget"),
+ P_("Y position"),
+ P_("Y position of child widget"),
G_MININT,
G_MAXINT,
0,
@@ -628,24 +628,24 @@ gtk_layout_class_init (GtkLayoutClass *class)
g_object_class_install_property (gobject_class,
PROP_HADJUSTMENT,
g_param_spec_object ("hadjustment",
- _("Horizontal adjustment"),
- _("The GtkAdjustment for the horizontal position"),
+ P_("Horizontal adjustment"),
+ P_("The GtkAdjustment for the horizontal position"),
GTK_TYPE_ADJUSTMENT,
G_PARAM_READWRITE));
g_object_class_install_property (gobject_class,
PROP_VADJUSTMENT,
g_param_spec_object ("vadjustment",
- _("Vertical adjustment"),
- _("The GtkAdjustment for the vertical position"),
+ P_("Vertical adjustment"),
+ P_("The GtkAdjustment for the vertical position"),
GTK_TYPE_ADJUSTMENT,
G_PARAM_READWRITE));
g_object_class_install_property (gobject_class,
PROP_WIDTH,
g_param_spec_uint ("width",
- _("Width"),
- _("The width of the layout"),
+ P_("Width"),
+ P_("The width of the layout"),
0,
G_MAXINT,
100,
@@ -653,8 +653,8 @@ gtk_layout_class_init (GtkLayoutClass *class)
g_object_class_install_property (gobject_class,
PROP_HEIGHT,
g_param_spec_uint ("height",
- _("Height"),
- _("The height of the layout"),
+ P_("Height"),
+ P_("The height of the layout"),
0,
G_MAXINT,
100,