From: Ævar Arnfjörð Bjarmason Date: Sat, 21 May 2011 18:44:03 +0000 (+0000) Subject: i18n: git-submodule "cached cannot be used" message X-Git-Tag: v1.7.7-rc0~116^2~26 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b9b9c22f6db3e3c089098ba04fbc885e2cb4f4dd;p=git.git i18n: git-submodule "cached cannot be used" message Gettextize the "--cached cannot be used with --files" message. Since this message starts with "--" we have to pass "--" as the first argument. This works with both GNU gettext 0.18.1 (as expected), and the gettext(1) on Solaris 10. Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/git-submodule.sh b/git-submodule.sh index 7eb1de03a..444e1c581 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -617,7 +617,7 @@ cmd_summary() { if [ -n "$files" ] then test -n "$cached" && - die "--cached cannot be used with --files" + die "$(gettext -- "--cached cannot be used with --files")" diff_cmd=diff-files head= fi