diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2008-01-20 14:43:38 -0500 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-01-20 22:45:37 -0500 |
commit | c87238e19de70c1066e606df53f4f20f19621acd (patch) | |
tree | 1b9892735604a55f3993d5db9cb2ba748c59c256 /lib/error.tcl | |
parent | fb0ca475c6ab02eeeb8ca7f2c0558d64301a8800 (diff) | |
download | git-c87238e19de70c1066e606df53f4f20f19621acd.tar.gz git-c87238e19de70c1066e606df53f4f20f19621acd.tar.xz |
git-gui: Correct window title for hook failure dialogs
During i18n translation work this message was partially broken
by using "append" instead of "strcat" to join the two different
parts of the message together.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'lib/error.tcl')
-rw-r--r-- | lib/error.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/error.tcl b/lib/error.tcl index 13565b7ab..712d21755 100644 --- a/lib/error.tcl +++ b/lib/error.tcl @@ -99,6 +99,6 @@ proc hook_failed_popup {hook msg} { bind $w <Visibility> "grab $w; focus $w" bind $w <Key-Return> "destroy $w" - wm title $w [append "[appname] ([reponame]): " [mc "error"]] + wm title $w [strcat "[appname] ([reponame]): " [mc "error"]] tkwait window $w } |