aboutsummaryrefslogtreecommitdiffstats
path: root/lib/egg/eggtrayicon.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-11-08 21:10:50 +0800
committerChristian Persch <chpe@src.gnome.org>2005-11-08 21:10:50 +0800
commit0081e3e7afcb59c78529f6871cbf4f2802319c43 (patch)
treee5222b73ca5c317e30419d3336ee4b642e6a5d69 /lib/egg/eggtrayicon.c
parent9bd86937bbf9842ed7884077a04f76757a086734 (diff)
downloadgsoc2013-epiphany-0081e3e7afcb59c78529f6871cbf4f2802319c43.tar
gsoc2013-epiphany-0081e3e7afcb59c78529f6871cbf4f2802319c43.tar.gz
gsoc2013-epiphany-0081e3e7afcb59c78529f6871cbf4f2802319c43.tar.bz2
gsoc2013-epiphany-0081e3e7afcb59c78529f6871cbf4f2802319c43.tar.lz
gsoc2013-epiphany-0081e3e7afcb59c78529f6871cbf4f2802319c43.tar.xz
gsoc2013-epiphany-0081e3e7afcb59c78529f6871cbf4f2802319c43.tar.zst
gsoc2013-epiphany-0081e3e7afcb59c78529f6871cbf4f2802319c43.zip
Don't translate param spec strings.
2005-11-08 Christian Persch <chpe@cvs.gnome.org> * lib/egg/eggstatusicon.c: (egg_status_icon_class_init): * lib/egg/eggtrayicon.c: (egg_tray_icon_class_init): * lib/egg/eggtraymanager.c: (egg_tray_manager_class_init): Don't translate param spec strings.
Diffstat (limited to 'lib/egg/eggtrayicon.c')
-rw-r--r--lib/egg/eggtrayicon.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/egg/eggtrayicon.c b/lib/egg/eggtrayicon.c
index eb23d2c5e..2ffa784b7 100644
--- a/lib/egg/eggtrayicon.c
+++ b/lib/egg/eggtrayicon.c
@@ -36,6 +36,7 @@
#define _(x) x
#define N_(x) x
#endif
+#define P_(x) x
#define SYSTEM_TRAY_REQUEST_DOCK 0
#define SYSTEM_TRAY_BEGIN_MESSAGE 1
@@ -117,8 +118,8 @@ egg_tray_icon_class_init (EggTrayIconClass *klass)
g_object_class_install_property (gobject_class,
PROP_ORIENTATION,
g_param_spec_enum ("orientation",
- _("Orientation"),
- _("The orientation of the tray."),
+ P_("Orientation"),
+ P_("The orientation of the tray."),
GTK_TYPE_ORIENTATION,
GTK_ORIENTATION_HORIZONTAL,
G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));