Code

git-sh-i18n.sh: add no-op gettext() and eval_gettext() wrappers
[git.git] / git-sh-i18n.sh
diff --git a/git-sh-i18n.sh b/git-sh-i18n.sh
new file mode 100644 (file)
index 0000000..ea05e16
--- /dev/null
@@ -0,0 +1,17 @@
+#!/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.
+
+gettext () {
+       printf "%s" "$1"
+}
+
+eval_gettext () {
+       printf "%s" "$1" | (
+               export PATH $(git sh-i18n--envsubst --variables "$1");
+               git sh-i18n--envsubst "$1"
+       )
+}