1#!/bin/sh
2#
3# Copyright (c) 2010 Ævar Arnfjörð Bjarmason
4#
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.
78
gettext () {
9printf "%s" "$1"
10}
1112
eval_gettext () {
13printf "%s" "$1" | (
14export PATH $(git sh-i18n--envsubst --variables "$1");
15git sh-i18n--envsubst "$1"
16)
17}