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>2004-06-04 01:27:21 +0400
committerAtsushi Eno <atsushieno@gmail.com>2004-06-04 01:27:21 +0400
commit9217f853504caadc1a7a197546bcf07dbe16f129 (patch)
tree7a728753058e6ef56ce4c46910b0ee95c4dd082f /tools
parente6af507b9f4439cf4cdccc7fb9c97703800072bf (diff)
2004-06-03 Atsushi Enomoto <atsushi@ximian.com>
* Driver.cs : {3} is the almost default number for group digits. svn path=/trunk/mono/; revision=28793
Diffstat (limited to 'tools')
-rw-r--r--tools/locale-builder/ChangeLog4
-rw-r--r--tools/locale-builder/Driver.cs6
2 files changed, 7 insertions, 3 deletions
diff --git a/tools/locale-builder/ChangeLog b/tools/locale-builder/ChangeLog
index ccedab862b7..cd4ec180cca 100644
--- a/tools/locale-builder/ChangeLog
+++ b/tools/locale-builder/ChangeLog
@@ -1,3 +1,7 @@
+2004-06-03 Atsushi Enomoto <atsushi@ximian.com>
+
+ * Driver.cs : {3} is the almost default number for group digits.
+
2004-05-26 Atsushi Enomoto <atsushi@ximian.com>
* Driver.cs : for af_ZA locale, am/pm part got required to support
diff --git a/tools/locale-builder/Driver.cs b/tools/locale-builder/Driver.cs
index 9e1ad27bcb5..40c45392d42 100644
--- a/tools/locale-builder/Driver.cs
+++ b/tools/locale-builder/Driver.cs
@@ -521,7 +521,7 @@ namespace Mono.Tools.LocaleBuilder {
ci.NumberFormatEntry.NumberGroupSizes [i] = pat.Length;
}
} else {
- ci.NumberFormatEntry.NumberGroupSizes = new int [1] { 0 };
+ ci.NumberFormatEntry.NumberGroupSizes = new int [1] { 3 };
}
if (pos_neg [1].StartsWith ("(") && pos_neg [1].EndsWith (")")) {
@@ -590,7 +590,7 @@ namespace Mono.Tools.LocaleBuilder {
ci.NumberFormatEntry.PercentGroupSizes [i] = pat.Length;
}
} else {
- ci.NumberFormatEntry.PercentGroupSizes = new int [1] { 0 };
+ ci.NumberFormatEntry.PercentGroupSizes = new int [1] { 3 };
}
}
}
@@ -631,7 +631,7 @@ namespace Mono.Tools.LocaleBuilder {
ci.NumberFormatEntry.CurrencyGroupSizes [i] = pat.Length;
}
} else {
- ci.NumberFormatEntry.CurrencyGroupSizes = new int [1] { 0 };
+ ci.NumberFormatEntry.CurrencyGroupSizes = new int [1] { 3 };
}
if (pos_neg [1].StartsWith ("(\u00a4 ") && pos_neg [1].EndsWith (")")) {