diff options
author | ericm <ericm@noemail.net> | 2000-06-30 06:38:36 (GMT) |
---|---|---|
committer | ericm <ericm@noemail.net> | 2000-06-30 06:38:36 (GMT) |
commit | 838900d054634385dd5c112d89874df9c5f80aaf (patch) | |
tree | e1487b56f6601752fc461670f73bc6d8ed46576a /library/choosedir.tcl | |
parent | f2377634eeb3fab625da2bb56b6abd10bfa5580e (diff) | |
download | tk-838900d054634385dd5c112d89874df9c5f80aaf.zip tk-838900d054634385dd5c112d89874df9c5f80aaf.tar.gz tk-838900d054634385dd5c112d89874df9c5f80aaf.tar.bz2 |
* library/msgs/de.msg: German message catalog.
* library/msgs/en.msg: English message catalog.
* library/msgs/es.msg: Spanish message catalog.
* library/msgs/fr.msg: French message catalog.
* unix/Makefile.in:
* unix/configure.in:
* library/tk.tcl:
* library/clrpick.tcl:
* library/choosedir.tcl:
* library/console.tcl:
* library/msgbox.tcl:
* library/tkfbox.tcl:
* library/xmfbox.tcl:
* library/bgerror.tcl: Applied patches from Laurent Duperval to
provide localization of Tk dialogs. [RFE: 2671].
FossilOrigin-Name: fba5538c67f2c40b36cf85e267a90136a5a80bbd
Diffstat (limited to 'library/choosedir.tcl')
-rw-r--r-- | library/choosedir.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/choosedir.tcl b/library/choosedir.tcl index bae35af..d9aa79d 100644 --- a/library/choosedir.tcl +++ b/library/choosedir.tcl @@ -5,7 +5,7 @@ # Copyright (c) 1998-2000 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: choosedir.tcl,v 1.8 2000/06/23 00:22:28 ericm Exp $ +# RCS: @(#) $Id: choosedir.tcl,v 1.9 2000/06/30 06:38:38 ericm Exp $ # Make sure the tk::dialog namespace, in which all dialogs should live, exists namespace eval ::tk::dialog {} @@ -135,7 +135,7 @@ proc ::tk::dialog::file::chooseDir::Config {dataName argList} { tclParseConfigSpec ::tk::dialog::file::$dataName $specs "" $argList if {$data(-title) == ""} { - set data(-title) "Choose Directory" + set data(-title) "[::msgcat::mc "Choose Directory"]" } # Stub out the -multiple value for the dialog; it doesn't make sense for |