summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0620a71)
raw | patch | inline | side by side (parent: 0620a71)
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | |
Tue, 7 Sep 2010 14:20:05 +0000 (14:20 +0000) | ||
committer | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | |
Sat, 30 Oct 2010 07:58:16 +0000 (07:58 +0000) |
One-line `gettext $msg; echo' messages are the simplest use case for
gettext(1).
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
gettext(1).
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
git-am.sh | patch | blob | history |
diff --git a/git-am.sh b/git-am.sh
index cfad206d6a6b31b7ab38f03e31c0ae62a1012a3d..33a1c871360a3de6448fd647cf1f1509f89eaecf 100755 (executable)
--- a/git-am.sh
+++ b/git-am.sh
cannot_fallback () {
echo "$1"
- echo "Cannot fall back to three-way merge."
+ gettext "Cannot fall back to three-way merge."; echo
exit 1
}
if test -z "$GIT_AUTHOR_EMAIL"
then
- echo "Patch does not have a valid e-mail address."
+ gettext "Patch does not have a valid e-mail address."; echo
stop_here $this
fi
action=again
while test "$action" = again
do
- echo "Commit Body is:"
+ gettext "Commit Body is:"; echo
echo "--------------------------"
cat "$dotest/final-commit"
echo "--------------------------"