summaryrefslogtreecommitdiff
path: root/git-stash.sh
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2011-05-21 18:44:17 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-05-21 18:57:17 (GMT)
commiteed10649c2864168e6205057ce49101cc1123a13 (patch)
tree64a95258279346a734b3c76cedfc98cc4b900ff2 /git-stash.sh
parent155da748ef4938382db50ab5784b2a3971932c08 (diff)
downloadgit-eed10649c2864168e6205057ce49101cc1123a13.zip
git-eed10649c2864168e6205057ce49101cc1123a13.tar.gz
git-eed10649c2864168e6205057ce49101cc1123a13.tar.bz2
i18n: git-stash "unknown option" message
Gettextize the "unknown option for 'stash save'" message that's shown on: $ git stash save --blah-blah error: unknown option for 'stash save': --blah-blah To provide a message, use git stash save -- '--blah-blah' Usage: git stash list [<options>] In a translation the second line should be aligned with the first one. I've added a TRANSLATORS comment to indicate this. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-stash.sh')
-rwxr-xr-xgit-stash.sh15
1 files changed, 13 insertions, 2 deletions
diff --git a/git-stash.sh b/git-stash.sh
index ede35a5..fa5a43e 100755
--- a/git-stash.sh
+++ b/git-stash.sh
@@ -152,8 +152,19 @@ save_stash () {
break
;;
-*)
- echo "error: unknown option for 'stash save': $1"
- echo " To provide a message, use git stash save -- '$1'"
+ option="$1"
+ # TRANSLATORS: $option is an invalid option, like
+ # `--blah-blah'. The 7 spaces at the beginning of the
+ # second line correspond to "error: ". So you should line
+ # up the second line with however many characters the
+ # translation of "error: " takes in your language. E.g. in
+ # English this is:
+ #
+ # $ git stash save --blah-blah 2>&1 | head -n 2
+ # error: unknown option for 'stash save': --blah-blah
+ # To provide a message, use git stash save -- '--blah-blah'
+ eval_gettext "$("error: unknown option for 'stash save': \$option
+ To provide a message, use git stash save -- '\$option'")"; echo
usage
;;
*)