]> git.sesse.net Git - vlc/blob - modules/lua/libs/gettext.c
Move /modules/misc/lua/ to /modules/lua
[vlc] / modules / lua / libs / gettext.c
1 /*****************************************************************************
2  * gettext.c
3  *****************************************************************************
4  * Copyright (C) 2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea at videolan tod org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifndef  _GNU_SOURCE
28 #   define  _GNU_SOURCE
29 #endif
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <lua.h>        /* Low level lua C API */
36 #include <lauxlib.h>    /* Higher level C API */
37 #include <lualib.h>     /* Lua libs */
38
39 #include "../vlc.h"
40 #include "../libs.h"
41
42 /*****************************************************************************
43  * Libvlc gettext support
44  *****************************************************************************/
45 static int vlclua_gettext( lua_State *L )
46 {
47     lua_pushstring( L, _( luaL_checkstring( L, 1 ) ) );
48     return 1;
49 }
50
51 static int vlclua_gettext_noop( lua_State *L )
52 {
53     lua_settop( L, 1 );
54     return 1;
55 }
56
57 /*****************************************************************************
58  *
59  *****************************************************************************/
60 static const luaL_Reg vlclua_gettext_reg[] = {
61     { "_", vlclua_gettext },
62     { "N_", vlclua_gettext_noop },
63
64     { NULL, NULL }
65 };
66
67 void luaopen_gettext( lua_State *L )
68 {
69     lua_newtable( L );
70     luaL_register( L, NULL, vlclua_gettext_reg );
71     lua_setfield( L, -2, "gettext" );
72 }