diff options
author | Michele Ballabio <barra_cuda@katamail.com> | 2007-09-02 14:43:00 +0200 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-09-03 00:45:25 -0400 |
commit | 74e528bf44e715774e3a8e0003a6b2b250f4f0b9 (patch) | |
tree | 515d3d89f125fbcd79dcde50abd993245cbf05a5 /lib/remote.tcl | |
parent | git-gui: Quiet the msgfmt part of the make process (diff) | |
download | tgif-74e528bf44e715774e3a8e0003a6b2b250f4f0b9.tar.xz |
git-gui: remove dots in some UI strings
Dots in a UI string usually mean that a dialog box will
appear waiting for further input. So this patch removes
unneeded dots for actions that do not require user's
input.
Signed-off-by: Michele Ballabio <barra_cuda@katamail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'lib/remote.tcl')
-rw-r--r-- | lib/remote.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/remote.tcl b/lib/remote.tcl index 62bfe8f741..aba6eb8343 100644 --- a/lib/remote.tcl +++ b/lib/remote.tcl @@ -159,7 +159,7 @@ proc populate_fetch_menu {} { if {$enable} { lappend prune_list $r $m add command \ - -label [mc "Fetch from %s..." $r] \ + -label [mc "Fetch from %s" $r] \ -command [list fetch_from $r] } } @@ -169,7 +169,7 @@ proc populate_fetch_menu {} { } foreach r $prune_list { $m add command \ - -label [mc "Prune from %s..." $r] \ + -label [mc "Prune from %s" $r] \ -command [list prune_from $r] } } @@ -203,7 +203,7 @@ proc populate_push_menu {} { $m add separator } $m add command \ - -label [mc "Push to %s..." $r] \ + -label [mc "Push to %s" $r] \ -command [list push_to $r] incr fast_count } |