X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=git-sh-i18n.sh;h=32ca59de82b6a26879128650bf40882f4ed16aa0;hb=701825de23da2bff6c784d33ff27f75e802abd81;hp=ea05e16b192297cfa137060e3c79bcf661ee88a7;hpb=e00cf070a45351e4170b75e016597695d1962a87;p=git.git diff --git a/git-sh-i18n.sh b/git-sh-i18n.sh index ea05e16b1..32ca59de8 100644 --- a/git-sh-i18n.sh +++ b/git-sh-i18n.sh @@ -5,13 +5,25 @@ # 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. -gettext () { - printf "%s" "$1" -} +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 -eval_gettext () { - printf "%s" "$1" | ( - export PATH $(git sh-i18n--envsubst --variables "$1"); - git sh-i18n--envsubst "$1" - ) -}