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: https://git.lorimer.id.au/gitweb.git/diff_plain/c87238e19de70c1066e606df53f4f20f19621acd?hp=--cc 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 --- c87238e19de70c1066e606df53f4f20f19621acd diff --git a/lib/error.tcl b/lib/error.tcl index 13565b7ab0..712d217553 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 }