diff options
author | martin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2009-07-30 20:34:23 +0000 |
---|---|---|
committer | martin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2009-07-30 20:34:23 +0000 |
commit | d72782347c2ba802cd030feeb23f7eacc4ae8a23 (patch) | |
tree | a729476323d0d551c2031b3a666193923ceb08a4 /support/glib/glibintl.h | |
parent | c297ef7f5928b0407ab67b9a76ccf166d0a1d3e0 (diff) | |
parent | 3b8435d744c504a88493f272068453023585837e (diff) | |
download | navit-svn-wince.tar.gz |
Updated wince branch to current versionwince
git-svn-id: http://svn.code.sf.net/p/navit/code/branches/wince/navit@2430 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'support/glib/glibintl.h')
-rw-r--r-- | support/glib/glibintl.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/support/glib/glibintl.h b/support/glib/glibintl.h new file mode 100644 index 00000000..7899488a --- /dev/null +++ b/support/glib/glibintl.h @@ -0,0 +1,39 @@ +#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 ENABLE_NLS + +#include <libintl.h> +#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__ */ |