1 package bs_Latn
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 bs_Latn 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 &bs_Latn{
48 locale: "bs_Latn",
49 pluralsCardinal: []locales.PluralRule{2, 4, 6},
50 pluralsOrdinal: []locales.PluralRule{6},
51 pluralsRange: []locales.PluralRule{2, 4, 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", "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", "TTD", "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"},
60 percentSuffix: " ",
61 currencyPositiveSuffix: " ",
62 currencyNegativeSuffix: " ",
63 monthsAbbreviated: []string{"", "jan", "feb", "mar", "apr", "maj", "jun", "jul", "aug", "sep", "okt", "nov", "dec"},
64 monthsNarrow: []string{"", "j", "f", "m", "a", "m", "j", "j", "a", "s", "o", "n", "d"},
65 monthsWide: []string{"", "januar", "februar", "mart", "april", "maj", "juni", "juli", "august", "septembar", "oktobar", "novembar", "decembar"},
66 daysAbbreviated: []string{"ned", "pon", "uto", "sri", "čet", "pet", "sub"},
67 daysNarrow: []string{"N", "P", "U", "S", "Č", "P", "S"},
68 daysShort: []string{"ned", "pon", "uto", "sri", "čet", "pet", "sub"},
69 daysWide: []string{"nedjelja", "ponedjeljak", "utorak", "srijeda", "četvrtak", "petak", "subota"},
70 periodsAbbreviated: []string{"AM", "PM"},
71 periodsNarrow: []string{"prijepodne", "popodne"},
72 periodsWide: []string{"prijepodne", "popodne"},
73 erasAbbreviated: []string{"p. n. e.", "n. e."},
74 erasNarrow: []string{"p.n.e.", "n.e."},
75 erasWide: []string{"prije nove ere", "nove ere"},
76 timezones: map[string]string{"ACDT": "Centralnoaustralijsko ljetno vrijeme", "ACST": "Centralnoaustralijsko standardno vrijeme", "ACWDT": "Australijsko centralnozapadno ljetno vrijeme", "ACWST": "Australijsko centralnozapadno standardno vrijeme", "ADT": "Sjevernoameričko atlantsko ljetno vrijeme", "AEDT": "Istočnoaustralijsko ljetno vrijeme", "AEST": "Istočnoaustralijsko standardno vrijeme", "AKDT": "Aljaskansko ljetno vrijeme", "AKST": "Aljaskansko standardno vrijeme", "ARST": "Argentinsko ljetno vrijeme", "ART": "Argentinsko standardno vrijeme", "AST": "Sjevernoameričko atlantsko standardno vrijeme", "AWDT": "Zapadnoaustralijsko ljetno vrijeme", "AWST": "Zapadnoaustralijsko standardno vrijeme", "BOT": "Bolivijsko vrijeme", "BT": "Butansko vrijeme", "CAT": "Centralnoafričko vrijeme", "CDT": "Sjevernoameričko centralno ljetno vrijeme", "CHADT": "Čatamsko ljetno vrijeme", "CHAST": "Čatamsko standardno vrijeme", "CLST": "Čileansko ljetno vrijeme", "CLT": "Čileansko standardno vrijeme", "COST": "Kolumbijsko ljetno vrijeme", "COT": "Kolumbijsko standardno vrijeme", "CST": "Sjevernoameričko centralno standardno vrijeme", "ChST": "Čamorsko standardno vrijeme", "EAT": "Istočnoafričko vrijeme", "ECT": "Ekvadorsko vrijeme", "EDT": "Sjevernoameričko istočno ljetno vrijeme", "EST": "Sjevernoameričko istočno standardno vrijeme", "GFT": "Francuskogvajansko vrijeme", "GMT": "Griničko vrijeme", "GST": "Zalivsko standardno vrijeme", "GYT": "Gvajansko vrijeme", "HADT": "Havajsko-aleućansko ljetno vrijeme", "HAST": "Havajsko-aleućansko standardno vrijeme", "HAT": "Njufaundlendsko ljetno vrijeme", "HECU": "Kubansko ljetno vrijeme", "HEEG": "Istočnogrenlandsko ljetno vrijeme", "HENOMX": "Sjeverozapadno meksičko ljetno vrijeme", "HEOG": "Zapadnogrenlandsko ljetno vrijeme", "HEPM": "Ljetno vrijeme na Ostrvima Sveti Petar i Mikelon", "HEPMX": "Meksičko pacifičko ljetno vrijeme", "HKST": "Hongkonško ljetno vrijeme", "HKT": "Hongkonško standardno vrijeme", "HNCU": "Kubansko standardno vrijeme", "HNEG": "Istočnogrenlandsko standardno vrijeme", "HNNOMX": "Sjeverozapadno meksičko standardno vrijeme", "HNOG": "Zapadnogrenlandsko standardno vrijeme", "HNPM": "Standardno vrijeme na Ostrvima Sveti Petar i Mikelon", "HNPMX": "Meksičko pacifičko standardno vrijeme", "HNT": "Njufaundlendsko standardno vrijeme", "IST": "Indijsko standardno vrijeme", "JDT": "Japansko ljetno vrijeme", "JST": "Japansko standardno vrijeme", "LHDT": "Ljetno vrijeme na Ostrvu Lord Hau", "LHST": "Standardno vrijeme na Ostrvu Lord Hau", "MDT": "Sjevernoameričko planinsko ljetno vrijeme", "MESZ": "Centralnoevropsko ljetno vrijeme", "MEZ": "Centralnoevropsko standardno vrijeme", "MST": "Sjevernoameričko planinsko standardno vrijeme", "MYT": "Malezijsko vrijeme", "NZDT": "Novozelandsko ljetno vrijeme", "NZST": "Novozelandsko standardno vrijeme", "OESZ": "Istočnoevropsko ljetno vrijeme", "OEZ": "Istočnoevropsko standardno vrijeme", "PDT": "Sjevernoameričko pacifičko ljetno vrijeme", "PST": "Sjevernoameričko pacifičko standardno vrijeme", "SAST": "Južnoafričko standardno vrijeme", "SGT": "Singapursko standardno vrijeme", "SRT": "Surinamsko vrijeme", "TMST": "Turkmenistansko ljetno vrijeme", "TMT": "Turkmenistansko standardno vrijeme", "UYST": "Urugvajsko ljetno vrijeme", "UYT": "Urugvajsko standardno vrijeme", "VET": "Venecuelansko vrijeme", "WARST": "Zapadnoargentinsko ljetno vrijeme", "WART": "Zapadnoargentinsko standardno vrijeme", "WAST": "Zapadnoafričko ljetno vrijeme", "WAT": "Zapadnoafričko standardno vrijeme", "WESZ": "Zapadnoevropsko ljetno vrijeme", "WEZ": "Zapadnoevropsko standardno vrijeme", "WIB": "Zapadnoindonezijsko vrijeme", "WIT": "Istočnoindonezijsko vrijeme", "WITA": "Centralnoindonezijsko vrijeme", "∅∅∅": "Brazilijsko ljetno vrijeme"},
77 }
78 }
79
80
81 func (bs *bs_Latn) Locale() string {
82 return bs.locale
83 }
84
85
86 func (bs *bs_Latn) PluralsCardinal() []locales.PluralRule {
87 return bs.pluralsCardinal
88 }
89
90
91 func (bs *bs_Latn) PluralsOrdinal() []locales.PluralRule {
92 return bs.pluralsOrdinal
93 }
94
95
96 func (bs *bs_Latn) PluralsRange() []locales.PluralRule {
97 return bs.pluralsRange
98 }
99
100
101 func (bs *bs_Latn) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
102
103 n := math.Abs(num)
104 i := int64(n)
105 f := locales.F(n, v)
106 iMod10 := i % 10
107 iMod100 := i % 100
108 fMod10 := f % 10
109 fMod100 := f % 100
110
111 if (v == 0 && iMod10 == 1 && iMod100 != 11) || (fMod10 == 1 && fMod100 != 11) {
112 return locales.PluralRuleOne
113 } else if (v == 0 && iMod10 >= 2 && iMod10 <= 4 && (iMod100 < 12 || iMod100 > 14)) || (fMod10 >= 2 && fMod10 <= 4 && (fMod100 < 12 || fMod100 > 14)) {
114 return locales.PluralRuleFew
115 }
116
117 return locales.PluralRuleOther
118 }
119
120
121 func (bs *bs_Latn) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
122 return locales.PluralRuleOther
123 }
124
125
126 func (bs *bs_Latn) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
127
128 start := bs.CardinalPluralRule(num1, v1)
129 end := bs.CardinalPluralRule(num2, v2)
130
131 if start == locales.PluralRuleOne && end == locales.PluralRuleOne {
132 return locales.PluralRuleOne
133 } else if start == locales.PluralRuleOne && end == locales.PluralRuleFew {
134 return locales.PluralRuleFew
135 } else if start == locales.PluralRuleOne && end == locales.PluralRuleOther {
136 return locales.PluralRuleOther
137 } else if start == locales.PluralRuleFew && end == locales.PluralRuleOne {
138 return locales.PluralRuleOne
139 } else if start == locales.PluralRuleFew && end == locales.PluralRuleFew {
140 return locales.PluralRuleFew
141 } else if start == locales.PluralRuleFew && end == locales.PluralRuleOther {
142 return locales.PluralRuleOther
143 } else if start == locales.PluralRuleOther && end == locales.PluralRuleOne {
144 return locales.PluralRuleOne
145 } else if start == locales.PluralRuleOther && end == locales.PluralRuleFew {
146 return locales.PluralRuleFew
147 }
148
149 return locales.PluralRuleOther
150
151 }
152
153
154 func (bs *bs_Latn) MonthAbbreviated(month time.Month) string {
155 return bs.monthsAbbreviated[month]
156 }
157
158
159 func (bs *bs_Latn) MonthsAbbreviated() []string {
160 return bs.monthsAbbreviated[1:]
161 }
162
163
164 func (bs *bs_Latn) MonthNarrow(month time.Month) string {
165 return bs.monthsNarrow[month]
166 }
167
168
169 func (bs *bs_Latn) MonthsNarrow() []string {
170 return bs.monthsNarrow[1:]
171 }
172
173
174 func (bs *bs_Latn) MonthWide(month time.Month) string {
175 return bs.monthsWide[month]
176 }
177
178
179 func (bs *bs_Latn) MonthsWide() []string {
180 return bs.monthsWide[1:]
181 }
182
183
184 func (bs *bs_Latn) WeekdayAbbreviated(weekday time.Weekday) string {
185 return bs.daysAbbreviated[weekday]
186 }
187
188
189 func (bs *bs_Latn) WeekdaysAbbreviated() []string {
190 return bs.daysAbbreviated
191 }
192
193
194 func (bs *bs_Latn) WeekdayNarrow(weekday time.Weekday) string {
195 return bs.daysNarrow[weekday]
196 }
197
198
199 func (bs *bs_Latn) WeekdaysNarrow() []string {
200 return bs.daysNarrow
201 }
202
203
204 func (bs *bs_Latn) WeekdayShort(weekday time.Weekday) string {
205 return bs.daysShort[weekday]
206 }
207
208
209 func (bs *bs_Latn) WeekdaysShort() []string {
210 return bs.daysShort
211 }
212
213
214 func (bs *bs_Latn) WeekdayWide(weekday time.Weekday) string {
215 return bs.daysWide[weekday]
216 }
217
218
219 func (bs *bs_Latn) WeekdaysWide() []string {
220 return bs.daysWide
221 }
222
223
224 func (bs *bs_Latn) Decimal() string {
225 return bs.decimal
226 }
227
228
229 func (bs *bs_Latn) Group() string {
230 return bs.group
231 }
232
233
234 func (bs *bs_Latn) Minus() string {
235 return bs.minus
236 }
237
238
239 func (bs *bs_Latn) FmtNumber(num float64, v uint64) string {
240
241 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
242 l := len(s) + 2 + 1*len(s[:len(s)-int(v)-1])/3
243 count := 0
244 inWhole := v == 0
245 b := make([]byte, 0, l)
246
247 for i := len(s) - 1; i >= 0; i-- {
248
249 if s[i] == '.' {
250 b = append(b, bs.decimal[0])
251 inWhole = true
252 continue
253 }
254
255 if inWhole {
256 if count == 3 {
257 b = append(b, bs.group[0])
258 count = 1
259 } else {
260 count++
261 }
262 }
263
264 b = append(b, s[i])
265 }
266
267 if num < 0 {
268 b = append(b, bs.minus[0])
269 }
270
271
272 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
273 b[i], b[j] = b[j], b[i]
274 }
275
276 return string(b)
277 }
278
279
280
281 func (bs *bs_Latn) FmtPercent(num float64, v uint64) string {
282 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
283 l := len(s) + 5
284 b := make([]byte, 0, l)
285
286 for i := len(s) - 1; i >= 0; i-- {
287
288 if s[i] == '.' {
289 b = append(b, bs.decimal[0])
290 continue
291 }
292
293 b = append(b, s[i])
294 }
295
296 if num < 0 {
297 b = append(b, bs.minus[0])
298 }
299
300
301 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
302 b[i], b[j] = b[j], b[i]
303 }
304
305 b = append(b, bs.percentSuffix...)
306
307 b = append(b, bs.percent...)
308
309 return string(b)
310 }
311
312
313 func (bs *bs_Latn) FmtCurrency(num float64, v uint64, currency currency.Type) string {
314
315 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
316 symbol := bs.currencies[currency]
317 l := len(s) + len(symbol) + 4 + 1*len(s[:len(s)-int(v)-1])/3
318 count := 0
319 inWhole := v == 0
320 b := make([]byte, 0, l)
321
322 for i := len(s) - 1; i >= 0; i-- {
323
324 if s[i] == '.' {
325 b = append(b, bs.decimal[0])
326 inWhole = true
327 continue
328 }
329
330 if inWhole {
331 if count == 3 {
332 b = append(b, bs.group[0])
333 count = 1
334 } else {
335 count++
336 }
337 }
338
339 b = append(b, s[i])
340 }
341
342 if num < 0 {
343 b = append(b, bs.minus[0])
344 }
345
346
347 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
348 b[i], b[j] = b[j], b[i]
349 }
350
351 if int(v) < 2 {
352
353 if v == 0 {
354 b = append(b, bs.decimal...)
355 }
356
357 for i := 0; i < 2-int(v); i++ {
358 b = append(b, '0')
359 }
360 }
361
362 b = append(b, bs.currencyPositiveSuffix...)
363
364 b = append(b, symbol...)
365
366 return string(b)
367 }
368
369
370
371 func (bs *bs_Latn) FmtAccounting(num float64, v uint64, currency currency.Type) string {
372
373 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
374 symbol := bs.currencies[currency]
375 l := len(s) + len(symbol) + 4 + 1*len(s[:len(s)-int(v)-1])/3
376 count := 0
377 inWhole := v == 0
378 b := make([]byte, 0, l)
379
380 for i := len(s) - 1; i >= 0; i-- {
381
382 if s[i] == '.' {
383 b = append(b, bs.decimal[0])
384 inWhole = true
385 continue
386 }
387
388 if inWhole {
389 if count == 3 {
390 b = append(b, bs.group[0])
391 count = 1
392 } else {
393 count++
394 }
395 }
396
397 b = append(b, s[i])
398 }
399
400 if num < 0 {
401
402 b = append(b, bs.minus[0])
403
404 }
405
406
407 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
408 b[i], b[j] = b[j], b[i]
409 }
410
411 if int(v) < 2 {
412
413 if v == 0 {
414 b = append(b, bs.decimal...)
415 }
416
417 for i := 0; i < 2-int(v); i++ {
418 b = append(b, '0')
419 }
420 }
421
422 if num < 0 {
423 b = append(b, bs.currencyNegativeSuffix...)
424 b = append(b, symbol...)
425 } else {
426
427 b = append(b, bs.currencyPositiveSuffix...)
428 b = append(b, symbol...)
429 }
430
431 return string(b)
432 }
433
434
435 func (bs *bs_Latn) FmtDateShort(t time.Time) string {
436
437 b := make([]byte, 0, 32)
438
439 b = strconv.AppendInt(b, int64(t.Day()), 10)
440 b = append(b, []byte{0x2e, 0x20}...)
441 b = strconv.AppendInt(b, int64(t.Month()), 10)
442 b = append(b, []byte{0x2e, 0x20}...)
443
444 if t.Year() > 0 {
445 b = strconv.AppendInt(b, int64(t.Year()), 10)
446 } else {
447 b = strconv.AppendInt(b, int64(-t.Year()), 10)
448 }
449
450 b = append(b, []byte{0x2e}...)
451
452 return string(b)
453 }
454
455
456 func (bs *bs_Latn) FmtDateMedium(t time.Time) string {
457
458 b := make([]byte, 0, 32)
459
460 b = strconv.AppendInt(b, int64(t.Day()), 10)
461 b = append(b, []byte{0x2e, 0x20}...)
462 b = append(b, bs.monthsAbbreviated[t.Month()]...)
463 b = append(b, []byte{0x20}...)
464
465 if t.Year() > 0 {
466 b = strconv.AppendInt(b, int64(t.Year()), 10)
467 } else {
468 b = strconv.AppendInt(b, int64(-t.Year()), 10)
469 }
470
471 b = append(b, []byte{0x2e}...)
472
473 return string(b)
474 }
475
476
477 func (bs *bs_Latn) FmtDateLong(t time.Time) string {
478
479 b := make([]byte, 0, 32)
480
481 b = strconv.AppendInt(b, int64(t.Day()), 10)
482 b = append(b, []byte{0x2e, 0x20}...)
483 b = append(b, bs.monthsWide[t.Month()]...)
484 b = append(b, []byte{0x20}...)
485
486 if t.Year() > 0 {
487 b = strconv.AppendInt(b, int64(t.Year()), 10)
488 } else {
489 b = strconv.AppendInt(b, int64(-t.Year()), 10)
490 }
491
492 b = append(b, []byte{0x2e}...)
493
494 return string(b)
495 }
496
497
498 func (bs *bs_Latn) FmtDateFull(t time.Time) string {
499
500 b := make([]byte, 0, 32)
501
502 b = append(b, bs.daysWide[t.Weekday()]...)
503 b = append(b, []byte{0x2c, 0x20}...)
504 b = strconv.AppendInt(b, int64(t.Day()), 10)
505 b = append(b, []byte{0x2e, 0x20}...)
506 b = append(b, bs.monthsWide[t.Month()]...)
507 b = append(b, []byte{0x20}...)
508
509 if t.Year() > 0 {
510 b = strconv.AppendInt(b, int64(t.Year()), 10)
511 } else {
512 b = strconv.AppendInt(b, int64(-t.Year()), 10)
513 }
514
515 b = append(b, []byte{0x2e}...)
516
517 return string(b)
518 }
519
520
521 func (bs *bs_Latn) FmtTimeShort(t time.Time) string {
522
523 b := make([]byte, 0, 32)
524
525 if t.Hour() < 10 {
526 b = append(b, '0')
527 }
528
529 b = strconv.AppendInt(b, int64(t.Hour()), 10)
530 b = append(b, bs.timeSeparator...)
531
532 if t.Minute() < 10 {
533 b = append(b, '0')
534 }
535
536 b = strconv.AppendInt(b, int64(t.Minute()), 10)
537
538 return string(b)
539 }
540
541
542 func (bs *bs_Latn) FmtTimeMedium(t time.Time) string {
543
544 b := make([]byte, 0, 32)
545
546 if t.Hour() < 10 {
547 b = append(b, '0')
548 }
549
550 b = strconv.AppendInt(b, int64(t.Hour()), 10)
551 b = append(b, bs.timeSeparator...)
552
553 if t.Minute() < 10 {
554 b = append(b, '0')
555 }
556
557 b = strconv.AppendInt(b, int64(t.Minute()), 10)
558 b = append(b, bs.timeSeparator...)
559
560 if t.Second() < 10 {
561 b = append(b, '0')
562 }
563
564 b = strconv.AppendInt(b, int64(t.Second()), 10)
565
566 return string(b)
567 }
568
569
570 func (bs *bs_Latn) FmtTimeLong(t time.Time) string {
571
572 b := make([]byte, 0, 32)
573
574 if t.Hour() < 10 {
575 b = append(b, '0')
576 }
577
578 b = strconv.AppendInt(b, int64(t.Hour()), 10)
579 b = append(b, bs.timeSeparator...)
580
581 if t.Minute() < 10 {
582 b = append(b, '0')
583 }
584
585 b = strconv.AppendInt(b, int64(t.Minute()), 10)
586 b = append(b, bs.timeSeparator...)
587
588 if t.Second() < 10 {
589 b = append(b, '0')
590 }
591
592 b = strconv.AppendInt(b, int64(t.Second()), 10)
593 b = append(b, []byte{0x20}...)
594
595 tz, _ := t.Zone()
596 b = append(b, tz...)
597
598 return string(b)
599 }
600
601
602 func (bs *bs_Latn) FmtTimeFull(t time.Time) string {
603
604 b := make([]byte, 0, 32)
605
606 if t.Hour() < 10 {
607 b = append(b, '0')
608 }
609
610 b = strconv.AppendInt(b, int64(t.Hour()), 10)
611 b = append(b, bs.timeSeparator...)
612
613 if t.Minute() < 10 {
614 b = append(b, '0')
615 }
616
617 b = strconv.AppendInt(b, int64(t.Minute()), 10)
618 b = append(b, bs.timeSeparator...)
619
620 if t.Second() < 10 {
621 b = append(b, '0')
622 }
623
624 b = strconv.AppendInt(b, int64(t.Second()), 10)
625 b = append(b, []byte{0x20}...)
626
627 tz, _ := t.Zone()
628
629 if btz, ok := bs.timezones[tz]; ok {
630 b = append(b, btz...)
631 } else {
632 b = append(b, tz...)
633 }
634
635 return string(b)
636 }
637
View as plain text