Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2005-05-18 22:17:42 +0400
committerAtsushi Eno <atsushieno@gmail.com>2005-05-18 22:17:42 +0400
commite8dc245013a436d7952e75ff24e3808517ad035a (patch)
tree12d3e782879ef4ceb4a7a846472d2aabd703502d /tools
parenta3e3afa3b6f227dba556637d3f465b4469262826 (diff)
2005-05-18 Atsushi Enomoto <atsushi@ximian.com>
* Driver.cs : quick workaround for zh-CHT related breakage. svn path=/trunk/mono/; revision=44703
Diffstat (limited to 'tools')
-rw-r--r--tools/locale-builder/ChangeLog4
-rw-r--r--tools/locale-builder/Driver.cs10
2 files changed, 14 insertions, 0 deletions
diff --git a/tools/locale-builder/ChangeLog b/tools/locale-builder/ChangeLog
index 94d86952cf6..8134d681df9 100644
--- a/tools/locale-builder/ChangeLog
+++ b/tools/locale-builder/ChangeLog
@@ -1,3 +1,7 @@
+2005-05-18 Atsushi Enomoto <atsushi@ximian.com>
+
+ * Driver.cs : quick workaround for zh-CHT related breakage.
+
2005-05-12 Atsushi Enomoto <atsushi@ximian.com>
* Entry.cs :
diff --git a/tools/locale-builder/Driver.cs b/tools/locale-builder/Driver.cs
index 9d1b2de2efa..eb2cc47ee7e 100644
--- a/tools/locale-builder/Driver.cs
+++ b/tools/locale-builder/Driver.cs
@@ -243,6 +243,16 @@ namespace Mono.Tools.LocaleBuilder {
private void ParseLocale (string locale)
{
+ #region Workaround
+ // FIXME: We should enable zh-TW and zh-HK when
+ // zh-CHT got working.
+ switch (locale) {
+ case "zh_TW":
+ case "zh_HK":
+ return;
+ }
+ #endregion
+
CultureInfoEntry ci;
ci = LookupCulture (locale);