1 package es_US
2
3 import (
4 "math"
5 "strconv"
6 "time"
7
8 "github.com/go-playground/locales"
9 "github.com/go-playground/locales/currency"
10 )
11
12 type es_US struct {
13 locale string
14 pluralsCardinal []locales.PluralRule
15 pluralsOrdinal []locales.PluralRule
16 pluralsRange []locales.PluralRule
17 decimal string
18 group string
19 minus string
20 percent string
21 percentSuffix string
22 perMille string
23 timeSeparator string
24 inifinity string
25 currencies []string
26 currencyPositiveSuffix string
27 currencyNegativeSuffix string
28 monthsAbbreviated []string
29 monthsNarrow []string
30 monthsWide []string
31 daysAbbreviated []string
32 daysNarrow []string
33 daysShort []string
34 daysWide []string
35 periodsAbbreviated []string
36 periodsNarrow []string
37 periodsShort []string
38 periodsWide []string
39 erasAbbreviated []string
40 erasNarrow []string
41 erasWide []string
42 timezones map[string]string
43 }
44
45
46 func New() locales.Translator {
47 return &es_US{
48 locale: "es_US",
49 pluralsCardinal: []locales.PluralRule{2, 6},
50 pluralsOrdinal: []locales.PluralRule{6},
51 pluralsRange: []locales.PluralRule{6},
52 decimal: ".",
53 group: ",",
54 minus: "-",
55 percent: "%",
56 perMille: "‰",
57 timeSeparator: ":",
58 inifinity: "∞",
59 currencies: []string{"ADP", "AED", "AFA", "AFN", "ALK", "ALL", "AMD", "ANG", "AOA", "AOK", "AON", "AOR", "ARA", "ARL", "ARM", "ARP", "ARS", "ATS", "AUD", "AWG", "AZM", "AZN", "BAD", "BAM", "BAN", "BBD", "BDT", "BEC", "BEF", "BEL", "BGL", "BGM", "BGN", "BGO", "BHD", "BIF", "BMD", "BND", "BOB", "BOL", "BOP", "BOV", "BRB", "BRC", "BRE", "BRL", "BRN", "BRR", "BRZ", "BSD", "BTN", "BUK", "BWP", "BYB", "p.", "BYR", "BZD", "CAD", "CDF", "CHE", "CHF", "CHW", "CLE", "CLF", "CLP", "CNH", "CNX", "CNY", "COP", "COU", "CRC", "CSD", "CSK", "CUC", "CUP", "CVE", "CYP", "CZK", "DDM", "DEM", "DJF", "DKK", "DOP", "DZD", "ECS", "ECV", "EEK", "EGP", "ERN", "ESA", "ESB", "ESP", "ETB", "EUR", "FIM", "FJD", "£", "FRF", "GBP", "GEK", "GEL", "GHC", "GHS", "GIP", "GMD", "GNF", "GNS", "GQE", "GRD", "GTQ", "GWE", "GWP", "GYD", "HKD", "HNL", "HRD", "HRK", "HTG", "HUF", "IDR", "IEP", "ILP", "ILR", "ILS", "INR", "IQD", "IRR", "ISJ", "ISK", "ITL", "JMD", "JOD", "¥", "KES", "KGS", "KHR", "KMF", "KPW", "KRH", "KRO", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LTT", "LUC", "LUF", "LUL", "LVL", "LVR", "LYD", "MAD", "MAF", "MCF", "MDC", "MDL", "MGA", "MGF", "MKD", "MKN", "MLF", "MMK", "MNT", "MOP", "MRO", "MRU", "MTL", "MTP", "MUR", "MVP", "MVR", "MWK", "MXN", "MXP", "MXV", "MYR", "MZE", "MZM", "MZN", "NAD", "NGN", "NIC", "NIO", "NLG", "NOK", "NPR", "NZD", "OMR", "PAB", "PEI", "PEN", "PES", "PGK", "PHP", "PKR", "PLN", "PLZ", "PTE", "PYG", "QAR", "RHD", "ROL", "lei", "RSD", "RUB", "RUR", "RWF", "SAR", "SBD", "SCR", "SDD", "SDG", "SDP", "SEK", "SGD", "SHP", "SIT", "SKK", "SLL", "SOS", "SRD", "SRG", "£", "STD", "STN", "SUR", "SVC", "£", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "TWD", "TZS", "UAH", "UAK", "UGS", "UGX", "$", "USN", "USS", "UYI", "UYP", "UYU", "UYW", "UZS", "VEB", "Bs", "VES", "VND", "VNN", "VUV", "WST", "XAF", "XAG", "XAU", "XBA", "XBB", "XBC", "XBD", "XCD", "XDR", "XEU", "XFO", "XFU", "XOF", "XPD", "XPF", "XPT", "XRE", "XSU", "XTS", "XUA", "XXX", "YDD", "YER", "YUD", "YUM", "YUN", "YUR", "ZAL", "ZAR", "ZMK", "ZMW", "ZRN", "ZRZ", "ZWD", "ZWL", "ZWR"},
60 percentSuffix: " ",
61 currencyPositiveSuffix: " K ",
62 currencyNegativeSuffix: " K ",
63 monthsAbbreviated: []string{"", "ene.", "feb.", "mar.", "abr.", "may.", "jun.", "jul.", "ago.", "sep.", "oct.", "nov.", "dic."},
64 monthsNarrow: []string{"", "E", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"},
65 monthsWide: []string{"", "enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre"},
66 daysAbbreviated: []string{"dom.", "lun.", "mar.", "mié.", "jue.", "vie.", "sáb."},
67 daysNarrow: []string{"D", "L", "M", "M", "J", "V", "S"},
68 daysShort: []string{"DO", "LU", "MA", "MI", "JU", "VI", "SA"},
69 daysWide: []string{"domingo", "lunes", "martes", "miércoles", "jueves", "viernes", "sábado"},
70 periodsAbbreviated: []string{"a.\u00a0m.", "p.\u00a0m."},
71 periodsNarrow: []string{"", ""},
72 periodsWide: []string{"a.\u00a0m.", "p.\u00a0m."},
73 erasAbbreviated: []string{"a. C.", "d. C."},
74 erasNarrow: []string{"", ""},
75 erasWide: []string{"antes de Cristo", "después de Cristo"},
76 timezones: map[string]string{"ACDT": "hora de verano de Australia central", "ACST": "hora estándar de Australia central", "ACWDT": "hora de verano de Australia centroccidental", "ACWST": "hora estándar de Australia centroccidental", "ADT": "hora de verano del Atlántico", "AEDT": "hora de verano de Australia oriental", "AEST": "hora estándar de Australia oriental", "AKDT": "hora de verano de Alaska", "AKST": "hora estándar de Alaska", "ARST": "hora de verano de Argentina", "ART": "hora estándar de Argentina", "AST": "hora estándar del Atlántico", "AWDT": "hora de verano de Australia occidental", "AWST": "hora estándar de Australia occidental", "BOT": "hora de Bolivia", "BT": "hora de Bután", "CAT": "hora de África central", "CDT": "hora de verano central", "CHADT": "hora de verano de Chatham", "CHAST": "hora estándar de Chatham", "CLST": "hora de verano de Chile", "CLT": "hora estándar de Chile", "COST": "hora de verano de Colombia", "COT": "hora estándar de Colombia", "CST": "hora estándar central", "ChST": "hora de Chamorro", "EAT": "hora de África oriental", "ECT": "hora de Ecuador", "EDT": "hora de verano oriental", "EST": "hora estándar oriental", "GFT": "hora de la Guayana Francesa", "GMT": "hora del meridiano de Greenwich", "GST": "hora estándar del Golfo", "GYT": "hora de Guyana", "HADT": "hora de verano de Hawái-Aleutianas", "HAST": "hora estándar de Hawái-Aleutianas", "HAT": "hora de verano de Terranova", "HECU": "hora de verano de Cuba", "HEEG": "hora de verano de Groenlandia oriental", "HENOMX": "hora de verano del noroeste de México", "HEOG": "hora de verano de Groenlandia occidental", "HEPM": "hora de verano de San Pedro y Miquelón", "HEPMX": "hora de verano del Pacífico de México", "HKST": "hora de verano de Hong Kong", "HKT": "hora estándar de Hong Kong", "HNCU": "hora estándar de Cuba", "HNEG": "hora estándar de Groenlandia oriental", "HNNOMX": "hora estándar del noroeste de México", "HNOG": "hora estándar de Groenlandia occidental", "HNPM": "hora estándar de San Pedro y Miquelón", "HNPMX": "hora estándar del Pacífico de México", "HNT": "hora estándar de Terranova", "IST": "hora de India", "JDT": "hora de verano de Japón", "JST": "hora estándar de Japón", "LHDT": "hora de verano de Lord Howe", "LHST": "hora estándar de Lord Howe", "MDT": "hora de verano de las Montañas Rocosas", "MESZ": "hora de verano de Europa central", "MEZ": "hora estándar de Europa central", "MST": "hora estándar de las Montañas Rocosas", "MYT": "hora de Malasia", "NZDT": "hora de verano de Nueva Zelanda", "NZST": "hora estándar de Nueva Zelanda", "OESZ": "hora de verano de Europa oriental", "OEZ": "hora estándar de Europa oriental", "PDT": "hora de verano del Pacífico", "PST": "hora estándar del Pacífico", "SAST": "hora de Sudáfrica", "SGT": "hora de Singapur", "SRT": "hora de Surinam", "TMST": "hora de verano de Turkmenistán", "TMT": "hora estándar de Turkmenistán", "UYST": "hora de verano de Uruguay", "UYT": "hora estándar de Uruguay", "VET": "hora de Venezuela", "WARST": "hora de verano de Argentina occidental", "WART": "hora estándar de Argentina occidental", "WAST": "hora de verano de África occidental", "WAT": "hora estándar de África occidental", "WESZ": "hora de verano de Europa occidental", "WEZ": "hora estándar de Europa occidental", "WIB": "hora de Indonesia occidental", "WIT": "hora de Indonesia oriental", "WITA": "hora de Indonesia central", "∅∅∅": "hora de verano de Brasilia"},
77 }
78 }
79
80
81 func (es *es_US) Locale() string {
82 return es.locale
83 }
84
85
86 func (es *es_US) PluralsCardinal() []locales.PluralRule {
87 return es.pluralsCardinal
88 }
89
90
91 func (es *es_US) PluralsOrdinal() []locales.PluralRule {
92 return es.pluralsOrdinal
93 }
94
95
96 func (es *es_US) PluralsRange() []locales.PluralRule {
97 return es.pluralsRange
98 }
99
100
101 func (es *es_US) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
102
103 n := math.Abs(num)
104
105 if n == 1 {
106 return locales.PluralRuleOne
107 }
108
109 return locales.PluralRuleOther
110 }
111
112
113 func (es *es_US) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
114 return locales.PluralRuleOther
115 }
116
117
118 func (es *es_US) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
119 return locales.PluralRuleOther
120 }
121
122
123 func (es *es_US) MonthAbbreviated(month time.Month) string {
124 return es.monthsAbbreviated[month]
125 }
126
127
128 func (es *es_US) MonthsAbbreviated() []string {
129 return es.monthsAbbreviated[1:]
130 }
131
132
133 func (es *es_US) MonthNarrow(month time.Month) string {
134 return es.monthsNarrow[month]
135 }
136
137
138 func (es *es_US) MonthsNarrow() []string {
139 return es.monthsNarrow[1:]
140 }
141
142
143 func (es *es_US) MonthWide(month time.Month) string {
144 return es.monthsWide[month]
145 }
146
147
148 func (es *es_US) MonthsWide() []string {
149 return es.monthsWide[1:]
150 }
151
152
153 func (es *es_US) WeekdayAbbreviated(weekday time.Weekday) string {
154 return es.daysAbbreviated[weekday]
155 }
156
157
158 func (es *es_US) WeekdaysAbbreviated() []string {
159 return es.daysAbbreviated
160 }
161
162
163 func (es *es_US) WeekdayNarrow(weekday time.Weekday) string {
164 return es.daysNarrow[weekday]
165 }
166
167
168 func (es *es_US) WeekdaysNarrow() []string {
169 return es.daysNarrow
170 }
171
172
173 func (es *es_US) WeekdayShort(weekday time.Weekday) string {
174 return es.daysShort[weekday]
175 }
176
177
178 func (es *es_US) WeekdaysShort() []string {
179 return es.daysShort
180 }
181
182
183 func (es *es_US) WeekdayWide(weekday time.Weekday) string {
184 return es.daysWide[weekday]
185 }
186
187
188 func (es *es_US) WeekdaysWide() []string {
189 return es.daysWide
190 }
191
192
193 func (es *es_US) Decimal() string {
194 return es.decimal
195 }
196
197
198 func (es *es_US) Group() string {
199 return es.group
200 }
201
202
203 func (es *es_US) Minus() string {
204 return es.minus
205 }
206
207
208 func (es *es_US) FmtNumber(num float64, v uint64) string {
209
210 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
211 l := len(s) + 2 + 1*len(s[:len(s)-int(v)-1])/3
212 count := 0
213 inWhole := v == 0
214 b := make([]byte, 0, l)
215
216 for i := len(s) - 1; i >= 0; i-- {
217
218 if s[i] == '.' {
219 b = append(b, es.decimal[0])
220 inWhole = true
221 continue
222 }
223
224 if inWhole {
225 if count == 3 {
226 b = append(b, es.group[0])
227 count = 1
228 } else {
229 count++
230 }
231 }
232
233 b = append(b, s[i])
234 }
235
236 if num < 0 {
237 b = append(b, es.minus[0])
238 }
239
240
241 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
242 b[i], b[j] = b[j], b[i]
243 }
244
245 return string(b)
246 }
247
248
249
250 func (es *es_US) FmtPercent(num float64, v uint64) string {
251 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
252 l := len(s) + 5
253 b := make([]byte, 0, l)
254
255 for i := len(s) - 1; i >= 0; i-- {
256
257 if s[i] == '.' {
258 b = append(b, es.decimal[0])
259 continue
260 }
261
262 b = append(b, s[i])
263 }
264
265 if num < 0 {
266 b = append(b, es.minus[0])
267 }
268
269
270 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
271 b[i], b[j] = b[j], b[i]
272 }
273
274 b = append(b, es.percentSuffix...)
275
276 b = append(b, es.percent...)
277
278 return string(b)
279 }
280
281
282 func (es *es_US) FmtCurrency(num float64, v uint64, currency currency.Type) string {
283
284 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
285 symbol := es.currencies[currency]
286 l := len(s) + len(symbol) + 7
287
288 b := make([]byte, 0, l)
289
290 for i := len(s) - 1; i >= 0; i-- {
291
292 if s[i] == '.' {
293 b = append(b, es.decimal[0])
294 continue
295 }
296
297 b = append(b, s[i])
298 }
299
300 if num < 0 {
301 b = append(b, es.minus[0])
302 }
303
304
305 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
306 b[i], b[j] = b[j], b[i]
307 }
308
309 b = append(b, es.currencyPositiveSuffix...)
310
311 b = append(b, symbol...)
312
313 return string(b)
314 }
315
316
317
318 func (es *es_US) FmtAccounting(num float64, v uint64, currency currency.Type) string {
319
320 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
321 symbol := es.currencies[currency]
322 l := len(s) + len(symbol) + 7
323
324 b := make([]byte, 0, l)
325
326 for i := len(s) - 1; i >= 0; i-- {
327
328 if s[i] == '.' {
329 b = append(b, es.decimal[0])
330 continue
331 }
332
333 b = append(b, s[i])
334 }
335
336 if num < 0 {
337
338 b = append(b, es.minus[0])
339
340 }
341
342
343 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
344 b[i], b[j] = b[j], b[i]
345 }
346
347 if num < 0 {
348 b = append(b, es.currencyNegativeSuffix...)
349 b = append(b, symbol...)
350 } else {
351
352 b = append(b, es.currencyPositiveSuffix...)
353 b = append(b, symbol...)
354 }
355
356 return string(b)
357 }
358
359
360 func (es *es_US) FmtDateShort(t time.Time) string {
361
362 b := make([]byte, 0, 32)
363
364 b = strconv.AppendInt(b, int64(t.Day()), 10)
365 b = append(b, []byte{0x2f}...)
366 b = strconv.AppendInt(b, int64(t.Month()), 10)
367 b = append(b, []byte{0x2f}...)
368
369 if t.Year() > 0 {
370 b = strconv.AppendInt(b, int64(t.Year()), 10)
371 } else {
372 b = strconv.AppendInt(b, int64(-t.Year()), 10)
373 }
374
375 return string(b)
376 }
377
378
379 func (es *es_US) FmtDateMedium(t time.Time) string {
380
381 b := make([]byte, 0, 32)
382
383 b = strconv.AppendInt(b, int64(t.Day()), 10)
384 b = append(b, []byte{0x20}...)
385 b = append(b, es.monthsAbbreviated[t.Month()]...)
386 b = append(b, []byte{0x20}...)
387
388 if t.Year() > 0 {
389 b = strconv.AppendInt(b, int64(t.Year()), 10)
390 } else {
391 b = strconv.AppendInt(b, int64(-t.Year()), 10)
392 }
393
394 return string(b)
395 }
396
397
398 func (es *es_US) FmtDateLong(t time.Time) string {
399
400 b := make([]byte, 0, 32)
401
402 b = strconv.AppendInt(b, int64(t.Day()), 10)
403 b = append(b, []byte{0x20, 0x64, 0x65}...)
404 b = append(b, []byte{0x20}...)
405 b = append(b, es.monthsWide[t.Month()]...)
406 b = append(b, []byte{0x20, 0x64, 0x65}...)
407 b = append(b, []byte{0x20}...)
408
409 if t.Year() > 0 {
410 b = strconv.AppendInt(b, int64(t.Year()), 10)
411 } else {
412 b = strconv.AppendInt(b, int64(-t.Year()), 10)
413 }
414
415 return string(b)
416 }
417
418
419 func (es *es_US) FmtDateFull(t time.Time) string {
420
421 b := make([]byte, 0, 32)
422
423 b = append(b, es.daysWide[t.Weekday()]...)
424 b = append(b, []byte{0x2c, 0x20}...)
425 b = strconv.AppendInt(b, int64(t.Day()), 10)
426 b = append(b, []byte{0x20, 0x64, 0x65}...)
427 b = append(b, []byte{0x20}...)
428 b = append(b, es.monthsWide[t.Month()]...)
429 b = append(b, []byte{0x20, 0x64, 0x65}...)
430 b = append(b, []byte{0x20}...)
431
432 if t.Year() > 0 {
433 b = strconv.AppendInt(b, int64(t.Year()), 10)
434 } else {
435 b = strconv.AppendInt(b, int64(-t.Year()), 10)
436 }
437
438 return string(b)
439 }
440
441
442 func (es *es_US) FmtTimeShort(t time.Time) string {
443
444 b := make([]byte, 0, 32)
445
446 h := t.Hour()
447
448 if h > 12 {
449 h -= 12
450 }
451
452 b = strconv.AppendInt(b, int64(h), 10)
453 b = append(b, es.timeSeparator...)
454
455 if t.Minute() < 10 {
456 b = append(b, '0')
457 }
458
459 b = strconv.AppendInt(b, int64(t.Minute()), 10)
460 b = append(b, []byte{0x20}...)
461
462 if t.Hour() < 12 {
463 b = append(b, es.periodsAbbreviated[0]...)
464 } else {
465 b = append(b, es.periodsAbbreviated[1]...)
466 }
467
468 return string(b)
469 }
470
471
472 func (es *es_US) FmtTimeMedium(t time.Time) string {
473
474 b := make([]byte, 0, 32)
475
476 h := t.Hour()
477
478 if h > 12 {
479 h -= 12
480 }
481
482 b = strconv.AppendInt(b, int64(h), 10)
483 b = append(b, es.timeSeparator...)
484
485 if t.Minute() < 10 {
486 b = append(b, '0')
487 }
488
489 b = strconv.AppendInt(b, int64(t.Minute()), 10)
490 b = append(b, es.timeSeparator...)
491
492 if t.Second() < 10 {
493 b = append(b, '0')
494 }
495
496 b = strconv.AppendInt(b, int64(t.Second()), 10)
497 b = append(b, []byte{0x20}...)
498
499 if t.Hour() < 12 {
500 b = append(b, es.periodsAbbreviated[0]...)
501 } else {
502 b = append(b, es.periodsAbbreviated[1]...)
503 }
504
505 return string(b)
506 }
507
508
509 func (es *es_US) FmtTimeLong(t time.Time) string {
510
511 b := make([]byte, 0, 32)
512
513 h := t.Hour()
514
515 if h > 12 {
516 h -= 12
517 }
518
519 b = strconv.AppendInt(b, int64(h), 10)
520 b = append(b, es.timeSeparator...)
521
522 if t.Minute() < 10 {
523 b = append(b, '0')
524 }
525
526 b = strconv.AppendInt(b, int64(t.Minute()), 10)
527 b = append(b, es.timeSeparator...)
528
529 if t.Second() < 10 {
530 b = append(b, '0')
531 }
532
533 b = strconv.AppendInt(b, int64(t.Second()), 10)
534 b = append(b, []byte{0x20}...)
535
536 if t.Hour() < 12 {
537 b = append(b, es.periodsAbbreviated[0]...)
538 } else {
539 b = append(b, es.periodsAbbreviated[1]...)
540 }
541
542 b = append(b, []byte{0x20}...)
543
544 tz, _ := t.Zone()
545 b = append(b, tz...)
546
547 return string(b)
548 }
549
550
551 func (es *es_US) FmtTimeFull(t time.Time) string {
552
553 b := make([]byte, 0, 32)
554
555 h := t.Hour()
556
557 if h > 12 {
558 h -= 12
559 }
560
561 b = strconv.AppendInt(b, int64(h), 10)
562 b = append(b, es.timeSeparator...)
563
564 if t.Minute() < 10 {
565 b = append(b, '0')
566 }
567
568 b = strconv.AppendInt(b, int64(t.Minute()), 10)
569 b = append(b, es.timeSeparator...)
570
571 if t.Second() < 10 {
572 b = append(b, '0')
573 }
574
575 b = strconv.AppendInt(b, int64(t.Second()), 10)
576 b = append(b, []byte{0x20}...)
577
578 if t.Hour() < 12 {
579 b = append(b, es.periodsAbbreviated[0]...)
580 } else {
581 b = append(b, es.periodsAbbreviated[1]...)
582 }
583
584 b = append(b, []byte{0x20}...)
585
586 tz, _ := t.Zone()
587
588 if btz, ok := es.timezones[tz]; ok {
589 b = append(b, btz...)
590 } else {
591 b = append(b, tz...)
592 }
593
594 return string(b)
595 }
596
View as plain text