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

#define EFL_ACCESS_ACTION_PROTECTED
#define EFL_ACCESS_ACTION_BETA

#include <Elementary.h>
#include "elm_widget.h"
#include "elm_priv.h"

EOLIAN const char *
_efl_access_action_action_localized_name_get(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"