Skip to content

Commit

Permalink
git-gui: Correct window title for hook failure dialogs
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
spearce committed Jan 21, 2008
1 parent fb0ca47 commit c87238e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/error.tcl
Expand Up @@ -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
}

0 comments on commit c87238e

Please sign in to comment.