aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/shot/e_mod_main.c
diff options
context:
space:
mode:
authorMassimo Maiurana <maiurana@gmail.com>2012-12-16 16:58:17 +0000
committerMassimo Maiurana <maiurana@gmail.com>2012-12-16 16:58:17 +0000
commit9f1d6e067e4091e8dbc3eb17e0a13fe5650c70d3 (patch)
tree298147c36e8bac04b5bf8c266b391ac15deb7dfc /src/modules/shot/e_mod_main.c
parentc4175e62ec82c282de93edf4250a0f180b518af1 (diff)
downloadenlightenment-9f1d6e067e4091e8dbc3eb17e0a13fe5650c70d3.tar.gz
enlightenment-9f1d6e067e4091e8dbc3eb17e0a13fe5650c70d3.tar.xz
enlightenment-9f1d6e067e4091e8dbc3eb17e0a13fe5650c70d3.zip
Store and handle action names correctly. (patch from Igor Murzov)
SVN revision: 81049
Diffstat (limited to 'src/modules/shot/e_mod_main.c')
-rw-r--r--src/modules/shot/e_mod_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/shot/e_mod_main.c b/src/modules/shot/e_mod_main.c
index 1177cdceb..d9d9ff1d6 100644
--- a/src/modules/shot/e_mod_main.c
+++ b/src/modules/shot/e_mod_main.c
@@ -974,14 +974,14 @@ e_modapi_init(E_Module *m)
if (act)
{
act->func.go = _e_mod_action_cb;
- e_action_predef_name_set(_("Screen"), _("Take Screenshot"),
+ e_action_predef_name_set(N_("Screen"), N_("Take Screenshot"),
"shot", NULL, NULL, 0);
}
border_act = e_action_add("border_shot");
if (border_act)
{
border_act->func.go = _e_mod_action_border_cb;
- e_action_predef_name_set(_("Window : Actions"), _("Take Shot"),
+ e_action_predef_name_set(N_("Window : Actions"), N_("Take Shot"),
"border_shot", NULL, NULL, 0);
}
maug = e_int_menus_menu_augmentation_add_sorted
@@ -1012,7 +1012,7 @@ e_modapi_shutdown(E_Module *m __UNUSED__)
}
if (act)
{
- e_action_predef_name_del(_("Screen"), _("Take Screenshot"));
+ e_action_predef_name_del("Screen", "Take Screenshot");
e_action_del("shot");
act = NULL;
}