diff options
Diffstat (limited to 'gtk/gtkviewport.c')
-rw-r--r-- | gtk/gtkviewport.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkviewport.c b/gtk/gtkviewport.c index 084a7a00b5..edbb45b834 100644 --- a/gtk/gtkviewport.c +++ b/gtk/gtkviewport.c @@ -131,24 +131,24 @@ gtk_viewport_class_init (GtkViewportClass *class) g_object_class_install_property (gobject_class, PROP_HADJUSTMENT, g_param_spec_object ("hadjustment", - _("Horizontal adjustment"), - _("The GtkAdjustment that determines the values of the horizontal position for this viewport"), + P_("Horizontal adjustment"), + P_("The GtkAdjustment that determines the values of the horizontal position for this viewport"), GTK_TYPE_ADJUSTMENT, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); g_object_class_install_property (gobject_class, PROP_VADJUSTMENT, g_param_spec_object ("vadjustment", - _("Vertical adjustment"), - _("The GtkAdjustment that determines the values of the vertical position for this viewport"), + P_("Vertical adjustment"), + P_("The GtkAdjustment that determines the values of the vertical position for this viewport"), GTK_TYPE_ADJUSTMENT, G_PARAM_READWRITE | G_PARAM_CONSTRUCT)); g_object_class_install_property (gobject_class, PROP_SHADOW_TYPE, g_param_spec_enum ("shadow_type", - _("Shadow type"), - _("Determines how the shadowed box around the viewport is drawn"), + P_("Shadow type"), + P_("Determines how the shadowed box around the viewport is drawn"), GTK_TYPE_SHADOW_TYPE, GTK_SHADOW_IN, G_PARAM_READWRITE)); |