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>2007-08-21 15:32:27 +0400
committerAtsushi Eno <atsushieno@gmail.com>2007-08-21 15:32:27 +0400
commit493c64cd0782c0c662d7b5cd66fec55854bade0c (patch)
tree4f7b2763669f7903df5b08309622041a7eda46f2 /tools
parent37ee9e3fcd814cc38f5232859d865d4cd5a4a577 (diff)
2007-08-21 Atsushi Enomoto <atsushi@ximian.com>
* Driver.cs : for Euskara culture (eu_ES) do not trim dd which is laid after 'ren' in the long format. * culture-info-table.h : regenerated. svn path=/trunk/mono/; revision=84537
Diffstat (limited to 'tools')
-rw-r--r--tools/locale-builder/ChangeLog5
-rw-r--r--tools/locale-builder/Driver.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/tools/locale-builder/ChangeLog b/tools/locale-builder/ChangeLog
index ac2f7cf1907..b166d1be3ef 100644
--- a/tools/locale-builder/ChangeLog
+++ b/tools/locale-builder/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-21 Atsushi Enomoto <atsushi@ximian.com>
+
+ * Driver.cs : for Euskara culture (eu_ES) do not trim dd which is
+ laid after 'ren' in the long format.
+
2007-05-15 Atsushi Enomoto <atsushi@ximian.com>
* CultureInfoEntry.cs : output Territory, which is used for RegionInfo.
diff --git a/tools/locale-builder/Driver.cs b/tools/locale-builder/Driver.cs
index 8d15b14341b..bcdf6c861a5 100644
--- a/tools/locale-builder/Driver.cs
+++ b/tools/locale-builder/Driver.cs
@@ -1148,7 +1148,7 @@ namespace Mono.Tools.LocaleBuilder {
p = p.Substring (0, idx);
idx = p.LastIndexOf ("'ren'"); // euskara
if (idx > 0)
- p = p.Substring (0, idx);
+ p = p.Replace ("'ren'", "").Trim ();
idx = p.LastIndexOf ("'a'"); // estonian
if (idx > 0)
p = p.Substring (0, idx);