summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4a27903)
raw | patch | inline | side by side (parent: 4a27903)
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | |
Tue, 7 Sep 2010 14:57:02 +0000 (14:57 +0000) | ||
committer | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | |
Sat, 30 Oct 2010 07:58:17 +0000 (07:58 +0000) |
Convert a message that used printf(1) format to use eval_gettext. It's
easier for translators to handle the latter, since the eval format
automatically gives them context via variable names.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
easier for translators to handle the latter, since the eval format
automatically gives them context via variable names.
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 ba8c24e61793497b76c74bd9c48d275f879501d3..5f3d1c5e53ccd3660ecb5d1a2abf00de1e74a308 100755 (executable)
--- a/git-am.sh
+++ b/git-am.sh
fi
if test $apply_status != 0
then
- printf 'Patch failed at %s %s\n' "$msgnum" "$FIRSTLINE"
+ eval_gettext 'Patch failed at $msgnum $FIRSTLINE'; echo
stop_here_user_resolve $this
fi