diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-01-05 22:14:39 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-01-05 22:14:39 (GMT) |
commit | ed424cff437f0ef8ffcf082492e1e4ea2d63ac38 (patch) | |
tree | 45eecda3635a5d13277c4651498c95e89568ee78 /unix/tclUnixInit.c | |
parent | 78c76d0249a414356aa58cf1915b4c448aae766e (diff) | |
download | tcl-ed424cff437f0ef8ffcf082492e1e4ea2d63ac38.zip tcl-ed424cff437f0ef8ffcf082492e1e4ea2d63ac38.tar.gz tcl-ed424cff437f0ef8ffcf082492e1e4ea2d63ac38.tar.bz2 |
Add more locale mapping info for Chinese. [1084595]
Diffstat (limited to 'unix/tclUnixInit.c')
-rw-r--r-- | unix/tclUnixInit.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index a3add18..0c6fbe9 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -7,7 +7,7 @@ * Copyright (c) 1999 by Scriptics Corporation. * All rights reserved. * - * RCS: @(#) $Id: tclUnixInit.c,v 1.34.2.5 2004/11/19 06:29:25 das Exp $ + * RCS: @(#) $Id: tclUnixInit.c,v 1.34.2.6 2005/01/05 22:14:43 dkf Exp $ */ #if defined(HAVE_CFBUNDLE) @@ -136,6 +136,11 @@ static CONST LocaleTable localeTable[] = { {"ru_SU", "iso8859-5"}, {"zh", "cp936"}, + {"zh_CN.gb2312", "euc-cn"}, + {"zh_CN.GB2312", "euc-cn"}, + {"zh_CN.GBK", "euc-cn"}, + {"zh_TW.Big5", "big5"}, + {"zh_TW", "euc-tw"}, {NULL, NULL} }; |