git-sh-i18n.sh: add no-op gettext() and eval_gettext() wrappers
[git.git] / git-sh-i18n.sh
blobea05e16b192297cfa137060e3c79bcf661ee88a7
1 #!/bin/sh
3 # Copyright (c) 2010 Ævar Arnfjörð Bjarmason
5 # This is a skeleton no-op implementation of gettext for Git. It'll be
6 # replaced by something that uses gettext.sh in a future patch series.
8 gettext () {
9 printf "%s" "$1"
12 eval_gettext () {
13 printf "%s" "$1" | (
14 export PATH $(git sh-i18n--envsubst --variables "$1");
15 git sh-i18n--envsubst "$1"