summaryrefslogtreecommitdiff
path: root/lib/error.tcl
diff options
context:
space:
mode:
authorVasco Almeida <vascomalmeida@sapo.pt>2016-05-08 10:52:55 +0000
committerPat Thoyts <patthoyts@users.sourceforge.net>2016-10-03 23:39:56 +0100
commiteca963683c13e0fea80da57f15489bb7204b0b62 (patch)
tree0f048d91eda9b88a409f5a6d2d379d5141c54e39 /lib/error.tcl
parent99ba48e397995a4b06a57f78e5611a29d239e5ea (diff)
downloadgit-eca963683c13e0fea80da57f15489bb7204b0b62.tar.xz
git-gui i18n: internationalize use of colon punctuation
Internationalize use of colon punctuation ':' in options window, windows titles, database statistics window. Some languages might use a different style, for instance French uses "User Name :" (space before colon). Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt> Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Diffstat (limited to 'lib/error.tcl')
-rw-r--r--lib/error.tcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/error.tcl b/lib/error.tcl
index c0fa69af56..9b7d2294ba 100644
--- a/lib/error.tcl
+++ b/lib/error.tcl
@@ -113,7 +113,7 @@ proc hook_failed_popup {hook msg {is_fatal 1}} {
bind $w <Visibility> "grab $w; focus $w"
bind $w <Key-Return> "destroy $w"
- wm title $w [strcat "[appname] ([reponame]): " [mc "error"]]
+ wm title $w [mc "%s (%s): error" [appname] [reponame]]
wm deiconify $w
tkwait window $w
}