aboutsummaryrefslogtreecommitdiff
path: root/lib/branch_delete.tcl
diff options
context:
space:
mode:
authorPat Thoyts <patthoyts@users.sourceforge.net>2016-10-03 23:40:50 +0100
committerPat Thoyts <patthoyts@users.sourceforge.net>2016-10-03 23:40:50 +0100
commit52f2445d5c70a204f614fd83cf98a27359dff04c (patch)
tree56fdf799654d24e1fcdc49658e9db215d54d45ba /lib/branch_delete.tcl
parent99ba48e397995a4b06a57f78e5611a29d239e5ea (diff)
parent9360fc22eaa5e8db33f1806a8e23afb83369a2f5 (diff)
downloadgit-52f2445d5c70a204f614fd83cf98a27359dff04c.tar.gz
git-52f2445d5c70a204f614fd83cf98a27359dff04c.tar.xz
Merge branch 'va/i18n_2' into pu
Diffstat (limited to 'lib/branch_delete.tcl')
-rw-r--r--lib/branch_delete.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/branch_delete.tcl b/lib/branch_delete.tcl
index 867938ec6..a5051637b 100644
--- a/lib/branch_delete.tcl
+++ b/lib/branch_delete.tcl
@@ -13,7 +13,7 @@ constructor dialog {} {
make_dialog top w
wm withdraw $w
- wm title $top [append "[appname] ([reponame]): " [mc "Delete Branch"]]
+ wm title $top [mc "%s (%s): Delete Branch" [appname] [reponame]]
if {$top ne {.}} {
wm geometry $top "+[winfo rootx .]+[winfo rooty .]"
}
@@ -128,7 +128,7 @@ method _delete {} {
set b [lindex $i 0]
set o [lindex $i 1]
if {[catch {git branch -D $b} err]} {
- append failed " - $b: $err\n"
+ append failed [mc " - %s:" $b] " $err\n"
}
}