summaryrefslogtreecommitdiff
path: root/git-submodule.sh
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2011-05-21 18:44:05 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-05-21 18:57:16 (GMT)
commitf62f8212e1e47f25cc8e1d3e25b99c6f8c779b17 (patch)
tree386fa3ac31a3afc9d0cab461041b86189464fe69 /git-submodule.sh
parent165119e9e6cd9697caf3141c3433640f6804ae54 (diff)
downloadgit-f62f8212e1e47f25cc8e1d3e25b99c6f8c779b17.zip
git-f62f8212e1e47f25cc8e1d3e25b99c6f8c779b17.tar.gz
git-f62f8212e1e47f25cc8e1d3e25b99c6f8c779b17.tar.bz2
i18n: git-submodule $errmsg messages
Gettextize warning messages stored in the $errmsg variable using eval_gettext interpolation. This is explicitly tested for so we need to skip a portion of a test with test_i18ncmp. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-xgit-submodule.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/git-submodule.sh b/git-submodule.sh
index 60ea58e..5de34e4 100755
--- a/git-submodule.sh
+++ b/git-submodule.sh
@@ -678,13 +678,13 @@ cmd_summary() {
total_commits=
case "$missing_src,$missing_dst" in
t,)
- errmsg=" Warn: $name doesn't contain commit $sha1_src"
+ errmsg="$(eval_gettext " Warn: \$name doesn't contain commit \$sha1_src")"
;;
,t)
- errmsg=" Warn: $name doesn't contain commit $sha1_dst"
+ errmsg="$(eval_gettext " Warn: \$name doesn't contain commit \$sha1_dst")"
;;
t,t)
- errmsg=" Warn: $name doesn't contain commits $sha1_src and $sha1_dst"
+ errmsg="$(eval_gettext " Warn: \$name doesn't contain commits \$sha1_src and \$sha1_dst")"
;;
*)
errmsg=