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
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2004-06-05 19:39:24 +0400
committerAtsushi Eno <atsushieno@gmail.com>2004-06-05 19:39:24 +0400
commit6f7c7183a58d2e6831f5f2d3c29637596345bda0 (patch)
tree16b149e6cdd486524942f9bd1a5f80c044dde223 /tools/locale-builder/ChangeLog
parent4e222e016dedf6e3ae00d263ff89edcd81e9a6ce (diff)
2004-06-05 Atsushi Enomoto <atsushi@ximian.com>
* Driver.cs : - NumberDecimalDigits are almost differently specified by locale xml files. Almost all of them have ".###", but we need ".##" in almost all the locale. So let's *assume* that the number of digit is always +1 extraneous by this Driver itself. This change accompanies with some existing supp/*.xml changes. - For decimal patterns and currency patterns, when numeric patterns does not have ';'-separated patterns, it ignored the whole pattern string. Fixed it by just copying the same patterns. - When parsing percent patterns, '%' characters were in the way. - When the decimal part of the percent pattern ends with ".##0", the value of PercentDecimalDigits is 2. - Assume PercentDecimalDigits as 2 by default. svn path=/trunk/mono/; revision=28870
Diffstat (limited to 'tools/locale-builder/ChangeLog')
-rw-r--r--tools/locale-builder/ChangeLog20
1 files changed, 19 insertions, 1 deletions
diff --git a/tools/locale-builder/ChangeLog b/tools/locale-builder/ChangeLog
index e1f04f1fe5a..6c8c668eb14 100644
--- a/tools/locale-builder/ChangeLog
+++ b/tools/locale-builder/ChangeLog
@@ -1,4 +1,22 @@
-2004-06-03 Atsushi Enomoto <atsushi@ximian.com>
+2004-06-05 Atsushi Enomoto <atsushi@ximian.com>
+
+ * Driver.cs :
+ - NumberDecimalDigits are almost differently specified by locale
+ xml files. Almost all of them have ".###", but we need ".##" in
+ almost all the locale. So let's *assume* that the number of
+ digit is always +1 extraneous by this Driver itself.
+ This change accompanies with some existing supp/*.xml changes.
+
+ - For decimal patterns and currency patterns, when numeric patterns
+ does not have ';'-separated patterns, it ignored the whole pattern
+ string. Fixed it by just copying the same patterns.
+
+ - When parsing percent patterns, '%' characters were in the way.
+ - When the decimal part of the percent pattern ends with ".##0",
+ the value of PercentDecimalDigits is 2.
+ - Assume PercentDecimalDigits as 2 by default.
+
+2004-06-05 Atsushi Enomoto <atsushi@ximian.com>
* Driver.cs : Let's ignore DTD that takes most of the running time.