summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_access_action.c
blob: cae9e5c0661ad34972b3ed1c546767a8683483ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifdef HAVE_CONFIG_H
  #include "elementary_config.h"
#endif

#define EFL_ACCESS_ACTION_PROTECTED

#include "elm_priv.h"

EOLIAN const char *
_efl_access_action_action_localized_name_get(const Eo *obj, void *pd EINA_UNUSED, int id)
{
   const char *ret = NULL;

   ret = efl_access_action_name_get(obj, id);
#ifdef ENABLE_NLS
   ret = gettext(ret);
#endif
   return ret;
}

#include "efl_access_action.eo.c"