1 package en_TT
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 en_TT 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 perMille string
22 timeSeparator string
23 inifinity string
24 currencies []string
25 currencyNegativePrefix string
26 currencyNegativeSuffix string
27 monthsAbbreviated []string
28 monthsNarrow []string
29 monthsWide []string
30 daysAbbreviated []string
31 daysNarrow []string
32 daysShort []string
33 daysWide []string
34 periodsAbbreviated []string
35 periodsNarrow []string
36 periodsShort []string
37 periodsWide []string
38 erasAbbreviated []string
39 erasNarrow []string
40 erasWide []string
41 timezones map[string]string
42 }
43
44
45 func New() locales.Translator {
46 return &en_TT{
47 locale: "en_TT",
48 pluralsCardinal: []locales.PluralRule{2, 6},
49 pluralsOrdinal: []locales.PluralRule{2, 3, 4, 6},
50 pluralsRange: []locales.PluralRule{6},
51 decimal: ".",
52 group: ",",
53 minus: "-",
54 percent: "%",
55 perMille: "‰",
56 timeSeparator: ":",
57 inifinity: "∞",
58 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", "BYN", "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", "FKP", "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", "JPY", "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", "RON", "RSD", "RUB", "RUR", "RWF", "SAR", "SBD", "SCR", "SDD", "SDG", "SDP", "SEK", "SGD", "SHP", "SIT", "SKK", "SLL", "SOS", "SRD", "SRG", "SSP", "STD", "STN", "SUR", "SVC", "SYP", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "$", "TWD", "TZS", "UAH", "UAK", "UGS", "UGX", "USD", "USN", "USS", "UYI", "UYP", "UYU", "UYW", "UZS", "VEB", "VEF", "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"},
59 currencyNegativePrefix: "(",
60 currencyNegativeSuffix: ")",
61 monthsAbbreviated: []string{"", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"},
62 monthsNarrow: []string{"", "J", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"},
63 monthsWide: []string{"", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"},
64 daysAbbreviated: []string{"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"},
65 daysNarrow: []string{"S", "M", "T", "W", "T", "F", "S"},
66 daysShort: []string{"Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"},
67 daysWide: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
68 periodsAbbreviated: []string{"am", "pm"},
69 periodsNarrow: []string{"", "pm"},
70 periodsWide: []string{"am", "pm"},
71 erasAbbreviated: []string{"BC", "AD"},
72 erasNarrow: []string{"B", "A"},
73 erasWide: []string{"Before Christ", "Anno Domini"},
74 timezones: map[string]string{"ACDT": "Australian Central Daylight Time", "ACST": "Australian Central Standard Time", "ACWDT": "Australian Central Western Daylight Time", "ACWST": "Australian Central Western Standard Time", "ADT": "Atlantic Daylight Time", "AEDT": "Australian Eastern Daylight Time", "AEST": "Australian Eastern Standard Time", "AKDT": "Alaska Daylight Time", "AKST": "Alaska Standard Time", "ARST": "Argentina Summer Time", "ART": "Argentina Standard Time", "AST": "Atlantic Standard Time", "AWDT": "Australian Western Daylight Time", "AWST": "Australian Western Standard Time", "BOT": "Bolivia Time", "BT": "Bhutan Time", "CAT": "Central Africa Time", "CDT": "Central Daylight Time", "CHADT": "Chatham Daylight Time", "CHAST": "Chatham Standard Time", "CLST": "Chile Summer Time", "CLT": "Chile Standard Time", "COST": "Colombia Summer Time", "COT": "Colombia Standard Time", "CST": "Central Standard Time", "ChST": "Chamorro Standard Time", "EAT": "East Africa Time", "ECT": "Ecuador Time", "EDT": "Eastern Daylight Time", "EST": "Eastern Standard Time", "GFT": "French Guiana Time", "GMT": "Greenwich Mean Time", "GST": "Gulf Standard Time", "GYT": "Guyana Time", "HADT": "Hawaii-Aleutian Daylight Time", "HAST": "Hawaii-Aleutian Standard Time", "HAT": "Newfoundland Daylight Time", "HECU": "Cuba Daylight Time", "HEEG": "East Greenland Summer Time", "HENOMX": "Northwest Mexico Daylight Time", "HEOG": "West Greenland Summer Time", "HEPM": "St Pierre & Miquelon Daylight Time", "HEPMX": "Mexican Pacific Daylight Time", "HKST": "Hong Kong Summer Time", "HKT": "Hong Kong Standard Time", "HNCU": "Cuba Standard Time", "HNEG": "East Greenland Standard Time", "HNNOMX": "Northwest Mexico Standard Time", "HNOG": "West Greenland Standard Time", "HNPM": "St Pierre & Miquelon Standard Time", "HNPMX": "Mexican Pacific Standard Time", "HNT": "Newfoundland Standard Time", "IST": "India Standard Time", "JDT": "Japan Daylight Time", "JST": "Japan Standard Time", "LHDT": "Lord Howe Daylight Time", "LHST": "Lord Howe Standard Time", "MDT": "Mountain Daylight Time", "MESZ": "Central European Summer Time", "MEZ": "Central European Standard Time", "MST": "Mountain Standard Time", "MYT": "Malaysia Time", "NZDT": "New Zealand Daylight Time", "NZST": "New Zealand Standard Time", "OESZ": "Eastern European Summer Time", "OEZ": "Eastern European Standard Time", "PDT": "Pacific Daylight Time", "PST": "Pacific Standard Time", "SAST": "South Africa Standard Time", "SGT": "Singapore Standard Time", "SRT": "Suriname Time", "TMST": "Turkmenistan Summer Time", "TMT": "Turkmenistan Standard Time", "UYST": "Uruguay Summer Time", "UYT": "Uruguay Standard Time", "VET": "Venezuela Time", "WARST": "Western Argentina Summer Time", "WART": "Western Argentina Standard Time", "WAST": "West Africa Summer Time", "WAT": "West Africa Standard Time", "WESZ": "Western European Summer Time", "WEZ": "Western European Standard Time", "WIB": "Western Indonesia Time", "WIT": "Eastern Indonesia Time", "WITA": "Central Indonesia Time", "∅∅∅": "Azores Summer Time"},
75 }
76 }
77
78
79 func (en *en_TT) Locale() string {
80 return en.locale
81 }
82
83
84 func (en *en_TT) PluralsCardinal() []locales.PluralRule {
85 return en.pluralsCardinal
86 }
87
88
89 func (en *en_TT) PluralsOrdinal() []locales.PluralRule {
90 return en.pluralsOrdinal
91 }
92
93
94 func (en *en_TT) PluralsRange() []locales.PluralRule {
95 return en.pluralsRange
96 }
97
98
99 func (en *en_TT) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
100
101 n := math.Abs(num)
102 i := int64(n)
103
104 if i == 1 && v == 0 {
105 return locales.PluralRuleOne
106 }
107
108 return locales.PluralRuleOther
109 }
110
111
112 func (en *en_TT) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
113
114 n := math.Abs(num)
115 nMod10 := math.Mod(n, 10)
116 nMod100 := math.Mod(n, 100)
117
118 if nMod10 == 1 && nMod100 != 11 {
119 return locales.PluralRuleOne
120 } else if nMod10 == 2 && nMod100 != 12 {
121 return locales.PluralRuleTwo
122 } else if nMod10 == 3 && nMod100 != 13 {
123 return locales.PluralRuleFew
124 }
125
126 return locales.PluralRuleOther
127 }
128
129
130 func (en *en_TT) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
131 return locales.PluralRuleOther
132 }
133
134
135 func (en *en_TT) MonthAbbreviated(month time.Month) string {
136 return en.monthsAbbreviated[month]
137 }
138
139
140 func (en *en_TT) MonthsAbbreviated() []string {
141 return en.monthsAbbreviated[1:]
142 }
143
144
145 func (en *en_TT) MonthNarrow(month time.Month) string {
146 return en.monthsNarrow[month]
147 }
148
149
150 func (en *en_TT) MonthsNarrow() []string {
151 return en.monthsNarrow[1:]
152 }
153
154
155 func (en *en_TT) MonthWide(month time.Month) string {
156 return en.monthsWide[month]
157 }
158
159
160 func (en *en_TT) MonthsWide() []string {
161 return en.monthsWide[1:]
162 }
163
164
165 func (en *en_TT) WeekdayAbbreviated(weekday time.Weekday) string {
166 return en.daysAbbreviated[weekday]
167 }
168
169
170 func (en *en_TT) WeekdaysAbbreviated() []string {
171 return en.daysAbbreviated
172 }
173
174
175 func (en *en_TT) WeekdayNarrow(weekday time.Weekday) string {
176 return en.daysNarrow[weekday]
177 }
178
179
180 func (en *en_TT) WeekdaysNarrow() []string {
181 return en.daysNarrow
182 }
183
184
185 func (en *en_TT) WeekdayShort(weekday time.Weekday) string {
186 return en.daysShort[weekday]
187 }
188
189
190 func (en *en_TT) WeekdaysShort() []string {
191 return en.daysShort
192 }
193
194
195 func (en *en_TT) WeekdayWide(weekday time.Weekday) string {
196 return en.daysWide[weekday]
197 }
198
199
200 func (en *en_TT) WeekdaysWide() []string {
201 return en.daysWide
202 }
203
204
205 func (en *en_TT) Decimal() string {
206 return en.decimal
207 }
208
209
210 func (en *en_TT) Group() string {
211 return en.group
212 }
213
214
215 func (en *en_TT) Minus() string {
216 return en.minus
217 }
218
219
220 func (en *en_TT) FmtNumber(num float64, v uint64) string {
221
222 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
223 l := len(s) + 2 + 1*len(s[:len(s)-int(v)-1])/3
224 count := 0
225 inWhole := v == 0
226 b := make([]byte, 0, l)
227
228 for i := len(s) - 1; i >= 0; i-- {
229
230 if s[i] == '.' {
231 b = append(b, en.decimal[0])
232 inWhole = true
233 continue
234 }
235
236 if inWhole {
237 if count == 3 {
238 b = append(b, en.group[0])
239 count = 1
240 } else {
241 count++
242 }
243 }
244
245 b = append(b, s[i])
246 }
247
248 if num < 0 {
249 b = append(b, en.minus[0])
250 }
251
252
253 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
254 b[i], b[j] = b[j], b[i]
255 }
256
257 return string(b)
258 }
259
260
261
262 func (en *en_TT) FmtPercent(num float64, v uint64) string {
263 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
264 l := len(s) + 3
265 b := make([]byte, 0, l)
266
267 for i := len(s) - 1; i >= 0; i-- {
268
269 if s[i] == '.' {
270 b = append(b, en.decimal[0])
271 continue
272 }
273
274 b = append(b, s[i])
275 }
276
277 if num < 0 {
278 b = append(b, en.minus[0])
279 }
280
281
282 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
283 b[i], b[j] = b[j], b[i]
284 }
285
286 b = append(b, en.percent...)
287
288 return string(b)
289 }
290
291
292 func (en *en_TT) FmtCurrency(num float64, v uint64, currency currency.Type) string {
293
294 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
295 symbol := en.currencies[currency]
296 l := len(s) + len(symbol) + 2 + 1*len(s[:len(s)-int(v)-1])/3
297 count := 0
298 inWhole := v == 0
299 b := make([]byte, 0, l)
300
301 for i := len(s) - 1; i >= 0; i-- {
302
303 if s[i] == '.' {
304 b = append(b, en.decimal[0])
305 inWhole = true
306 continue
307 }
308
309 if inWhole {
310 if count == 3 {
311 b = append(b, en.group[0])
312 count = 1
313 } else {
314 count++
315 }
316 }
317
318 b = append(b, s[i])
319 }
320
321 for j := len(symbol) - 1; j >= 0; j-- {
322 b = append(b, symbol[j])
323 }
324
325 if num < 0 {
326 b = append(b, en.minus[0])
327 }
328
329
330 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
331 b[i], b[j] = b[j], b[i]
332 }
333
334 if int(v) < 2 {
335
336 if v == 0 {
337 b = append(b, en.decimal...)
338 }
339
340 for i := 0; i < 2-int(v); i++ {
341 b = append(b, '0')
342 }
343 }
344
345 return string(b)
346 }
347
348
349
350 func (en *en_TT) FmtAccounting(num float64, v uint64, currency currency.Type) string {
351
352 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
353 symbol := en.currencies[currency]
354 l := len(s) + len(symbol) + 4 + 1*len(s[:len(s)-int(v)-1])/3
355 count := 0
356 inWhole := v == 0
357 b := make([]byte, 0, l)
358
359 for i := len(s) - 1; i >= 0; i-- {
360
361 if s[i] == '.' {
362 b = append(b, en.decimal[0])
363 inWhole = true
364 continue
365 }
366
367 if inWhole {
368 if count == 3 {
369 b = append(b, en.group[0])
370 count = 1
371 } else {
372 count++
373 }
374 }
375
376 b = append(b, s[i])
377 }
378
379 if num < 0 {
380
381 for j := len(symbol) - 1; j >= 0; j-- {
382 b = append(b, symbol[j])
383 }
384
385 b = append(b, en.currencyNegativePrefix[0])
386
387 } else {
388
389 for j := len(symbol) - 1; j >= 0; j-- {
390 b = append(b, symbol[j])
391 }
392
393 }
394
395
396 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
397 b[i], b[j] = b[j], b[i]
398 }
399
400 if int(v) < 2 {
401
402 if v == 0 {
403 b = append(b, en.decimal...)
404 }
405
406 for i := 0; i < 2-int(v); i++ {
407 b = append(b, '0')
408 }
409 }
410
411 if num < 0 {
412 b = append(b, en.currencyNegativeSuffix...)
413 }
414
415 return string(b)
416 }
417
418
419 func (en *en_TT) FmtDateShort(t time.Time) string {
420
421 b := make([]byte, 0, 32)
422
423 if t.Day() < 10 {
424 b = append(b, '0')
425 }
426
427 b = strconv.AppendInt(b, int64(t.Day()), 10)
428 b = append(b, []byte{0x2f}...)
429
430 if t.Month() < 10 {
431 b = append(b, '0')
432 }
433
434 b = strconv.AppendInt(b, int64(t.Month()), 10)
435
436 b = append(b, []byte{0x2f}...)
437
438 if t.Year() > 0 {
439 b = strconv.AppendInt(b, int64(t.Year()), 10)
440 } else {
441 b = strconv.AppendInt(b, int64(-t.Year()), 10)
442 }
443
444 return string(b)
445 }
446
447
448 func (en *en_TT) FmtDateMedium(t time.Time) string {
449
450 b := make([]byte, 0, 32)
451
452 b = strconv.AppendInt(b, int64(t.Day()), 10)
453 b = append(b, []byte{0x20}...)
454 b = append(b, en.monthsAbbreviated[t.Month()]...)
455 b = append(b, []byte{0x20}...)
456
457 if t.Year() > 0 {
458 b = strconv.AppendInt(b, int64(t.Year()), 10)
459 } else {
460 b = strconv.AppendInt(b, int64(-t.Year()), 10)
461 }
462
463 return string(b)
464 }
465
466
467 func (en *en_TT) FmtDateLong(t time.Time) string {
468
469 b := make([]byte, 0, 32)
470
471 b = strconv.AppendInt(b, int64(t.Day()), 10)
472 b = append(b, []byte{0x20}...)
473 b = append(b, en.monthsWide[t.Month()]...)
474 b = append(b, []byte{0x20}...)
475
476 if t.Year() > 0 {
477 b = strconv.AppendInt(b, int64(t.Year()), 10)
478 } else {
479 b = strconv.AppendInt(b, int64(-t.Year()), 10)
480 }
481
482 return string(b)
483 }
484
485
486 func (en *en_TT) FmtDateFull(t time.Time) string {
487
488 b := make([]byte, 0, 32)
489
490 b = append(b, en.daysWide[t.Weekday()]...)
491 b = append(b, []byte{0x2c, 0x20}...)
492 b = strconv.AppendInt(b, int64(t.Day()), 10)
493 b = append(b, []byte{0x20}...)
494 b = append(b, en.monthsWide[t.Month()]...)
495 b = append(b, []byte{0x20}...)
496
497 if t.Year() > 0 {
498 b = strconv.AppendInt(b, int64(t.Year()), 10)
499 } else {
500 b = strconv.AppendInt(b, int64(-t.Year()), 10)
501 }
502
503 return string(b)
504 }
505
506
507 func (en *en_TT) FmtTimeShort(t time.Time) string {
508
509 b := make([]byte, 0, 32)
510
511 h := t.Hour()
512
513 if h > 12 {
514 h -= 12
515 }
516
517 b = strconv.AppendInt(b, int64(h), 10)
518 b = append(b, en.timeSeparator...)
519
520 if t.Minute() < 10 {
521 b = append(b, '0')
522 }
523
524 b = strconv.AppendInt(b, int64(t.Minute()), 10)
525 b = append(b, []byte{0x20}...)
526
527 if t.Hour() < 12 {
528 b = append(b, en.periodsAbbreviated[0]...)
529 } else {
530 b = append(b, en.periodsAbbreviated[1]...)
531 }
532
533 return string(b)
534 }
535
536
537 func (en *en_TT) FmtTimeMedium(t time.Time) string {
538
539 b := make([]byte, 0, 32)
540
541 h := t.Hour()
542
543 if h > 12 {
544 h -= 12
545 }
546
547 b = strconv.AppendInt(b, int64(h), 10)
548 b = append(b, en.timeSeparator...)
549
550 if t.Minute() < 10 {
551 b = append(b, '0')
552 }
553
554 b = strconv.AppendInt(b, int64(t.Minute()), 10)
555 b = append(b, en.timeSeparator...)
556
557 if t.Second() < 10 {
558 b = append(b, '0')
559 }
560
561 b = strconv.AppendInt(b, int64(t.Second()), 10)
562 b = append(b, []byte{0x20}...)
563
564 if t.Hour() < 12 {
565 b = append(b, en.periodsAbbreviated[0]...)
566 } else {
567 b = append(b, en.periodsAbbreviated[1]...)
568 }
569
570 return string(b)
571 }
572
573
574 func (en *en_TT) FmtTimeLong(t time.Time) string {
575
576 b := make([]byte, 0, 32)
577
578 h := t.Hour()
579
580 if h > 12 {
581 h -= 12
582 }
583
584 b = strconv.AppendInt(b, int64(h), 10)
585 b = append(b, en.timeSeparator...)
586
587 if t.Minute() < 10 {
588 b = append(b, '0')
589 }
590
591 b = strconv.AppendInt(b, int64(t.Minute()), 10)
592 b = append(b, en.timeSeparator...)
593
594 if t.Second() < 10 {
595 b = append(b, '0')
596 }
597
598 b = strconv.AppendInt(b, int64(t.Second()), 10)
599 b = append(b, []byte{0x20}...)
600
601 if t.Hour() < 12 {
602 b = append(b, en.periodsAbbreviated[0]...)
603 } else {
604 b = append(b, en.periodsAbbreviated[1]...)
605 }
606
607 b = append(b, []byte{0x20}...)
608
609 tz, _ := t.Zone()
610 b = append(b, tz...)
611
612 return string(b)
613 }
614
615
616 func (en *en_TT) FmtTimeFull(t time.Time) string {
617
618 b := make([]byte, 0, 32)
619
620 h := t.Hour()
621
622 if h > 12 {
623 h -= 12
624 }
625
626 b = strconv.AppendInt(b, int64(h), 10)
627 b = append(b, en.timeSeparator...)
628
629 if t.Minute() < 10 {
630 b = append(b, '0')
631 }
632
633 b = strconv.AppendInt(b, int64(t.Minute()), 10)
634 b = append(b, en.timeSeparator...)
635
636 if t.Second() < 10 {
637 b = append(b, '0')
638 }
639
640 b = strconv.AppendInt(b, int64(t.Second()), 10)
641 b = append(b, []byte{0x20}...)
642
643 if t.Hour() < 12 {
644 b = append(b, en.periodsAbbreviated[0]...)
645 } else {
646 b = append(b, en.periodsAbbreviated[1]...)
647 }
648
649 b = append(b, []byte{0x20}...)
650
651 tz, _ := t.Zone()
652
653 if btz, ok := en.timezones[tz]; ok {
654 b = append(b, btz...)
655 } else {
656 b = append(b, tz...)
657 }
658
659 return string(b)
660 }
661
View as plain text