summaryrefslogtreecommitdiff
path: root/gtk/gtkcontainer.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtkcontainer.c')
-rw-r--r--gtk/gtkcontainer.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c
index 53f2472325..91f3e88abf 100644
--- a/gtk/gtkcontainer.c
+++ b/gtk/gtkcontainer.c
@@ -200,16 +200,16 @@ gtk_container_class_init (GtkContainerClass *class)
g_object_class_install_property (gobject_class,
PROP_RESIZE_MODE,
g_param_spec_enum ("resize_mode",
- _("Resize mode"),
- _("Specify how resize events are handled"),
+ P_("Resize mode"),
+ P_("Specify how resize events are handled"),
GTK_TYPE_RESIZE_MODE,
GTK_RESIZE_PARENT,
G_PARAM_READWRITE));
g_object_class_install_property (gobject_class,
PROP_BORDER_WIDTH,
g_param_spec_uint ("border_width",
- _("Border width"),
- _("The width of the empty border outside the containers children"),
+ P_("Border width"),
+ P_("The width of the empty border outside the containers children"),
0,
G_MAXINT,
0,
@@ -217,8 +217,8 @@ gtk_container_class_init (GtkContainerClass *class)
g_object_class_install_property (gobject_class,
PROP_CHILD,
g_param_spec_object ("child",
- _("Child"),
- _("Can be used to add a new child to the container"),
+ P_("Child"),
+ P_("Can be used to add a new child to the container"),
GTK_TYPE_WIDGET,
G_PARAM_WRITABLE));
container_signals[ADD] =