Fix second part of issue 5243, full name for the AD era. I didn't get any conclusive answer about what it should be in Portugal, so I am leaving the old value there, at least for now.
Issue: 5243
Patch by: jat
Review by: pdr, shanjian
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@9418 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/i18n/client/constants/DateTimeConstantsImpl_pt.properties b/user/src/com/google/gwt/i18n/client/constants/DateTimeConstantsImpl_pt.properties
index 3eb737f..58f4766 100644
--- a/user/src/com/google/gwt/i18n/client/constants/DateTimeConstantsImpl_pt.properties
+++ b/user/src/com/google/gwt/i18n/client/constants/DateTimeConstantsImpl_pt.properties
@@ -8,7 +8,7 @@
# CLDR version 1.7.1 is used in this generation.
eras = a.C., d.C.
-eraNames = Antes de Cristo, Ano do Senhor
+eraNames = Antes de Cristo, Depois de Cristo
narrowMonths = J, F, M, A, M, J, J, A, S, O, N, D
months = janeiro, fevereiro, março, abril, maio, junho, julho, agosto, setembro, outubro, novembro, dezembro
shortMonths = jan, fev, mar, abr, mai, jun, jul, ago, set, out, nov, dez
diff --git a/user/src/com/google/gwt/i18n/client/impl/cldr/DateTimeFormatInfoImpl_pt.java b/user/src/com/google/gwt/i18n/client/impl/cldr/DateTimeFormatInfoImpl_pt.java
index 48874ee..c3282f8 100644
--- a/user/src/com/google/gwt/i18n/client/impl/cldr/DateTimeFormatInfoImpl_pt.java
+++ b/user/src/com/google/gwt/i18n/client/impl/cldr/DateTimeFormatInfoImpl_pt.java
@@ -46,7 +46,7 @@
public String[] erasFull() {
return new String[] {
"Antes de Cristo",
- "Ano do Senhor"
+ "Depois de Cristo"
};
}
diff --git a/user/src/com/google/gwt/i18n/client/impl/cldr/DateTimeFormatInfoImpl_pt_PT.java b/user/src/com/google/gwt/i18n/client/impl/cldr/DateTimeFormatInfoImpl_pt_PT.java
index 7c30159..f4d4c62 100644
--- a/user/src/com/google/gwt/i18n/client/impl/cldr/DateTimeFormatInfoImpl_pt_PT.java
+++ b/user/src/com/google/gwt/i18n/client/impl/cldr/DateTimeFormatInfoImpl_pt_PT.java
@@ -36,6 +36,14 @@
}
@Override
+ public String[] erasFull() {
+ return new String[] {
+ "Antes de Cristo",
+ "Ano do Senhor"
+ };
+ }
+
+ @Override
public int firstDayOfTheWeek() {
return 1;
}