Skip to content

Commit c87238e

Browse files
committed
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>
1 parent fb0ca47 commit c87238e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/error.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,6 @@ proc hook_failed_popup {hook msg} {
9999

100100
bind $w <Visibility> "grab $w; focus $w"
101101
bind $w <Key-Return> "destroy $w"
102-
wm title $w [append "[appname] ([reponame]): " [mc "error"]]
102+
wm title $w [strcat "[appname] ([reponame]): " [mc "error"]]
103103
tkwait window $w
104104
}

0 commit comments

Comments
 (0)