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>
Vasco Almeida committed
May 8, 2016 at 10:52 UTC
43c65a85c4160fc18469ed0af9a41ee2f78b04f4
1 file changed
+2
-2
git-gui.sh
+2
-2
@@ -3029,7 +3029,7 @@ bind all <$M1B-Key-W> {destroy [winfo toplevel %W]}
3029
3030
set subcommand_args {}
3031
proc usage {} {
3032
- set s "usage: $::argv0 $::subcommand $::subcommand_args"
3032
+ set s "[mc usage:] $::argv0 $::subcommand $::subcommand_args"
3033
if {[tk windowingsystem] eq "win32"} {
3034
wm withdraw .
3035
tk_messageBox -icon info -message $s \
@@ -3161,7 +3161,7 @@ gui {
3161
# fall through to setup UI for commits
3162
}
3163
default {
3164
- set err "usage: $argv0 \[{blame|browser|citool}\]"
3164
+ set err "[mc usage:] $argv0 \[{blame|browser|citool}\]"
3165
if {[tk windowingsystem] eq "win32"} {
3166
wm withdraw .
3167
tk_messageBox -icon error -message $err \