1package lu
2
3import (
4	"math"
5	"strconv"
6	"time"
7
8	"github.com/go-playground/locales"
9	"github.com/go-playground/locales/currency"
10)
11
12type lu 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 // idx = enum of currency code
25	monthsAbbreviated  []string
26	monthsNarrow       []string
27	monthsWide         []string
28	daysAbbreviated    []string
29	daysNarrow         []string
30	daysShort          []string
31	daysWide           []string
32	periodsAbbreviated []string
33	periodsNarrow      []string
34	periodsShort       []string
35	periodsWide        []string
36	erasAbbreviated    []string
37	erasNarrow         []string
38	erasWide           []string
39	timezones          map[string]string
40}
41
42// New returns a new instance of translator for the 'lu' locale
43func New() locales.Translator {
44	return &lu{
45		locale:             "lu",
46		pluralsCardinal:    nil,
47		pluralsOrdinal:     nil,
48		pluralsRange:       nil,
49		decimal:            ",",
50		group:              ".",
51		timeSeparator:      ":",
52		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", "FC", "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", "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", "UZS", "VEB", "VEF", "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"},
53		monthsAbbreviated:  []string{"", "Cio", "Lui", "Lus", "Muu", "Lum", "Luf", "Kab", "Lush", "Lut", "Lun", "Kas", "Cis"},
54		monthsNarrow:       []string{"", "C", "L", "L", "M", "L", "L", "K", "L", "L", "L", "K", "C"},
55		monthsWide:         []string{"", "Ciongo", "Lùishi", "Lusòlo", "Mùuyà", "Lumùngùlù", "Lufuimi", "Kabàlàshìpù", "Lùshìkà", "Lutongolo", "Lungùdi", "Kaswèkèsè", "Ciswà"},
56		daysAbbreviated:    []string{"Lum", "Nko", "Ndy", "Ndg", "Njw", "Ngv", "Lub"},
57		daysNarrow:         []string{"L", "N", "N", "N", "N", "N", "L"},
58		daysWide:           []string{"Lumingu", "Nkodya", "Ndàayà", "Ndangù", "Njòwa", "Ngòvya", "Lubingu"},
59		periodsAbbreviated: []string{"Dinda", "Dilolo"},
60		periodsWide:        []string{"Dinda", "Dilolo"},
61		erasAbbreviated:    []string{"kmp. Y.K.", "kny. Y. K."},
62		erasNarrow:         []string{"", ""},
63		erasWide:           []string{"Kumpala kwa Yezu Kli", "Kunyima kwa Yezu Kli"},
64		timezones:          map[string]string{"HAST": "HAST", "COT": "COT", "EST": "EST", "HNEG": "HNEG", "HEPM": "HEPM", "HNNOMX": "HNNOMX", "TMT": "TMT", "OESZ": "OESZ", "AWDT": "AWDT", "ECT": "ECT", "ACDT": "ACDT", "WARST": "WARST", "HNPM": "HNPM", "AWST": "AWST", "HKST": "HKST", "VET": "VET", "ARST": "ARST", "HEPMX": "HEPMX", "WIB": "WIB", "AKST": "AKST", "WART": "WART", "MDT": "MDT", "CST": "CST", "WEZ": "WEZ", "MESZ": "MESZ", "CLST": "CLST", "ChST": "ChST", "AST": "AST", "WAST": "WAST", "WESZ": "WESZ", "ACWDT": "ACWDT", "HEEG": "HEEG", "HEOG": "HEOG", "HNT": "HNT", "PDT": "PDT", "ACWST": "ACWST", "MEZ": "MEZ", "GMT": "GMT", "CDT": "CDT", "SAST": "SAST", "NZDT": "NZDT", "AEDT": "AEDT", "LHDT": "LHDT", "COST": "COST", "GYT": "GYT", "HNPMX": "HNPMX", "BOT": "BOT", "UYST": "UYST", "PST": "PST", "MYT": "MYT", "GFT": "GFT", "JDT": "JDT", "AKDT": "AKDT", "IST": "IST", "HENOMX": "HENOMX", "CLT": "CLT", "HADT": "HADT", "AEST": "AEST", "NZST": "NZST", "HKT": "HKT", "∅∅∅": "∅∅∅", "LHST": "LHST", "CHAST": "CHAST", "HECU": "HECU", "ART": "ART", "CHADT": "CHADT", "HNCU": "HNCU", "JST": "JST", "ACST": "ACST", "HAT": "HAT", "CAT": "CAT", "WIT": "WIT", "BT": "BT", "WITA": "WITA", "OEZ": "OEZ", "UYT": "UYT", "EDT": "EDT", "HNOG": "HNOG", "MST": "MST", "SRT": "SRT", "EAT": "EAT", "TMST": "TMST", "ADT": "ADT", "WAT": "WAT", "SGT": "SGT"},
65	}
66}
67
68// Locale returns the current translators string locale
69func (lu *lu) Locale() string {
70	return lu.locale
71}
72
73// PluralsCardinal returns the list of cardinal plural rules associated with 'lu'
74func (lu *lu) PluralsCardinal() []locales.PluralRule {
75	return lu.pluralsCardinal
76}
77
78// PluralsOrdinal returns the list of ordinal plural rules associated with 'lu'
79func (lu *lu) PluralsOrdinal() []locales.PluralRule {
80	return lu.pluralsOrdinal
81}
82
83// PluralsRange returns the list of range plural rules associated with 'lu'
84func (lu *lu) PluralsRange() []locales.PluralRule {
85	return lu.pluralsRange
86}
87
88// CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'lu'
89func (lu *lu) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
90	return locales.PluralRuleUnknown
91}
92
93// OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'lu'
94func (lu *lu) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
95	return locales.PluralRuleUnknown
96}
97
98// RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'lu'
99func (lu *lu) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
100	return locales.PluralRuleUnknown
101}
102
103// MonthAbbreviated returns the locales abbreviated month given the 'month' provided
104func (lu *lu) MonthAbbreviated(month time.Month) string {
105	return lu.monthsAbbreviated[month]
106}
107
108// MonthsAbbreviated returns the locales abbreviated months
109func (lu *lu) MonthsAbbreviated() []string {
110	return lu.monthsAbbreviated[1:]
111}
112
113// MonthNarrow returns the locales narrow month given the 'month' provided
114func (lu *lu) MonthNarrow(month time.Month) string {
115	return lu.monthsNarrow[month]
116}
117
118// MonthsNarrow returns the locales narrow months
119func (lu *lu) MonthsNarrow() []string {
120	return lu.monthsNarrow[1:]
121}
122
123// MonthWide returns the locales wide month given the 'month' provided
124func (lu *lu) MonthWide(month time.Month) string {
125	return lu.monthsWide[month]
126}
127
128// MonthsWide returns the locales wide months
129func (lu *lu) MonthsWide() []string {
130	return lu.monthsWide[1:]
131}
132
133// WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
134func (lu *lu) WeekdayAbbreviated(weekday time.Weekday) string {
135	return lu.daysAbbreviated[weekday]
136}
137
138// WeekdaysAbbreviated returns the locales abbreviated weekdays
139func (lu *lu) WeekdaysAbbreviated() []string {
140	return lu.daysAbbreviated
141}
142
143// WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
144func (lu *lu) WeekdayNarrow(weekday time.Weekday) string {
145	return lu.daysNarrow[weekday]
146}
147
148// WeekdaysNarrow returns the locales narrow weekdays
149func (lu *lu) WeekdaysNarrow() []string {
150	return lu.daysNarrow
151}
152
153// WeekdayShort returns the locales short weekday given the 'weekday' provided
154func (lu *lu) WeekdayShort(weekday time.Weekday) string {
155	return lu.daysShort[weekday]
156}
157
158// WeekdaysShort returns the locales short weekdays
159func (lu *lu) WeekdaysShort() []string {
160	return lu.daysShort
161}
162
163// WeekdayWide returns the locales wide weekday given the 'weekday' provided
164func (lu *lu) WeekdayWide(weekday time.Weekday) string {
165	return lu.daysWide[weekday]
166}
167
168// WeekdaysWide returns the locales wide weekdays
169func (lu *lu) WeekdaysWide() []string {
170	return lu.daysWide
171}
172
173// Decimal returns the decimal point of number
174func (lu *lu) Decimal() string {
175	return lu.decimal
176}
177
178// Group returns the group of number
179func (lu *lu) Group() string {
180	return lu.group
181}
182
183// Group returns the minus sign of number
184func (lu *lu) Minus() string {
185	return lu.minus
186}
187
188// FmtNumber returns 'num' with digits/precision of 'v' for 'lu' and handles both Whole and Real numbers based on 'v'
189func (lu *lu) FmtNumber(num float64, v uint64) string {
190
191	s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
192	l := len(s) + 1 + 1*len(s[:len(s)-int(v)-1])/3
193	count := 0
194	inWhole := v == 0
195	b := make([]byte, 0, l)
196
197	for i := len(s) - 1; i >= 0; i-- {
198
199		if s[i] == '.' {
200			b = append(b, lu.decimal[0])
201			inWhole = true
202			continue
203		}
204
205		if inWhole {
206			if count == 3 {
207				b = append(b, lu.group[0])
208				count = 1
209			} else {
210				count++
211			}
212		}
213
214		b = append(b, s[i])
215	}
216
217	if num < 0 {
218		b = append(b, lu.minus[0])
219	}
220
221	// reverse
222	for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
223		b[i], b[j] = b[j], b[i]
224	}
225
226	return string(b)
227}
228
229// FmtPercent returns 'num' with digits/precision of 'v' for 'lu' and handles both Whole and Real numbers based on 'v'
230// NOTE: 'num' passed into FmtPercent is assumed to be in percent already
231func (lu *lu) FmtPercent(num float64, v uint64) string {
232	return strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
233}
234
235// FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'lu'
236func (lu *lu) FmtCurrency(num float64, v uint64, currency currency.Type) string {
237
238	s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
239	symbol := lu.currencies[currency]
240	l := len(s) + len(symbol) + 1 + 1*len(s[:len(s)-int(v)-1])/3
241	count := 0
242	inWhole := v == 0
243	b := make([]byte, 0, l)
244
245	for i := len(s) - 1; i >= 0; i-- {
246
247		if s[i] == '.' {
248			b = append(b, lu.decimal[0])
249			inWhole = true
250			continue
251		}
252
253		if inWhole {
254			if count == 3 {
255				b = append(b, lu.group[0])
256				count = 1
257			} else {
258				count++
259			}
260		}
261
262		b = append(b, s[i])
263	}
264
265	if num < 0 {
266		b = append(b, lu.minus[0])
267	}
268
269	// reverse
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	if int(v) < 2 {
275
276		if v == 0 {
277			b = append(b, lu.decimal...)
278		}
279
280		for i := 0; i < 2-int(v); i++ {
281			b = append(b, '0')
282		}
283	}
284
285	b = append(b, symbol...)
286
287	return string(b)
288}
289
290// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'lu'
291// in accounting notation.
292func (lu *lu) FmtAccounting(num float64, v uint64, currency currency.Type) string {
293
294	s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
295	symbol := lu.currencies[currency]
296	l := len(s) + len(symbol) + 1 + 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, lu.decimal[0])
305			inWhole = true
306			continue
307		}
308
309		if inWhole {
310			if count == 3 {
311				b = append(b, lu.group[0])
312				count = 1
313			} else {
314				count++
315			}
316		}
317
318		b = append(b, s[i])
319	}
320
321	if num < 0 {
322
323		b = append(b, lu.minus[0])
324
325	}
326
327	// reverse
328	for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
329		b[i], b[j] = b[j], b[i]
330	}
331
332	if int(v) < 2 {
333
334		if v == 0 {
335			b = append(b, lu.decimal...)
336		}
337
338		for i := 0; i < 2-int(v); i++ {
339			b = append(b, '0')
340		}
341	}
342
343	if num < 0 {
344		b = append(b, symbol...)
345	} else {
346
347		b = append(b, symbol...)
348	}
349
350	return string(b)
351}
352
353// FmtDateShort returns the short date representation of 't' for 'lu'
354func (lu *lu) FmtDateShort(t time.Time) string {
355
356	b := make([]byte, 0, 32)
357
358	b = strconv.AppendInt(b, int64(t.Day()), 10)
359	b = append(b, []byte{0x2f}...)
360	b = strconv.AppendInt(b, int64(t.Month()), 10)
361	b = append(b, []byte{0x2f}...)
362
363	if t.Year() > 0 {
364		b = strconv.AppendInt(b, int64(t.Year()), 10)
365	} else {
366		b = strconv.AppendInt(b, int64(-t.Year()), 10)
367	}
368
369	return string(b)
370}
371
372// FmtDateMedium returns the medium date representation of 't' for 'lu'
373func (lu *lu) FmtDateMedium(t time.Time) string {
374
375	b := make([]byte, 0, 32)
376
377	b = strconv.AppendInt(b, int64(t.Day()), 10)
378	b = append(b, []byte{0x20}...)
379	b = append(b, lu.monthsAbbreviated[t.Month()]...)
380	b = append(b, []byte{0x20}...)
381
382	if t.Year() > 0 {
383		b = strconv.AppendInt(b, int64(t.Year()), 10)
384	} else {
385		b = strconv.AppendInt(b, int64(-t.Year()), 10)
386	}
387
388	return string(b)
389}
390
391// FmtDateLong returns the long date representation of 't' for 'lu'
392func (lu *lu) FmtDateLong(t time.Time) string {
393
394	b := make([]byte, 0, 32)
395
396	b = strconv.AppendInt(b, int64(t.Day()), 10)
397	b = append(b, []byte{0x20}...)
398	b = append(b, lu.monthsWide[t.Month()]...)
399	b = append(b, []byte{0x20}...)
400
401	if t.Year() > 0 {
402		b = strconv.AppendInt(b, int64(t.Year()), 10)
403	} else {
404		b = strconv.AppendInt(b, int64(-t.Year()), 10)
405	}
406
407	return string(b)
408}
409
410// FmtDateFull returns the full date representation of 't' for 'lu'
411func (lu *lu) FmtDateFull(t time.Time) string {
412
413	b := make([]byte, 0, 32)
414
415	b = append(b, lu.daysWide[t.Weekday()]...)
416	b = append(b, []byte{0x20}...)
417	b = strconv.AppendInt(b, int64(t.Day()), 10)
418	b = append(b, []byte{0x20}...)
419	b = append(b, lu.monthsWide[t.Month()]...)
420	b = append(b, []byte{0x20}...)
421
422	if t.Year() > 0 {
423		b = strconv.AppendInt(b, int64(t.Year()), 10)
424	} else {
425		b = strconv.AppendInt(b, int64(-t.Year()), 10)
426	}
427
428	return string(b)
429}
430
431// FmtTimeShort returns the short time representation of 't' for 'lu'
432func (lu *lu) FmtTimeShort(t time.Time) string {
433
434	b := make([]byte, 0, 32)
435
436	if t.Hour() < 10 {
437		b = append(b, '0')
438	}
439
440	b = strconv.AppendInt(b, int64(t.Hour()), 10)
441	b = append(b, lu.timeSeparator...)
442
443	if t.Minute() < 10 {
444		b = append(b, '0')
445	}
446
447	b = strconv.AppendInt(b, int64(t.Minute()), 10)
448
449	return string(b)
450}
451
452// FmtTimeMedium returns the medium time representation of 't' for 'lu'
453func (lu *lu) FmtTimeMedium(t time.Time) string {
454
455	b := make([]byte, 0, 32)
456
457	if t.Hour() < 10 {
458		b = append(b, '0')
459	}
460
461	b = strconv.AppendInt(b, int64(t.Hour()), 10)
462	b = append(b, lu.timeSeparator...)
463
464	if t.Minute() < 10 {
465		b = append(b, '0')
466	}
467
468	b = strconv.AppendInt(b, int64(t.Minute()), 10)
469	b = append(b, lu.timeSeparator...)
470
471	if t.Second() < 10 {
472		b = append(b, '0')
473	}
474
475	b = strconv.AppendInt(b, int64(t.Second()), 10)
476
477	return string(b)
478}
479
480// FmtTimeLong returns the long time representation of 't' for 'lu'
481func (lu *lu) FmtTimeLong(t time.Time) string {
482
483	b := make([]byte, 0, 32)
484
485	if t.Hour() < 10 {
486		b = append(b, '0')
487	}
488
489	b = strconv.AppendInt(b, int64(t.Hour()), 10)
490	b = append(b, lu.timeSeparator...)
491
492	if t.Minute() < 10 {
493		b = append(b, '0')
494	}
495
496	b = strconv.AppendInt(b, int64(t.Minute()), 10)
497	b = append(b, lu.timeSeparator...)
498
499	if t.Second() < 10 {
500		b = append(b, '0')
501	}
502
503	b = strconv.AppendInt(b, int64(t.Second()), 10)
504	b = append(b, []byte{0x20}...)
505
506	tz, _ := t.Zone()
507	b = append(b, tz...)
508
509	return string(b)
510}
511
512// FmtTimeFull returns the full time representation of 't' for 'lu'
513func (lu *lu) FmtTimeFull(t time.Time) string {
514
515	b := make([]byte, 0, 32)
516
517	if t.Hour() < 10 {
518		b = append(b, '0')
519	}
520
521	b = strconv.AppendInt(b, int64(t.Hour()), 10)
522	b = append(b, lu.timeSeparator...)
523
524	if t.Minute() < 10 {
525		b = append(b, '0')
526	}
527
528	b = strconv.AppendInt(b, int64(t.Minute()), 10)
529	b = append(b, lu.timeSeparator...)
530
531	if t.Second() < 10 {
532		b = append(b, '0')
533	}
534
535	b = strconv.AppendInt(b, int64(t.Second()), 10)
536	b = append(b, []byte{0x20}...)
537
538	tz, _ := t.Zone()
539
540	if btz, ok := lu.timezones[tz]; ok {
541		b = append(b, btz...)
542	} else {
543		b = append(b, tz...)
544	}
545
546	return string(b)
547}
548