blob: 92b62f8b9fe2f41c82a81052b1942b5c3a2a63e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifdef HAVE_CONFIG_H
#include "elementary_config.h"
#endif
#define EFL_ACCESS_ACTION_PROTECTED
#include <Elementary.h>
#include "elm_widget.h"
#include "elm_priv.h"
EOLIAN const char *
_efl_access_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"
|