From: Shawn O. Pearce Date: Sun, 20 Jan 2008 19:43:38 +0000 (-0500) Subject: git-gui: Correct window title for hook failure dialogs X-Git-Tag: gitgui-0.9.2~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c87238e19de70c1066e606df53f4f20f19621acd;p=git.git 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 --- 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 "grab $w; focus $w" bind $w "destroy $w" - wm title $w [append "[appname] ([reponame]): " [mc "error"]] + wm title $w [strcat "[appname] ([reponame]): " [mc "error"]] tkwait window $w }