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>
maint
Shawn O. Pearce 2008-01-20 14:43:38 -05:00
parent fb0ca475c6
commit c87238e19d
1 changed files with 1 additions and 1 deletions

View File

@ -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
}