From: Ævar Arnfjörð Bjarmason Date: Sat, 21 May 2011 18:43:59 +0000 (+0000) Subject: i18n: git-submodule echo + eval_gettext messages X-Git-Tag: v1.7.7-rc0~116^2~30 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=dc2204fe32385fba349e18d953dacd152c72fe00;p=git.git i18n: git-submodule echo + eval_gettext messages Signed-off-by: Ævar Arnfjörð Bjarmason Signed-off-by: Junio C Hamano --- diff --git a/git-submodule.sh b/git-submodule.sh index 816ab3d95..547f5cbcf 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -234,7 +234,7 @@ cmd_add() then if test -d "$path"/.git -o -f "$path"/.git then - echo "Adding existing repo at '$path' to the index" + eval_gettext "Adding existing repo at '\$path' to the index"; echo else die "'$path' already exists and is not a valid git repo" fi @@ -658,7 +658,10 @@ cmd_summary() { ;; # removed *) # unexpected type - echo >&2 "unexpected mode $mod_dst" + ( + eval_gettext "unexpected mode \$mod_dst" && + echo + ) >&2 continue ;; esac fi