diff options
author | Marc Branchaud <marcnarc@xiplink.com> | 2015-04-07 11:53:37 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2015-05-17 14:26:46 +1000 |
commit | 5ee1c99ad17357a2f8a4e0139b5b0e276d17e092 (patch) | |
tree | 3c1444b635a4aa5df90f5745c442ec91a9976820 | |
parent | gitk: Make it easier to go quickly to a specific commit (diff) | |
download | tgif-5ee1c99ad17357a2f8a4e0139b5b0e276d17e092.tar.xz |
gitk: Use translated version of "Command line" in getcommitlines
This is needed for getcommitlines to work properly when a language
translation is being used.
Signed-off-by: Marc Branchaud <marcnarc@xiplink.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rwxr-xr-x | gitk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1442,7 +1442,7 @@ proc getcommitlines {fd inst view updating} { if {[string range $err 0 4] == "usage"} { set err "Gitk: error reading commits$fv:\ bad arguments to git log." - if {$viewname($view) eq "Command line"} { + if {$viewname($view) eq [mc "Command line"]} { append err \ " (Note: arguments to gitk are passed to git log\ to allow selection of commits to be displayed.)" |