Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: f696543dad6c7ba27b0c4fab167a5687263a9ba0 authored by Junio C Hamano on 26 June 2011, 19:41:16 UTC
Git 1.7.6
Tip revision: f696543
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