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/gtkcurve.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/gtkcurve.c')
-rw-r--r-- | gtk/gtkcurve.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk/gtkcurve.c b/gtk/gtkcurve.c index 3a059245a0..5dac891016 100644 --- a/gtk/gtkcurve.c +++ b/gtk/gtkcurve.c @@ -118,8 +118,8 @@ gtk_curve_class_init (GtkCurveClass *class) g_object_class_install_property (gobject_class, PROP_CURVE_TYPE, g_param_spec_enum ("curve_type", - _("Curve type"), - _("Is this curve linear, spline interpolated, or free-form"), + P_("Curve type"), + P_("Is this curve linear, spline interpolated, or free-form"), GTK_TYPE_CURVE_TYPE, GTK_CURVE_TYPE_LINEAR, G_PARAM_READABLE | @@ -127,8 +127,8 @@ gtk_curve_class_init (GtkCurveClass *class) g_object_class_install_property (gobject_class, PROP_MIN_X, g_param_spec_float ("min_x", - _("Minimum X"), - _("Minimum possible value for X"), + P_("Minimum X"), + P_("Minimum possible value for X"), -G_MAXFLOAT, G_MAXFLOAT, 0.0, @@ -137,8 +137,8 @@ gtk_curve_class_init (GtkCurveClass *class) g_object_class_install_property (gobject_class, PROP_MAX_X, g_param_spec_float ("max_x", - _("Maximum X"), - _("Maximum possible X value"), + P_("Maximum X"), + P_("Maximum possible X value"), -G_MAXFLOAT, G_MAXFLOAT, 1.0, @@ -147,8 +147,8 @@ gtk_curve_class_init (GtkCurveClass *class) g_object_class_install_property (gobject_class, PROP_MIN_Y, g_param_spec_float ("min_y", - _("Minimum Y"), - _("Minimum possible value for Y"), + P_("Minimum Y"), + P_("Minimum possible value for Y"), -G_MAXFLOAT, G_MAXFLOAT, 0.0, @@ -157,8 +157,8 @@ gtk_curve_class_init (GtkCurveClass *class) g_object_class_install_property (gobject_class, PROP_MAX_Y, g_param_spec_float ("max_y", - _("Maximum Y"), - _("Maximum possible value for Y"), + P_("Maximum Y"), + P_("Maximum possible value for Y"), -G_MAXFLOAT, G_MAXFLOAT, 1.0, |