diff options
author | ericm <ericm> | 2000-06-30 06:38:37 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-06-30 06:38:37 (GMT) |
commit | 360ba5a659a8fac08458227696f08e8786486821 (patch) | |
tree | e1487b56f6601752fc461670f73bc6d8ed46576a /library/choosedir.tcl | |
parent | e198ab3d290731e5e38d1370f1a3d47870765892 (diff) | |
download | tk-360ba5a659a8fac08458227696f08e8786486821.zip tk-360ba5a659a8fac08458227696f08e8786486821.tar.gz tk-360ba5a659a8fac08458227696f08e8786486821.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].
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 |