]> git.ipfire.org Git - thirdparty/git.git/blame - gettext.c
Eighth batch for 2.20
[thirdparty/git.git] / gettext.c
CommitLineData
30955229
JN
1/*
2 * Copyright (c) 2010 Ævar Arnfjörð Bjarmason
3 */
4
226c0ddd 5#include "cache.h"
92034a9c 6#include "exec-cmd.h"
30955229 7#include "gettext.h"
754395d3
NTND
8#include "strbuf.h"
9#include "utf8.h"
30955229 10
5e9637c6
ÆAB
11#ifndef NO_GETTEXT
12# include <locale.h>
13# include <libintl.h>
14# ifdef HAVE_LIBCHARSET_H
15# include <libcharset.h>
16# else
17# include <langinfo.h>
18# define locale_charset() nl_langinfo(CODESET)
19# endif
20#endif
21
e8c16726
NTND
22static const char *charset;
23
93f7d910
JK
24/*
25 * Guess the user's preferred languages from the value in LANGUAGE environment
26 * variable and LC_MESSAGES locale category if NO_GETTEXT is not defined.
27 *
28 * The result can be a colon-separated list like "ko:ja:en".
29 */
30const char *get_preferred_languages(void)
31{
32 const char *retval;
33
34 retval = getenv("LANGUAGE");
35 if (retval && *retval)
36 return retval;
37
38#ifndef NO_GETTEXT
39 retval = setlocale(LC_MESSAGES, NULL);
40 if (retval && *retval &&
41 strcmp(retval, "C") &&
42 strcmp(retval, "POSIX"))
43 return retval;
44#endif
45
46 return NULL;
47}
48
5e9637c6 49#ifdef GETTEXT_POISON
30955229
JN
50int use_gettext_poison(void)
51{
52 static int poison_requested = -1;
53 if (poison_requested == -1)
54 poison_requested = getenv("GIT_GETTEXT_POISON") ? 1 : 0;
55 return poison_requested;
56}
5e9637c6
ÆAB
57#endif
58
59#ifndef NO_GETTEXT
9c0495d2
NTND
60static int test_vsnprintf(const char *fmt, ...)
61{
62 char buf[26];
63 int ret;
64 va_list ap;
65 va_start(ap, fmt);
66 ret = vsnprintf(buf, sizeof(buf), fmt, ap);
67 va_end(ap);
68 return ret;
69}
70
5e9637c6
ÆAB
71static void init_gettext_charset(const char *domain)
72{
5e9637c6
ÆAB
73 /*
74 This trick arranges for messages to be emitted in the user's
75 requested encoding, but avoids setting LC_CTYPE from the
76 environment for the whole program.
77
78 This primarily done to avoid a bug in vsnprintf in the GNU C
79 Library [1]. which triggered a "your vsnprintf is broken" error
80 on Git's own repository when inspecting v0.99.6~1 under a UTF-8
81 locale.
82
83 That commit contains a ISO-8859-1 encoded author name, which
84 the locale aware vsnprintf(3) won't interpolate in the format
85 argument, due to mismatch between the data encoding and the
86 locale.
87
88 Even if it wasn't for that bug we wouldn't want to use LC_CTYPE at
89 this point, because it'd require auditing all the code that uses C
90 functions whose semantics are modified by LC_CTYPE.
91
92 But only setting LC_MESSAGES as we do creates a problem, since
93 we declare the encoding of our PO files[2] the gettext
94 implementation will try to recode it to the user's locale, but
95 without LC_CTYPE it'll emit something like this on 'git init'
96 under the Icelandic locale:
97
98 Bj? til t?ma Git lind ? /hlagh/.git/
99
100 Gettext knows about the encoding of our PO file, but we haven't
101 told it about the user's encoding, so all the non-US-ASCII
102 characters get encoded to question marks.
103
104 But we're in luck! We can set LC_CTYPE from the environment
105 only while we call nl_langinfo and
106 bind_textdomain_codeset. That suffices to tell gettext what
107 encoding it should emit in, so it'll now say:
108
109 Bjó til tóma Git lind í /hlagh/.git/
110
111 And the equivalent ISO-8859-1 string will be emitted under a
112 ISO-8859-1 locale.
113
114 With this change way we get the advantages of setting LC_CTYPE
115 (talk to the user in his language/encoding), without the major
116 drawbacks (changed semantics for C functions we rely on).
117
118 However foreign functions using other message catalogs that
119 aren't using our neat trick will still have a problem, e.g. if
120 we have to call perror(3):
121
122 #include <stdio.h>
123 #include <locale.h>
124 #include <errno.h>
125
126 int main(void)
127 {
128 setlocale(LC_MESSAGES, "");
129 setlocale(LC_CTYPE, "C");
130 errno = ENODEV;
131 perror("test");
132 return 0;
133 }
134
135 Running that will give you a message with question marks:
136
137 $ LANGUAGE= LANG=de_DE.utf8 ./test
138 test: Kein passendes Ger?t gefunden
139
9c0495d2 140 The vsnprintf bug has been fixed since glibc 2.17.
5e9637c6
ÆAB
141
142 Then we could simply set LC_CTYPE from the environment, which would
143 make things like the external perror(3) messages work.
144
145 See t/t0203-gettext-setlocale-sanity.sh's "gettext.c" tests for
146 regression tests.
147
148 1. http://sourceware.org/bugzilla/show_bug.cgi?id=6530
149 2. E.g. "Content-Type: text/plain; charset=UTF-8\n" in po/is.po
150 */
151 setlocale(LC_CTYPE, "");
152 charset = locale_charset();
153 bind_textdomain_codeset(domain, charset);
9c0495d2
NTND
154 /* the string is taken from v0.99.6~1 */
155 if (test_vsnprintf("%.*s", 13, "David_K\345gedal") < 0)
156 setlocale(LC_CTYPE, "C");
5e9637c6
ÆAB
157}
158
159void git_setup_gettext(void)
160{
226c0ddd 161 const char *podir = getenv(GIT_TEXT_DOMAIN_DIR_ENVIRONMENT);
0210231b 162 char *p = NULL;
5e9637c6
ÆAB
163
164 if (!podir)
0210231b 165 podir = p = system_path(GIT_LOCALE_PATH);
226c0ddd 166
0210231b
JS
167 if (!is_directory(podir)) {
168 free(p);
cc5e1bf9 169 return;
0210231b 170 }
226c0ddd 171
5e9637c6
ÆAB
172 bindtextdomain("git", podir);
173 setlocale(LC_MESSAGES, "");
aa1462cc 174 setlocale(LC_TIME, "");
5e9637c6
ÆAB
175 init_gettext_charset("git");
176 textdomain("git");
0210231b
JS
177
178 free(p);
5e9637c6 179}
754395d3
NTND
180
181/* return the number of columns of string 's' in current locale */
182int gettext_width(const char *s)
183{
184 static int is_utf8 = -1;
185 if (is_utf8 == -1)
e8c16726 186 is_utf8 = is_utf8_locale();
754395d3
NTND
187
188 return is_utf8 ? utf8_strwidth(s) : strlen(s);
189}
5e9637c6 190#endif
e8c16726
NTND
191
192int is_utf8_locale(void)
193{
194#ifdef NO_GETTEXT
195 if (!charset) {
196 const char *env = getenv("LC_ALL");
197 if (!env || !*env)
198 env = getenv("LC_CTYPE");
199 if (!env || !*env)
200 env = getenv("LANG");
201 if (!env)
202 env = "";
203 if (strchr(env, '.'))
204 env = strchr(env, '.') + 1;
205 charset = xstrdup(env);
206 }
207#endif
208 return is_encoding_utf8(charset);
209}