Imported Upstream version 3.12.0

Former-commit-id: cf92446697332992ec36726e78eb8703e1f259d7
This commit is contained in:
Jo Shields
2015-01-13 10:44:36 +00:00
parent 8b9b85e7f5
commit 181b81b4a4
659 changed files with 12743 additions and 16300 deletions

View File

@ -1073,10 +1073,14 @@ namespace Mono.Tools.LocaleBuilder
// Apply global rule first <alias source="locale" path="../dayPeriodWidth[@type='wide']"/>
el = node.SelectSingleNode ("dayPeriods/dayPeriodContext/dayPeriodWidth[@type='wide']/dayPeriod[@type='am']");
// Manual edits for exact .net compatiblity
switch (ci.Name) {
case "en-AU":
df.AMDesignator = "AM";
break;
case "en-NZ":
df.AMDesignator = "a.m.";
break;
default:
if (el != null)
df.AMDesignator = el.InnerText;
@ -1092,6 +1096,9 @@ namespace Mono.Tools.LocaleBuilder
case "en-AU":
df.PMDesignator = "PM";
break;
case "en-NZ":
df.PMDesignator = "p.m.";
break;
default:
if (el != null)
df.PMDesignator = el.InnerText;