diff options
Diffstat (limited to 'gtk/gtklabel.c')
-rw-r--r-- | gtk/gtklabel.c | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/gtk/gtklabel.c b/gtk/gtklabel.c index 874baf1caa..f26e99abcf 100644 --- a/gtk/gtklabel.c +++ b/gtk/gtklabel.c @@ -287,37 +287,37 @@ gtk_label_class_init (GtkLabelClass *class) g_object_class_install_property (gobject_class, PROP_LABEL, g_param_spec_string ("label", - _("Label"), - _("The text of the label"), + P_("Label"), + P_("The text of the label"), NULL, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_ATTRIBUTES, g_param_spec_boxed ("attributes", - _("Attributes"), - _("A list of style attributes to apply to the text of the label"), + P_("Attributes"), + P_("A list of style attributes to apply to the text of the label"), PANGO_TYPE_ATTR_LIST, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_USE_MARKUP, g_param_spec_boolean ("use_markup", - _("Use markup"), - _("The text of the label includes XML markup. See pango_parse_markup()"), + P_("Use markup"), + P_("The text of the label includes XML markup. See pango_parse_markup()"), FALSE, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_USE_UNDERLINE, g_param_spec_boolean ("use_underline", - _("Use underline"), - _("If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key"), + P_("Use underline"), + P_("If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key"), FALSE, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_JUSTIFY, g_param_spec_enum ("justify", - _("Justification"), - _("The alignment of the lines in the text of the label relative to each other. This does NOT affect the alignment of the label within its allocation. See GtkMisc::xalign for that"), + P_("Justification"), + P_("The alignment of the lines in the text of the label relative to each other. This does NOT affect the alignment of the label within its allocation. See GtkMisc::xalign for that"), GTK_TYPE_JUSTIFICATION, GTK_JUSTIFY_LEFT, G_PARAM_READWRITE)); @@ -325,30 +325,30 @@ gtk_label_class_init (GtkLabelClass *class) g_object_class_install_property (gobject_class, PROP_PATTERN, g_param_spec_string ("pattern", - _("Pattern"), - _("A string with _ characters in positions correspond to characters in the text to underline"), + P_("Pattern"), + P_("A string with _ characters in positions correspond to characters in the text to underline"), NULL, G_PARAM_WRITABLE)); g_object_class_install_property (gobject_class, PROP_WRAP, g_param_spec_boolean ("wrap", - _("Line wrap"), - _("If set, wrap lines if the text becomes too wide"), + P_("Line wrap"), + P_("If set, wrap lines if the text becomes too wide"), FALSE, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_SELECTABLE, g_param_spec_boolean ("selectable", - _("Selectable"), - _("Whether the label text can be selected with the mouse"), + P_("Selectable"), + P_("Whether the label text can be selected with the mouse"), FALSE, G_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_MNEMONIC_KEYVAL, g_param_spec_uint ("mnemonic_keyval", - _("Mnemonic key"), - _("The mnemonic accelerator key for this label"), + P_("Mnemonic key"), + P_("The mnemonic accelerator key for this label"), 0, G_MAXUINT, GDK_VoidSymbol, @@ -356,8 +356,8 @@ gtk_label_class_init (GtkLabelClass *class) g_object_class_install_property (gobject_class, PROP_MNEMONIC_WIDGET, g_param_spec_object ("mnemonic_widget", - _("Mnemonic widget"), - _("The widget to be activated when the label's mnemonic " + P_("Mnemonic widget"), + P_("The widget to be activated when the label's mnemonic " "key is pressed"), GTK_TYPE_WIDGET, G_PARAM_READWRITE)); @@ -365,8 +365,8 @@ gtk_label_class_init (GtkLabelClass *class) g_object_class_install_property (gobject_class, PROP_CURSOR_POSITION, g_param_spec_int ("cursor_position", - _("Cursor Position"), - _("The current position of the insertion cursor in chars"), + P_("Cursor Position"), + P_("The current position of the insertion cursor in chars"), 0, G_MAXINT, 0, @@ -375,8 +375,8 @@ gtk_label_class_init (GtkLabelClass *class) g_object_class_install_property (gobject_class, PROP_SELECTION_BOUND, g_param_spec_int ("selection_bound", - _("Selection Bound"), - _("The position of the opposite end of the selection from the cursor in chars"), + P_("Selection Bound"), + P_("The position of the opposite end of the selection from the cursor in chars"), 0, G_MAXINT, 0, |