1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-03 14:36:10 +02:00

i18n: git-stash say + gettext messages

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Ævar Arnfjörð Bjarmason 2011-05-21 18:44:12 +00:00 committed by Junio C Hamano
parent 365c656a70
commit 5a1758710d

View File

@ -168,7 +168,7 @@ save_stash () {
git update-index -q --refresh
if no_changes
then
say 'No local changes to save'
say "$(gettext "No local changes to save")"
exit 0
fi
test -f "$GIT_DIR/logs/$ref_stash" ||
@ -488,7 +488,7 @@ branch)
case $# in
0)
save_stash &&
say '(To restore them type "git stash apply")'
say "$(gettext "(To restore them type \"git stash apply\")")"
;;
*)
usage