summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 87b63de)
raw | patch | inline | side by side (parent: 87b63de)
author | Michele Ballabio <barra_cuda@katamail.com> | |
Sun, 2 Sep 2007 12:43:00 +0000 (14:43 +0200) | ||
committer | Shawn O. Pearce <spearce@spearce.org> | |
Mon, 3 Sep 2007 04:45:25 +0000 (00:45 -0400) |
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>
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>
lib/remote.tcl | patch | blob | history |
diff --git a/lib/remote.tcl b/lib/remote.tcl
index 62bfe8f741b26fb87b1d96971088009ef15c5b2a..aba6eb8343e98b3cb73e5145fe584998695e5d50 100644 (file)
--- a/lib/remote.tcl
+++ b/lib/remote.tcl
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]
}
}
}
foreach r $prune_list {
$m add command \
- -label [mc "Prune from %s..." $r] \
+ -label [mc "Prune from %s" $r] \
-command [list prune_from $r]
}
}
$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
}