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_().
This commit is contained in:

committed by
Matthias Clasen

parent
fb526d239a
commit
07d4d314b6
@ -126,24 +126,24 @@ gtk_progress_class_init (GtkProgressClass *class)
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_ACTIVITY_MODE,
|
||||
g_param_spec_boolean ("activity_mode",
|
||||
_("Activity mode"),
|
||||
_("If TRUE the GtkProgress is in activity mode, meaning that it signals something is happening, but not how much of the activity is finished. This is used when you're doing something that you don't know how long it will take"),
|
||||
P_("Activity mode"),
|
||||
P_("If TRUE the GtkProgress is in activity mode, meaning that it signals something is happening, but not how much of the activity is finished. This is used when you're doing something that you don't know how long it will take"),
|
||||
FALSE,
|
||||
G_PARAM_READWRITE));
|
||||
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_SHOW_TEXT,
|
||||
g_param_spec_boolean ("show_text",
|
||||
_("Show text"),
|
||||
_("Whether the progress is shown as text"),
|
||||
P_("Show text"),
|
||||
P_("Whether the progress is shown as text"),
|
||||
FALSE,
|
||||
G_PARAM_READWRITE));
|
||||
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_TEXT_XALIGN,
|
||||
g_param_spec_float ("text_xalign",
|
||||
_("Text x alignment"),
|
||||
_("A number between 0.0 and 1.0 specifying the horizontal alignment of the text in the progress widget"),
|
||||
P_("Text x alignment"),
|
||||
P_("A number between 0.0 and 1.0 specifying the horizontal alignment of the text in the progress widget"),
|
||||
0.0,
|
||||
1.0,
|
||||
0.5,
|
||||
@ -151,8 +151,8 @@ gtk_progress_class_init (GtkProgressClass *class)
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_TEXT_YALIGN,
|
||||
g_param_spec_float ("text_yalign",
|
||||
_("Text y alignment"),
|
||||
_("A number between 0.0 and 1.0 specifying the vertical alignment of the text in the progress widget"),
|
||||
P_("Text y alignment"),
|
||||
P_("A number between 0.0 and 1.0 specifying the vertical alignment of the text in the progress widget"),
|
||||
0.0,
|
||||
1.0,
|
||||
0.5,
|
||||
|
Reference in New Issue
Block a user