]> git.sesse.net Git - vlc/blob - modules/misc/lua/libs/gettext.c
lua: remove "bla ? true : false"
[vlc] / modules / misc / 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 <vlc_fixups.h>
36
37 #include <lua.h>        /* Low level lua C API */
38 #include <lauxlib.h>    /* Higher level C API */
39 #include <lualib.h>     /* Lua libs */
40
41 #include "../vlc.h"
42 #include "../libs.h"
43
44 /*****************************************************************************
45  * Libvlc gettext support
46  *****************************************************************************/
47 static int vlclua_gettext( lua_State *L )
48 {
49     lua_pushstring( L, _( luaL_checkstring( L, 1 ) ) );
50     return 1;
51 }
52
53 static int vlclua_gettext_noop( lua_State *L )
54 {
55     lua_settop( L, 1 );
56     return 1;
57 }
58
59 /*****************************************************************************
60  *
61  *****************************************************************************/
62 static const luaL_Reg vlclua_gettext_reg[] = {
63     { "_", vlclua_gettext },
64     { "N_", vlclua_gettext_noop },
65
66     { NULL, NULL }
67 };
68
69 void luaopen_gettext( lua_State *L )
70 {
71     lua_newtable( L );
72     luaL_register( L, NULL, vlclua_gettext_reg );
73     lua_setfield( L, -2, "gettext" );
74 }