mirror of
https://github.com/git/git.git
synced 2025-09-10 22:44:50 +02:00
Tweak the GETTEXT_POISON facility so it is activated at run time instead of compile time. If the GIT_GETTEXT_POISON environment variable is set, _(msg) will result in gibberish as before; but if the GIT_GETTEXT_POISON variable is not set, it will return the message for human-readable output. So the behavior of mistranslated and untranslated git can be compared without rebuilding git in between. For simplicity we always set the GIT_GETTEXT_POISON variable in tests. This does not affect builds without the GETTEXT_POISON compile-time option set, so non-i18n git will not be slowed down. Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
33 lines
731 B
C
33 lines
731 B
C
/*
|
|
* Copyright (c) 2010-2011 Ævar Arnfjörð Bjarmason
|
|
*
|
|
* This is a skeleton no-op implementation of gettext for Git.
|
|
* You can replace it with something that uses libintl.h and wraps
|
|
* gettext() to try out the translations.
|
|
*/
|
|
|
|
#ifndef GETTEXT_H
|
|
#define GETTEXT_H
|
|
|
|
#ifdef _
|
|
#error "namespace conflict: '_' is pre-defined?"
|
|
#endif
|
|
|
|
#define FORMAT_PRESERVING(n) __attribute__((format_arg(n)))
|
|
|
|
#ifdef GETTEXT_POISON
|
|
extern int use_gettext_poison(void);
|
|
#else
|
|
#define use_gettext_poison() 0
|
|
#endif
|
|
|
|
static inline FORMAT_PRESERVING(1) const char *_(const char *msgid)
|
|
{
|
|
return use_gettext_poison() ? "# GETTEXT POISON #" : msgid;
|
|
}
|
|
|
|
/* Mark msgid for translation but do not translate it. */
|
|
#define N_(msgid) (msgid)
|
|
|
|
#endif
|