integrate systray translation/gettext into e17.

SVN revision: 40613
This commit is contained in:
Gustavo Sverzut Barbieri 2009-05-13 01:28:11 +00:00
parent e7d14ee3ef
commit 4b229ee6da
3 changed files with 5 additions and 11 deletions

View File

@ -264,3 +264,4 @@ src/modules/mixer/conf_module.c
src/modules/mixer/e_mod_main.c
src/modules/connman/e_iface.c
src/modules/connman/e_mod_main.c
src/modules/systray/e_mod_main.c

View File

@ -868,9 +868,9 @@ _gc_init(E_Gadcon *gc, const char *name, const char *id, const char *style)
if ((!id) || (instance))
{
e_util_dialog_internal
(D_("Another systray exists"),
D_("There can be only one systray gadget and "
"another one already exists."));
(_("Another systray exists"),
_("There can be only one systray gadget and "
"another one already exists."));
return NULL;
}
@ -1067,7 +1067,7 @@ _gc_orient(E_Gadcon_Client *gcc, E_Gadcon_Orient orient)
static char *
_gc_label(E_Gadcon_Client_Class *client_class __UNUSED__)
{
return D_(_Name);
return _("Systray");
}
static Evas_Object *
@ -1103,11 +1103,6 @@ e_modapi_init(E_Module *m)
{
systray_mod = m;
if (snprintf(tmpbuf, sizeof(tmpbuf), "%s/locale", e_module_dir_get(m)) >= (int)sizeof(tmpbuf))
return NULL;
bindtextdomain(PACKAGE, tmpbuf);
bind_textdomain_codeset(PACKAGE, "UTF-8");
e_gadcon_provider_register(&_gc_class);
if (!_atom_manager)

View File

@ -1,8 +1,6 @@
#ifndef E_MOD_MAIN_H
#define E_MOD_MAIN_H
#define D_(str) dgettext(PACKAGE, str)
EAPI extern E_Module_Api e_modapi;
EAPI void *e_modapi_init(E_Module *m);