]> git.ipfire.org Git - thirdparty/git.git/blame - gettext.h
gettext: do not translate empty string
[thirdparty/git.git] / gettext.h
CommitLineData
65784830
ÆAB
1/*
2 * Copyright (c) 2010-2011 Ævar Arnfjörð Bjarmason
3 *
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.
7 */
8
9#ifndef GETTEXT_H
10#define GETTEXT_H
11
0c9ea33b
JN
12#if defined(_) || defined(Q_)
13#error "namespace conflict: '_' or 'Q_' is pre-defined?"
65784830
ÆAB
14#endif
15
5e9637c6
ÆAB
16#ifndef NO_GETTEXT
17# include <libintl.h>
18#else
19# ifdef gettext
20# undef gettext
21# endif
22# define gettext(s) (s)
23# ifdef ngettext
24# undef ngettext
25# endif
26# define ngettext(s, p, n) ((n == 1) ? (s) : (p))
27#endif
28
65784830
ÆAB
29#define FORMAT_PRESERVING(n) __attribute__((format_arg(n)))
30
5e9637c6
ÆAB
31#ifndef NO_GETTEXT
32extern void git_setup_gettext(void);
33#else
34static inline void git_setup_gettext(void)
35{
36}
37#endif
38
bb946bba 39#ifdef GETTEXT_POISON
30955229 40extern int use_gettext_poison(void);
bb946bba
ÆAB
41#else
42#define use_gettext_poison() 0
43#endif
44
65784830
ÆAB
45static inline FORMAT_PRESERVING(1) const char *_(const char *msgid)
46{
0c3a433f
TR
47 if (!*msgid)
48 return "";
5e9637c6 49 return use_gettext_poison() ? "# GETTEXT POISON #" : gettext(msgid);
65784830
ÆAB
50}
51
0c9ea33b
JN
52static inline FORMAT_PRESERVING(1) FORMAT_PRESERVING(2)
53const char *Q_(const char *msgid, const char *plu, unsigned long n)
54{
55 if (use_gettext_poison())
56 return "# GETTEXT POISON #";
5e9637c6 57 return ngettext(msgid, plu, n);
0c9ea33b
JN
58}
59
65784830 60/* Mark msgid for translation but do not translate it. */
642f85fa 61#define N_(msgid) msgid
65784830
ÆAB
62
63#endif