1:
37:
38:
39: package ;
40:
41: import ;
42:
43:
46: public class LocaleInformation_en extends ListResourceBundle
47: {
48:
49:
52:
53:
58:
59:
60:
61: private static final String collation_rules =
62: "<0<1<2<3<4<5<6<7<8<9<A,a<b,B<c,C<d,D<e,E<f,F<g,G<h,H<i,I<j,J<k,K" +
63: "<l,L<m,M<n,N<o,O<p,P<q,Q<r,R<s,S<t,T<u,U<v,V<w,W<x,X<y,Y<z,Z";
64:
65:
68: private static final String[] months =
69: {
70: "January", "February", "March", "April", "May", "June",
71: "July", "August", "September", "October", "November", "December", null
72: };
73:
74:
77: private static final String[] shortMonths =
78: {
79: "Jan", "Feb", "Mar", "Apr", "May", "Jun",
80: "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", null
81: };
82:
83:
86: private static final String[] weekdays =
87: {
88: null, "Sunday", "Monday", "Tuesday", "Wednesday",
89: "Thursday", "Friday", "Saturday"
90: };
91:
92:
95: private static final String[] shortWeekdays =
96: {
97: null, "Sun", "Mon", "Tue", "Wed",
98: "Thu", "Fri", "Sat"
99: };
100:
101:
104: private static final String[] ampms = { "AM", "PM" };
105:
106:
109: private static final String[] eras = { "BC", "AD" };
110:
111: private static final String[][] zoneStrings =
112: {
113: { "GMT", "Greenwich Mean Time", "GMT",
114: "Greenwich Mean Time", "GMT", "GMT" },
115: { "PST", "Pacific Standard Time", "PST",
116: "Pacific Daylight Time", "PDT", "San Francisco" },
117: { "MST", "Mountain Standard Time", "MST",
118: "Mountain Daylight Time", "MDT", "Denver" },
119: { "PNT", "Mountain Standard Time", "MST",
120: "Mountain Standard Time", "MST", "Phoenix" },
121: { "CST", "Central Standard Time", "CST",
122: "Central Daylight Time", "CDT", "Chicago" },
123: { "EST", "Eastern Standard Time", "EST",
124: "Eastern Daylight Time", "EDT", "Boston" },
125: { "IET", "Eastern Standard Time", "EST",
126: "Eastern Standard Time", "EST", "Indianapolis" },
127: { "PRT", "Atlantic Standard Time", "AST",
128: "Atlantic Daylight Time", "ADT", "Halifax" },
129: { "CNT", "Newfoundland Standard Time", "NST",
130: "Newfoundland Daylight Time", "NDT", "St. Johns" },
131: { "ECT", "Central European Standard Time", "CET",
132: "Central European Daylight Time", "CEST", "Paris" },
133: { "CTT", "China Standard Time", "CST",
134: "China Standard Time", "CST", "Shanghai" },
135: { "JST", "Japan Standard Time", "JST",
136: "Japan Standard Time", "JST", "Tokyo" },
137: { "HST", "Hawaii Standard Time", "HST",
138: "Hawaii Standard Time", "HST", "Honolulu" },
139: { "AST", "Alaska Standard Time", "AKST",
140: "Alaska Daylight Time", "AKDT", "Anchorage" }
141: };
142:
143:
144:
145:
149:
150: private static final Object[][] contents =
151: {
152:
153: { "collation_rules", collation_rules },
154:
155:
156: { "months", months },
157: { "shortMonths", shortMonths },
158: { "weekdays", weekdays },
159: { "shortWeekdays", shortWeekdays },
160: { "ampms", ampms },
161: { "eras", eras },
162: { "localPatternChars", "GyMdkHmsSEDFwWahKzYeugAZ" },
163: { "zoneStrings", zoneStrings },
164:
165: { "shortDateFormat", "M/d/yy" },
166: { "mediumDateFormat", "d-MMM-yy" },
167: { "longDateFormat", "MMMM d, yyyy" },
168: { "fullDateFormat", "EEEE MMMM d, yyyy G" },
169: { "defaultDateFormat", "d-MMMM-yy" },
170: { "shortTimeFormat", "h:mm a" },
171: { "mediumTimeFormat", "h:mm:ss a" },
172: { "longTimeFormat", "h:mm:ss a z" },
173: { "fullTimeFormat", "h:mm:ss;S 'o''clock' a z" },
174: { "defaultTimeFormat", "h:mm:ss a" },
175:
176:
177: { "decimalSeparator", "." },
178: { "digit", "#" },
179: { "exponential", "E" },
180: { "groupingSeparator", "," },
181: { "infinity", "\u221e" },
182: { "NaN", "\ufffd" },
183: { "minusSign", "-" },
184: { "monetarySeparator", "." },
185: { "patternSeparator", ";" },
186: { "percent", "%" },
187: { "perMill", "\u2030" },
188: { "zeroDigit", "0" },
189:
190:
191: { "numberFormat", "#,##0.###" },
192: { "percentFormat", "#,##0%" },
193: };
194:
195:
196:
197:
203: public Object[][] getContents ()
204: {
205: return contents;
206: }
207: }