9d625ef14a63afda139caef87f41fe3a9847f9d7
[neverball] / share / lang.h
1 /*
2  * Copyright (C) 2006 Jean Privat
3  *
4  * this file is  free software; you can redistribute  it and/or modify
5  * it under the  terms of the GNU General  Public License as published
6  * by the Free  Software Foundation; either version 2  of the License,
7  * or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT  ANY  WARRANTY;  without   even  the  implied  warranty  of
11  * MERCHANTABILITY or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU
12  * General Public License for more details.
13  */
14
15 #ifndef LANG_H
16 #define LANG_H
17
18 #ifndef DISABLE_NLS
19 #include <libintl.h>
20 #define _(String)   gettext(String)
21 #else
22 #define _(String)   (String)
23 #endif
24
25 /* No-op, useful for marking up strings for extraction-only. */
26 #define N_(String)  (String)
27
28 /*---------------------------------------------------------------------------*/
29
30 void lang_init(const char *domain, const char *locale_dir);
31
32 const char *sgettext(const char *);
33
34 /*---------------------------------------------------------------------------*/
35
36 #endif