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
@ -338,16 +338,16 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass)
|
||||
g_object_class_install_property (object_class,
|
||||
PROP_MODEL,
|
||||
g_param_spec_object ("model",
|
||||
_("ComboBox model"),
|
||||
_("The model for the combo box"),
|
||||
P_("ComboBox model"),
|
||||
P_("The model for the combo box"),
|
||||
GTK_TYPE_TREE_MODEL,
|
||||
G_PARAM_READWRITE));
|
||||
|
||||
g_object_class_install_property (object_class,
|
||||
PROP_WRAP_WIDTH,
|
||||
g_param_spec_int ("wrap_width",
|
||||
_("Wrap width"),
|
||||
_("Wrap width for layouting the items in a grid"),
|
||||
P_("Wrap width"),
|
||||
P_("Wrap width for layouting the items in a grid"),
|
||||
0,
|
||||
G_MAXINT,
|
||||
0,
|
||||
@ -356,8 +356,8 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass)
|
||||
g_object_class_install_property (object_class,
|
||||
PROP_ROW_SPAN_COLUMN,
|
||||
g_param_spec_int ("row_span_column",
|
||||
_("Row span column"),
|
||||
_("TreeModel column containing the row span values"),
|
||||
P_("Row span column"),
|
||||
P_("TreeModel column containing the row span values"),
|
||||
0,
|
||||
G_MAXINT,
|
||||
0,
|
||||
@ -366,8 +366,8 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass)
|
||||
g_object_class_install_property (object_class,
|
||||
PROP_COLUMN_SPAN_COLUMN,
|
||||
g_param_spec_int ("column_span_column",
|
||||
_("Column span column"),
|
||||
_("TreeModel column containing the column span values"),
|
||||
P_("Column span column"),
|
||||
P_("TreeModel column containing the column span values"),
|
||||
0,
|
||||
G_MAXINT,
|
||||
0,
|
||||
@ -376,8 +376,8 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass)
|
||||
g_object_class_install_property (object_class,
|
||||
PROP_ACTIVE,
|
||||
g_param_spec_int ("active",
|
||||
_("Active item"),
|
||||
_("The item which is currently active"),
|
||||
P_("Active item"),
|
||||
P_("The item which is currently active"),
|
||||
0,
|
||||
G_MAXINT,
|
||||
0,
|
||||
@ -385,8 +385,8 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass)
|
||||
|
||||
gtk_widget_class_install_style_property (widget_class,
|
||||
g_param_spec_boolean ("appearance",
|
||||
_("ComboBox appareance"),
|
||||
_("ComboBox appearance, where TRUE means Windows-style."),
|
||||
P_("ComboBox appareance"),
|
||||
P_("ComboBox appearance, where TRUE means Windows-style."),
|
||||
FALSE,
|
||||
G_PARAM_READWRITE));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user