summaryrefslogtreecommitdiff
path: root/navit/support/glib/glibintl.h
blob: 13af202c8d51d6378874ab77cf3a037b91574ed9 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef __GLIBINTL_H__
#define __GLIBINTL_H__

#if NOT_NEEDED_FOR_NAVIT
#ifndef SIZEOF_CHAR
#error "config.h must be included prior to glibintl.h"
#endif
#endif /* NOT_NEEDED_FOR_NAVIT */

G_CONST_RETURN gchar *glib_gettext (const gchar *str);

#ifdef USE_NATIVE_LANGUAGE_SUPPORT

#include "navit_nls.h"
#undef _
#undef gettext_noop
#undef _n

#define _(String) glib_gettext(String)
/* Split out this in the code, but keep it in the same domain for now */
#define P_(String) glib_gettext(String)

#ifdef gettext_noop
#define N_(String) gettext_noop(String)
#else
#define N_(String) (String)
#endif
#else /* NLS is disabled */
#define _(String) (String)
#define N_(String) (String)
#define P_(String) (String)
#define textdomain(String) (String)
#define gettext(String) (String)
#define dgettext(Domain,String) (String)
#define dcgettext(Domain,String,Type) (String)
#define dngettext(Domain,String1,String2,N) ((N) == 1 ? (String1) : (String2))
#define bindtextdomain(Domain,Directory) (Domain) 
#endif

/* not really I18N-related, but also a string marker macro */
#define I_(string) g_intern_static_string (string)

#endif /* __GLIBINTL_H__ */