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/gtkmenubar.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/gtkmenubar.c')
-rw-r--r-- | gtk/gtkmenubar.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkmenubar.c b/gtk/gtkmenubar.c index 30a1ff74cd..2842d201cb 100644 --- a/gtk/gtkmenubar.c +++ b/gtk/gtkmenubar.c @@ -153,24 +153,24 @@ gtk_menu_bar_class_init (GtkMenuBarClass *class) gtk_widget_class_install_style_property (widget_class, g_param_spec_enum ("shadow_type", - _("Shadow type"), - _("Style of bevel around the menubar"), + P_("Shadow type"), + P_("Style of bevel around the menubar"), GTK_TYPE_SHADOW_TYPE, GTK_SHADOW_OUT, G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, g_param_spec_int ("internal_padding", - _("Internal padding"), - _("Amount of border space between the menubar shadow and the menu items"), + P_("Internal padding"), + P_("Amount of border space between the menubar shadow and the menu items"), 0, G_MAXINT, DEFAULT_IPADDING, G_PARAM_READABLE)); gtk_settings_install_property (g_param_spec_int ("gtk-menu-bar-popup-delay", - _("Delay before drop down menus appear"), - _("Delay before the submenus of a menu bar appear"), + P_("Delay before drop down menus appear"), + P_("Delay before the submenus of a menu bar appear"), 0, G_MAXINT, 0, |