2 * Copyright (c) 2010-2011 Ævar Arnfjörð Bjarmason
4 * This is a skeleton no-op implementation of gettext for Git.
5 * You can replace it with something that uses libintl.h and wraps
6 * gettext() to try out the translations.
13 #error "namespace conflict: '_' is pre-defined?"
16 #define FORMAT_PRESERVING(n) __attribute__((format_arg(n)))
19 extern int use_gettext_poison(void);
21 #define use_gettext_poison() 0
24 static inline FORMAT_PRESERVING(1) const char *_(const char *msgid
)
26 return use_gettext_poison() ? "# GETTEXT POISON #" : msgid
;
29 /* Mark msgid for translation but do not translate it. */
30 #define N_(msgid) (msgid)