Merge remote branch 'gvdb/master'
[platform/upstream/glib.git] / glib / glibintl.h
1 #ifndef __GLIBINTL_H__
2 #define __GLIBINTL_H__
3
4 #ifndef SIZEOF_CHAR
5 #error "config.h must be included prior to glibintl.h"
6 #endif
7
8 G_CONST_RETURN gchar *glib_gettext (const gchar *str) G_GNUC_FORMAT(1);
9
10 #ifdef ENABLE_NLS
11
12 #include <libintl.h>
13 #define _(String) glib_gettext(String)
14 /* Split out this in the code, but keep it in the same domain for now */
15 #define P_(String) glib_gettext(String)
16 #define C_(Context,String) g_dpgettext (NULL, Context "\004" String, strlen (Context) + 1)
17
18 #ifdef gettext_noop
19 #define N_(String) gettext_noop(String)
20 #else
21 #define N_(String) (String)
22 #endif
23 #else /* NLS is disabled */
24 #define _(String) (String)
25 #define N_(String) (String)
26 #define P_(String) (String)
27 #define C_(Context,String) (String)
28 #define textdomain(String) ((String) ? (String) : "messages")
29 #define gettext(String) (String)
30 #define dgettext(Domain,String) (String)
31 #define dcgettext(Domain,String,Type) (String)
32 #define dngettext(Domain,String1,String2,N) ((N) == 1 ? (String1) : (String2))
33 #define bindtextdomain(Domain,Directory) (Domain) 
34 #define bind_textdomain_codeset(Domain,Codeset)
35 #endif
36
37 /* not really I18N-related, but also a string marker macro */
38 #define I_(string) g_intern_static_string (string)
39
40 #endif /* __GLIBINTL_H__ */