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-02-17 01:22:33 +0300
committerAtsushi Eno <atsushieno@gmail.com>2005-02-17 01:22:33 +0300
commit9ddfd24e95f2f7ced6c406238e91ab1570223892 (patch)
tree85b4d3fcd8b1d362698d0504fb5e2cc44a2945a9 /tools
parent9e4431fee86a768353e4e8b7abbe4e2bde80d0d4 (diff)
2005-02-17 Atsushi Enomoto <atsushi@ximian.com>
* en.xml : fixed currency format. * culture-info-table.h : fixed currency format for en-GB (and so on). * Driver.cs : set \n for writer's NewLine explicitly (otherwise it results in mixed line ending in culture-info-table.h). svn path=/trunk/mono/; revision=40779
Diffstat (limited to 'tools')
-rw-r--r--tools/locale-builder/ChangeLog5
-rw-r--r--tools/locale-builder/Driver.cs2
-rwxr-xr-xtools/locale-builder/supp/ChangeLog4
-rw-r--r--tools/locale-builder/supp/en.xml2
4 files changed, 11 insertions, 2 deletions
diff --git a/tools/locale-builder/ChangeLog b/tools/locale-builder/ChangeLog
index b628785b790..293a069213d 100644
--- a/tools/locale-builder/ChangeLog
+++ b/tools/locale-builder/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-17 Atsushi Enomoto <atsushi@ximian.com>
+
+ * Driver.cs : set \n for writer's NewLine explicitly (otherwise it
+ results in mixed line ending in culture-info-table.h).
+
2004-12-13 Ben Maurer <bmaurer@ximian.com>
* CultureInfoEntry.cs (AppendTableRow): Stringify the
diff --git a/tools/locale-builder/Driver.cs b/tools/locale-builder/Driver.cs
index 97ecab9fc1c..a05d5c88ed3 100644
--- a/tools/locale-builder/Driver.cs
+++ b/tools/locale-builder/Driver.cs
@@ -95,7 +95,7 @@ namespace Mono.Tools.LocaleBuilder {
* writing to streams eventually.
*/
using (StreamWriter writer = new StreamWriter (HeaderFileName, false, new UTF8Encoding (false, true))) {
-
+ writer.NewLine = "\n";
writer.WriteLine ();
writer.WriteLine ("/* This is a generated file. Do not edit. See tools/locale-builder. */");
writer.WriteLine ("#ifndef MONO_METADATA_CULTURE_INFO_TABLES");
diff --git a/tools/locale-builder/supp/ChangeLog b/tools/locale-builder/supp/ChangeLog
index aac15bd01ce..00da8126f84 100755
--- a/tools/locale-builder/supp/ChangeLog
+++ b/tools/locale-builder/supp/ChangeLog
@@ -1,3 +1,7 @@
+2005-02-17 Atsushi Enomoto <atsushi@ximian.com>
+
+ * en.xml : fixed currency format.
+
2004-10-06 Jackson Harper <jackson@ximian.com>
* pt.xml: We need a space after R$. Is there a better way to do
diff --git a/tools/locale-builder/supp/en.xml b/tools/locale-builder/supp/en.xml
index 26f0e4ac81a..b9f56edc084 100644
--- a/tools/locale-builder/supp/en.xml
+++ b/tools/locale-builder/supp/en.xml
@@ -31,7 +31,7 @@
<currencyFormats>
<currencyFormatLength >
<currencyFormat >
- <pattern>¤#,###0.00;-¤#,###0.00</pattern>
+ <pattern>¤#,##0.00;-¤#,##0.00</pattern>
</currencyFormat>
</currencyFormatLength >
</currencyFormats>