diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2012-08-22 21:48:03 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-08-22 09:59:52 -0700 |
commit | a312a271b92fe74f5954adbb824987b040926c4c (patch) | |
tree | 7e73138d2c236af91aa68fe4133629838360c5f7 /git-am.sh | |
parent | 14bf2d58bc3b202da3ca34cfdf72392889135411 (diff) | |
download | git-a312a271b92fe74f5954adbb824987b040926c4c.tar.gz |
am: quote string for translation before passing to eval_gettextln
If it's not quoted, the string is expanded before it gets looked up in
gettext database and obviously nothing is returned.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-am.sh')
-rwxr-xr-x | git-am.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -836,8 +836,8 @@ did you forget to use 'git add'?" eval_gettextln 'Patch failed at $msgnum $FIRSTLINE' if test "$(git config --bool advice.amworkdir)" != false then - eval_gettextln "The copy of the patch that failed is found in: - $dotest/patch" + eval_gettextln 'The copy of the patch that failed is found in: + $dotest/patch' fi stop_here_user_resolve $this fi |