projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
647f511
)
Use gettext correctly to translate the "Icon %s" message (patch from Igor Murzov)
author
Massimo Maiurana
<maiurana@gmail.com>
Sun, 16 Dec 2012 17:01:31 +0000
(17:01 +0000)
committer
Massimo Maiurana
<maiurana@gmail.com>
Sun, 16 Dec 2012 17:01:31 +0000
(17:01 +0000)
SVN revision: 81051
src/modules/ibar/e_mod_main.c
patch
|
blob
|
history
diff --git
a/src/modules/ibar/e_mod_main.c
b/src/modules/ibar/e_mod_main.c
index
56c16d4
..
2f397a1
100644
(file)
--- a/
src/modules/ibar/e_mod_main.c
+++ b/
src/modules/ibar/e_mod_main.c
@@
-878,8
+878,8
@@
_ibar_cb_icon_mouse_down(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUS
e_menu_item_callback_set(mi, _ibar_cb_menu_icon_remove, ic);
mi = e_menu_item_new_relative(m, NULL);
- snprintf(buf, sizeof(buf),
"Icon %s"
, ic->app->name);
- e_menu_item_label_set(mi,
_(buf)
);
+ snprintf(buf, sizeof(buf),
_("Icon %s")
, ic->app->name);
+ e_menu_item_label_set(mi,
buf
);
e_util_desktop_menu_item_icon_add(ic->app,
e_util_icon_size_normalize(24 * e_scale),
mi);