diff options
author | Vasco Almeida <vascomalmeida@sapo.pt> | 2016-05-08 10:52:56 +0000 |
---|---|---|
committer | Pat Thoyts <patthoyts@users.sourceforge.net> | 2016-10-03 23:40:04 +0100 |
commit | 43c65a85c4160fc18469ed0af9a41ee2f78b04f4 (patch) | |
tree | 96e7948810465e66284b4dfe21265c11f843a085 | |
parent | eca963683c13e0fea80da57f15489bb7204b0b62 (diff) | |
download | git-43c65a85c4160fc18469ed0af9a41ee2f78b04f4.tar.gz git-43c65a85c4160fc18469ed0af9a41ee2f78b04f4.tar.xz |
git-gui i18n: mark "usage:" strings for translation
Mark command-line "usage:" string for translation in git-gui.sh.
Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
-rwxr-xr-x | git-gui.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-gui.sh b/git-gui.sh index 5e3fb2330..f9b323abf 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -3029,7 +3029,7 @@ bind all <$M1B-Key-W> {destroy [winfo toplevel %W]} set subcommand_args {} proc usage {} { - set s "usage: $::argv0 $::subcommand $::subcommand_args" + set s "[mc usage:] $::argv0 $::subcommand $::subcommand_args" if {[tk windowingsystem] eq "win32"} { wm withdraw . tk_messageBox -icon info -message $s \ @@ -3161,7 +3161,7 @@ gui { # fall through to setup UI for commits } default { - set err "usage: $argv0 \[{blame|browser|citool}\]" + set err "[mc usage:] $argv0 \[{blame|browser|citool}\]" if {[tk windowingsystem] eq "win32"} { wm withdraw . tk_messageBox -icon error -message $err \ |