From: Vasco Almeida Date: Wed, 10 Aug 2016 10:50:30 +0000 (+0000) Subject: i18n: git-stash: mark messages for translation X-Git-Tag: v2.10.0-rc0~5^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=599e7a0b9e86dab9e6b2c7a136fe04b6b52a923a;p=thirdparty%2Fgit.git i18n: git-stash: mark messages for translation Signed-off-by: Vasco Almeida Signed-off-by: Junio C Hamano --- diff --git a/git-stash.sh b/git-stash.sh index 22fb8bcba6..826af183d4 100755 --- a/git-stash.sh +++ b/git-stash.sh @@ -265,7 +265,7 @@ save_stash () { create_stash "$stash_msg" $untracked store_stash -m "$stash_msg" -q $w_commit || die "$(gettext "Cannot save the current status")" - say Saved working directory and index state "$stash_msg" + say "$(eval_gettext "Saved working directory and index state \$stash_msg")" if test -z "$patch_mode" then @@ -548,7 +548,7 @@ pop_stash() { drop_stash "$@" else status=$? - say "The stash is kept in case you need it again." + say "$(gettext "The stash is kept in case you need it again.")" exit $status fi }