i18n: git-stash: mark messages for translation

Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Vasco Almeida committed Aug 10, 2016 at 10:50 UTC 599e7a0b9e86dab9e6b2c7a136fe04b6b52a923a
1 file changed +2 -2
git-stash.sh
+2 -2
@@ -265,7 +265,7 @@ save_stash () {
265 create_stash "$stash_msg" $untracked
266 store_stash -m "$stash_msg" -q $w_commit ||
267 die "$(gettext "Cannot save the current status")"
268 - say Saved working directory and index state "$stash_msg"
268 + say "$(eval_gettext "Saved working directory and index state \$stash_msg")"
269
270 if test -z "$patch_mode"
271 then
@@ -548,7 +548,7 @@ pop_stash() {
548 drop_stash "$@"
549 else
550 status=$?
551 - say "The stash is kept in case you need it again."
551 + say "$(gettext "The stash is kept in case you need it again.")"
552 exit $status
553 fi
554 }