diff options
author | Suresh Chandrasekharan <suresh.chandrasekharan@sun.com> | 2003-07-29 05:22:19 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-07-29 05:22:19 +0800 |
commit | 1448bfd7fc4b3f8d138f9612a08f921975e283db (patch) | |
tree | a5c903462e66deb6629a88fd77ad654004fbcb9e | |
parent | 947eccd3eab018f6749e581a76b36317238a6e9d (diff) | |
download | gsoc2013-evolution-1448bfd7fc4b3f8d138f9612a08f921975e283db.tar.gz gsoc2013-evolution-1448bfd7fc4b3f8d138f9612a08f921975e283db.tar.zst gsoc2013-evolution-1448bfd7fc4b3f8d138f9612a08f921975e283db.zip |
Fix for #46168 some additional locale aliases required for chinese support
2003-07-11 Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
* gal/util/e-iconv.c : Fix for #46168 some additional locale aliases
required for chinese support
svn path=/trunk/; revision=21999
-rw-r--r-- | e-util/e-iconv.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/e-util/e-iconv.c b/e-util/e-iconv.c index 9a11d9e389..3236521438 100644 --- a/e-util/e-iconv.c +++ b/e-util/e-iconv.c @@ -134,6 +134,10 @@ struct { /* FIXME: Japanese/Korean/Chinese stuff needs checking */ { "euckr-0", "EUC-KR" }, { "5601", "EUC-KR" }, + { "zh_TW-euc", "EUC-TW" }, + { "zh_CN.euc", "gb2312" }, + { "zh_TW-big5", "BIG5" }, + { "euc-cn", "gb2312" }, { "big5-0", "BIG5" }, { "big5.eten-0", "BIG5" }, { "big5hkscs-0", "BIG5HKSCS" }, |