localize the name of module categories so they can later be matched properly

SVN revision: 76008
This commit is contained in:
Mike Blumenkrantz 2012-09-03 12:20:18 +00:00
parent c67b4ffad8
commit f384b3a1b3
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ _cftype_new(const char *key, const char *name, const char *icon)
if (!cft) return NULL;
cft->key = eina_stringshare_add(key);
cft->name = eina_stringshare_add(name);
cft->name = eina_stringshare_add(_(name));
cft->icon = eina_stringshare_add(icon);
INF("CFT NEW: key(%s) name(%s) icon(%s)", key, name, icon);
return cft;