2011-05-14 15:47:43 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2010 Ævar Arnfjörð Bjarmason
|
|
|
|
#
|
|
|
|
# This is a skeleton no-op implementation of gettext for Git. It'll be
|
|
|
|
# replaced by something that uses gettext.sh in a future patch series.
|
|
|
|
|
2011-05-14 15:47:44 +02:00
|
|
|
if test -z "$GIT_GETTEXT_POISON"
|
|
|
|
then
|
|
|
|
gettext () {
|
|
|
|
printf "%s" "$1"
|
|
|
|
}
|
|
|
|
|
|
|
|
eval_gettext () {
|
|
|
|
printf "%s" "$1" | (
|
|
|
|
export PATH $(git sh-i18n--envsubst --variables "$1");
|
|
|
|
git sh-i18n--envsubst "$1"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gettext () {
|
|
|
|
printf "%s" "# GETTEXT POISON #"
|
|
|
|
}
|
|
|
|
|
|
|
|
eval_gettext () {
|
|
|
|
printf "%s" "# GETTEXT POISON #"
|
|
|
|
}
|
|
|
|
fi
|
2011-05-14 15:47:43 +02:00
|
|
|
|