diff options
author | Pat Thoyts <patthoyts@users.sourceforge.net> | 2016-10-03 23:40:50 +0100 |
---|---|---|
committer | Pat Thoyts <patthoyts@users.sourceforge.net> | 2016-10-03 23:40:50 +0100 |
commit | 52f2445d5c70a204f614fd83cf98a27359dff04c (patch) | |
tree | 56fdf799654d24e1fcdc49658e9db215d54d45ba /lib/browser.tcl | |
parent | 99ba48e397995a4b06a57f78e5611a29d239e5ea (diff) | |
parent | 9360fc22eaa5e8db33f1806a8e23afb83369a2f5 (diff) | |
download | git-52f2445d5c70a204f614fd83cf98a27359dff04c.tar.gz git-52f2445d5c70a204f614fd83cf98a27359dff04c.tar.xz |
Merge branch 'va/i18n_2' into pu
Diffstat (limited to 'lib/browser.tcl')
-rw-r--r-- | lib/browser.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/browser.tcl b/lib/browser.tcl index 0328338fd..158049353 100644 --- a/lib/browser.tcl +++ b/lib/browser.tcl @@ -24,7 +24,7 @@ constructor new {commit {path {}}} { global cursor_ptr M1B use_ttk NS make_dialog top w wm withdraw $top - wm title $top [append "[appname] ([reponame]): " [mc "File Browser"]] + wm title $top [mc "%s (%s): File Browser" [appname] [reponame]] if {$path ne {}} { if {[string index $path end] ne {/}} { @@ -272,7 +272,7 @@ constructor dialog {} { global use_ttk NS make_dialog top w wm withdraw $top - wm title $top [append "[appname] ([reponame]): " [mc "Browse Branch Files"]] + wm title $top [mc "%s (%s): Browse Branch Files" [appname] [reponame]] if {$top ne {.}} { wm geometry $top "+[winfo rootx .]+[winfo rooty .]" wm transient $top . |