Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 15b7898c5e9fc6fed9a6064213cfcd08cf7d7314 authored by Junio C Hamano on 14 December 2011, 05:30:40 UTC
Git 1.7.6.5
Tip revision: 15b7898
git-sh-i18n.sh
#!/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.

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

back to top