package uz import ( "math" "strconv" "time" "github.com/go-playground/locales" "github.com/go-playground/locales/currency" ) type uz struct { locale string pluralsCardinal []locales.PluralRule pluralsOrdinal []locales.PluralRule pluralsRange []locales.PluralRule decimal string group string minus string percent string perMille string timeSeparator string inifinity string currencies []string // idx = enum of currency code currencyPositiveSuffix string currencyNegativeSuffix string monthsAbbreviated []string monthsNarrow []string monthsWide []string daysAbbreviated []string daysNarrow []string daysShort []string daysWide []string periodsAbbreviated []string periodsNarrow []string periodsShort []string periodsWide []string erasAbbreviated []string erasNarrow []string erasWide []string timezones map[string]string } // New returns a new instance of translator for the 'uz' locale func New() locales.Translator { return &uz{ locale: "uz", pluralsCardinal: []locales.PluralRule{2, 6}, pluralsOrdinal: []locales.PluralRule{6}, pluralsRange: []locales.PluralRule{2, 6}, decimal: ",", group: " ", minus: "-", percent: "%", perMille: "‰", timeSeparator: ":", inifinity: "∞", currencies: []string{"ADP", "AED", "AFA", "AFN", "ALK", "ALL", "AMD", "ANG", "AOA", "AOK", "AON", "AOR", "ARA", "ARL", "ARM", "ARP", "ARS", "ATS", "A$", "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", "R$", "BRN", "BRR", "BRZ", "BSD", "BTN", "BUK", "BWP", "BYB", "BYN", "BYR", "BZD", "CA$", "CDF", "CHE", "CHF", "CHW", "CLE", "CLF", "CLP", "CNX", "CN¥", "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", "€", "FIM", "FJD", "FKP", "FRF", "£", "GEK", "GEL", "GHC", "GHS", "GIP", "GMD", "GNF", "GNS", "GQE", "GRD", "GTQ", "GWE", "GWP", "GYD", "HK$", "HNL", "HRD", "HRK", "HTG", "HUF", "IDR", "IEP", "ILP", "ILR", "₪", "₹", "IQD", "IRR", "ISJ", "ISK", "ITL", "JMD", "JOD", "JP¥", "KES", "KGS", "KHR", "KMF", "KPW", "KRH", "KRO", "₩", "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", "MX$", "MXP", "MXV", "MYR", "MZE", "MZM", "MZN", "NAD", "NGN", "NIC", "NIO", "NLG", "NOK", "NPR", "NZ$", "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", "SUR", "SVC", "SYP", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "NT$", "TZS", "UAH", "UAK", "UGS", "UGX", "US$", "USN", "USS", "UYI", "UYP", "UYU", "soʻm", "VEB", "VEF", "₫", "VNN", "VUV", "WST", "FCFA", "XAG", "XAU", "XBA", "XBB", "XBC", "XBD", "EC$", "XDR", "XEU", "XFO", "XFU", "CFA", "XPD", "CFPF", "XPT", "XRE", "XSU", "XTS", "XUA", "XXX", "YDD", "YER", "YUD", "YUM", "YUN", "YUR", "ZAL", "ZAR", "ZMK", "ZMW", "ZRN", "ZRZ", "ZWD", "ZWL", "ZWR"}, currencyPositiveSuffix: " ", currencyNegativeSuffix: " ", monthsAbbreviated: []string{"", "yan", "fev", "mar", "apr", "may", "iyn", "iyl", "avg", "sen", "okt", "noy", "dek"}, monthsNarrow: []string{"", "Y", "F", "M", "A", "M", "I", "I", "A", "S", "O", "N", "D"}, monthsWide: []string{"", "yanvar", "fevral", "mart", "aprel", "may", "iyun", "iyul", "avgust", "sentabr", "oktabr", "noyabr", "dekabr"}, daysAbbreviated: []string{"Yak", "Dush", "Sesh", "Chor", "Pay", "Jum", "Shan"}, daysNarrow: []string{"Y", "D", "S", "C", "P", "J", "S"}, daysShort: []string{"Ya", "Du", "Se", "Ch", "Pa", "Ju", "Sh"}, daysWide: []string{"yakshanba", "dushanba", "seshanba", "chorshanba", "payshanba", "juma", "shanba"}, periodsAbbreviated: []string{"TO", "TK"}, periodsNarrow: []string{"TO", "TK"}, periodsWide: []string{"TO", "TK"}, erasAbbreviated: []string{"m.a.", "milodiy"}, erasNarrow: []string{"", ""}, erasWide: []string{"", ""}, timezones: map[string]string{"COST": "Kolumbiya yozgi vaqti", "ECT": "Ekvador vaqti", "CST": "Markaziy Amerika standart vaqti", "SRT": "Surinam vaqti", "MESZ": "Markaziy Yevropa yozgi vaqti", "LHDT": "Lord-Xau yozgi vaqti", "WEZ": "G‘arbiy Yevropa standart vaqti", "CHAST": "Chatem standart vaqti", "AEST": "Sharqiy Avstraliya standart vaqti", "HKT": "Gonkong standart vaqti", "ART": "Argentina standart vaqti", "AKDT": "Alyaska yozgi vaqti", "GMT": "Grinvich o‘rtacha vaqti", "ChST": "Chamorro standart vaqti", "WIB": "Gʻarbiy Indoneziya vaqti", "JDT": "Yaponiya yozgi vaqti", "HNEG": "Sharqiy Grenlandiya standart vaqti", "ACST": "Markaziy Avstraliya standart vaqti", "∅∅∅": "Amazonka yozgi vaqti", "OESZ": "Sharqiy Yevropa yozgi vaqti", "IST": "Hindiston vaqti", "AEDT": "Sharqiy Avstraliya yozgi vaqti", "HNPMX": "Meksika Tinch okeani standart vaqti", "HNT": "Nyufaundlend standart vaqti", "HKST": "Gonkong yozgi vaqti", "SGT": "Singapur vaqti", "HEPM": "Sen-Pyer va Mikelon yozgi vaqti", "WARST": "Gʻarbiy Argentina yozgi vaqti", "ARST": "Argentina yozgi vaqti", "SAST": "Janubiy Afrika standart vaqti", "GYT": "Gayana vaqti", "WESZ": "G‘arbiy Yevropa yozgi vaqti", "AWDT": "G‘arbiy Avstraliya yozgi vaqti", "HENOMX": "Shimoli-g‘arbiy Meksika yozgi vaqti", "GFT": "Fransuz Gvianasi vaqti", "HAT": "Nyufaundlend yozgi vaqti", "CLT": "Chili standart vaqti", "PDT": "Tinch okeani yozgi vaqti", "CHADT": "Chatem yozgi vaqti", "BT": "Butan vaqti", "MEZ": "Markaziy Yevropa standart vaqti", "HNOG": "G‘arbiy Grenlandiya standart vaqti", "AKST": "Alyaska standart vaqti", "MYT": "Malayziya vaqti", "TMT": "Turkmaniston standart vaqti", "OEZ": "Sharqiy Yevropa standart vaqti", "ACWST": "Markaziy Avstraliya g‘arbiy standart vaqti", "NZDT": "Yangi Zelandiya yozgi vaqti", "WAST": "Gʻarbiy Afrika yozgi vaqti", "PST": "Tinch okeani standart vaqti", "HADT": "Gavayi-aleut yozgi vaqti", "TMST": "Turkmaniston yozgi vaqti", "WITA": "Markaziy Indoneziya vaqti", "WAT": "Gʻarbiy Afrika standart vaqti", "ACWDT": "Markaziy Avstraliya g‘arbiy yozgi vaqti", "WIT": "Sharqiy Indoneziya vaqti", "JST": "Yaponiya standart vaqti", "WART": "Gʻarbiy Argentina standart vaqti", "EST": "Sharqiy Amerika standart vaqti", "BOT": "Boliviya vaqti", "CDT": "Markaziy Amerika yozgi vaqti", "ADT": "Atlantika yozgi vaqti", "EAT": "Sharqiy Afrika vaqti", "HEPMX": "Meksika Tinch okeani yozgi vaqti", "MST": "MST", "AWST": "G‘arbiy Avstraliya standart vaqti", "HNNOMX": "Shimoli-g‘arbiy Meksika standart vaqti", "HEOG": "G‘arbiy Grenlandiya yozgi vaqti", "HEEG": "Sharqiy Grenlandiya yozgi vaqti", "CLST": "Chili yozgi vaqti", "EDT": "Sharqiy Amerika yozgi vaqti", "CAT": "Markaziy Afrika vaqti", "HNPM": "Sen-Pyer va Mikelon standart vaqti", "UYT": "Urugvay standart vaqti", "AST": "Atlantika standart vaqti", "COT": "Kolumbiya standart vaqti", "HAST": "Gavayi-aleut standart vaqti", "NZST": "Yangi Zelandiya standart vaqti", "VET": "Venesuela vaqti", "ACDT": "Markaziy Avstraliya yozgi vaqti", "HNCU": "Kuba standart vaqti", "HECU": "Kuba yozgi vaqti", "MDT": "MDT", "UYST": "Urugvay yozgi vaqti", "LHST": "Lord-Xau standart vaqti"}, } } // Locale returns the current translators string locale func (uz *uz) Locale() string { return uz.locale } // PluralsCardinal returns the list of cardinal plural rules associated with 'uz' func (uz *uz) PluralsCardinal() []locales.PluralRule { return uz.pluralsCardinal } // PluralsOrdinal returns the list of ordinal plural rules associated with 'uz' func (uz *uz) PluralsOrdinal() []locales.PluralRule { return uz.pluralsOrdinal } // PluralsRange returns the list of range plural rules associated with 'uz' func (uz *uz) PluralsRange() []locales.PluralRule { return uz.pluralsRange } // CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'uz' func (uz *uz) CardinalPluralRule(num float64, v uint64) locales.PluralRule { n := math.Abs(num) if n == 1 { return locales.PluralRuleOne } return locales.PluralRuleOther } // OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'uz' func (uz *uz) OrdinalPluralRule(num float64, v uint64) locales.PluralRule { return locales.PluralRuleOther } // RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'uz' func (uz *uz) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule { start := uz.CardinalPluralRule(num1, v1) end := uz.CardinalPluralRule(num2, v2) if start == locales.PluralRuleOne && end == locales.PluralRuleOther { return locales.PluralRuleOther } else if start == locales.PluralRuleOther && end == locales.PluralRuleOne { return locales.PluralRuleOne } return locales.PluralRuleOther } // MonthAbbreviated returns the locales abbreviated month given the 'month' provided func (uz *uz) MonthAbbreviated(month time.Month) string { return uz.monthsAbbreviated[month] } // MonthsAbbreviated returns the locales abbreviated months func (uz *uz) MonthsAbbreviated() []string { return uz.monthsAbbreviated[1:] } // MonthNarrow returns the locales narrow month given the 'month' provided func (uz *uz) MonthNarrow(month time.Month) string { return uz.monthsNarrow[month] } // MonthsNarrow returns the locales narrow months func (uz *uz) MonthsNarrow() []string { return uz.monthsNarrow[1:] } // MonthWide returns the locales wide month given the 'month' provided func (uz *uz) MonthWide(month time.Month) string { return uz.monthsWide[month] } // MonthsWide returns the locales wide months func (uz *uz) MonthsWide() []string { return uz.monthsWide[1:] } // WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided func (uz *uz) WeekdayAbbreviated(weekday time.Weekday) string { return uz.daysAbbreviated[weekday] } // WeekdaysAbbreviated returns the locales abbreviated weekdays func (uz *uz) WeekdaysAbbreviated() []string { return uz.daysAbbreviated } // WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided func (uz *uz) WeekdayNarrow(weekday time.Weekday) string { return uz.daysNarrow[weekday] } // WeekdaysNarrow returns the locales narrow weekdays func (uz *uz) WeekdaysNarrow() []string { return uz.daysNarrow } // WeekdayShort returns the locales short weekday given the 'weekday' provided func (uz *uz) WeekdayShort(weekday time.Weekday) string { return uz.daysShort[weekday] } // WeekdaysShort returns the locales short weekdays func (uz *uz) WeekdaysShort() []string { return uz.daysShort } // WeekdayWide returns the locales wide weekday given the 'weekday' provided func (uz *uz) WeekdayWide(weekday time.Weekday) string { return uz.daysWide[weekday] } // WeekdaysWide returns the locales wide weekdays func (uz *uz) WeekdaysWide() []string { return uz.daysWide } // Decimal returns the decimal point of number func (uz *uz) Decimal() string { return uz.decimal } // Group returns the group of number func (uz *uz) Group() string { return uz.group } // Group returns the minus sign of number func (uz *uz) Minus() string { return uz.minus } // FmtNumber returns 'num' with digits/precision of 'v' for 'uz' and handles both Whole and Real numbers based on 'v' func (uz *uz) FmtNumber(num float64, v uint64) string { s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64) l := len(s) + 2 + 2*len(s[:len(s)-int(v)-1])/3 count := 0 inWhole := v == 0 b := make([]byte, 0, l) for i := len(s) - 1; i >= 0; i-- { if s[i] == '.' { b = append(b, uz.decimal[0]) inWhole = true continue } if inWhole { if count == 3 { for j := len(uz.group) - 1; j >= 0; j-- { b = append(b, uz.group[j]) } count = 1 } else { count++ } } b = append(b, s[i]) } if num < 0 { b = append(b, uz.minus[0]) } // reverse for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 { b[i], b[j] = b[j], b[i] } return string(b) } // FmtPercent returns 'num' with digits/precision of 'v' for 'uz' and handles both Whole and Real numbers based on 'v' // NOTE: 'num' passed into FmtPercent is assumed to be in percent already func (uz *uz) FmtPercent(num float64, v uint64) string { s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64) l := len(s) + 3 b := make([]byte, 0, l) for i := len(s) - 1; i >= 0; i-- { if s[i] == '.' { b = append(b, uz.decimal[0]) continue } b = append(b, s[i]) } if num < 0 { b = append(b, uz.minus[0]) } // reverse for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 { b[i], b[j] = b[j], b[i] } b = append(b, uz.percent...) return string(b) } // FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'uz' func (uz *uz) FmtCurrency(num float64, v uint64, currency currency.Type) string { s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64) symbol := uz.currencies[currency] l := len(s) + len(symbol) + 4 + 2*len(s[:len(s)-int(v)-1])/3 count := 0 inWhole := v == 0 b := make([]byte, 0, l) for i := len(s) - 1; i >= 0; i-- { if s[i] == '.' { b = append(b, uz.decimal[0]) inWhole = true continue } if inWhole { if count == 3 { for j := len(uz.group) - 1; j >= 0; j-- { b = append(b, uz.group[j]) } count = 1 } else { count++ } } b = append(b, s[i]) } if num < 0 { b = append(b, uz.minus[0]) } // reverse for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 { b[i], b[j] = b[j], b[i] } if int(v) < 2 { if v == 0 { b = append(b, uz.decimal...) } for i := 0; i < 2-int(v); i++ { b = append(b, '0') } } b = append(b, uz.currencyPositiveSuffix...) b = append(b, symbol...) return string(b) } // FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'uz' // in accounting notation. func (uz *uz) FmtAccounting(num float64, v uint64, currency currency.Type) string { s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64) symbol := uz.currencies[currency] l := len(s) + len(symbol) + 4 + 2*len(s[:len(s)-int(v)-1])/3 count := 0 inWhole := v == 0 b := make([]byte, 0, l) for i := len(s) - 1; i >= 0; i-- { if s[i] == '.' { b = append(b, uz.decimal[0]) inWhole = true continue } if inWhole { if count == 3 { for j := len(uz.group) - 1; j >= 0; j-- { b = append(b, uz.group[j]) } count = 1 } else { count++ } } b = append(b, s[i]) } if num < 0 { b = append(b, uz.minus[0]) } // reverse for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 { b[i], b[j] = b[j], b[i] } if int(v) < 2 { if v == 0 { b = append(b, uz.decimal...) } for i := 0; i < 2-int(v); i++ { b = append(b, '0') } } if num < 0 { b = append(b, uz.currencyNegativeSuffix...) b = append(b, symbol...) } else { b = append(b, uz.currencyPositiveSuffix...) b = append(b, symbol...) } return string(b) } // FmtDateShort returns the short date representation of 't' for 'uz' func (uz *uz) FmtDateShort(t time.Time) string { b := make([]byte, 0, 32) if t.Day() < 10 { b = append(b, '0') } b = strconv.AppendInt(b, int64(t.Day()), 10) b = append(b, []byte{0x2f}...) if t.Month() < 10 { b = append(b, '0') } b = strconv.AppendInt(b, int64(t.Month()), 10) b = append(b, []byte{0x2f}...) if t.Year() > 9 { b = append(b, strconv.Itoa(t.Year())[2:]...) } else { b = append(b, strconv.Itoa(t.Year())[1:]...) } return string(b) } // FmtDateMedium returns the medium date representation of 't' for 'uz' func (uz *uz) FmtDateMedium(t time.Time) string { b := make([]byte, 0, 32) b = strconv.AppendInt(b, int64(t.Day()), 10) b = append(b, []byte{0x2d}...) b = append(b, uz.monthsAbbreviated[t.Month()]...) b = append(b, []byte{0x2c, 0x20}...) if t.Year() > 0 { b = strconv.AppendInt(b, int64(t.Year()), 10) } else { b = strconv.AppendInt(b, int64(-t.Year()), 10) } return string(b) } // FmtDateLong returns the long date representation of 't' for 'uz' func (uz *uz) FmtDateLong(t time.Time) string { b := make([]byte, 0, 32) b = strconv.AppendInt(b, int64(t.Day()), 10) b = append(b, []byte{0x2d}...) b = append(b, uz.monthsWide[t.Month()]...) b = append(b, []byte{0x2c, 0x20}...) if t.Year() > 0 { b = strconv.AppendInt(b, int64(t.Year()), 10) } else { b = strconv.AppendInt(b, int64(-t.Year()), 10) } return string(b) } // FmtDateFull returns the full date representation of 't' for 'uz' func (uz *uz) FmtDateFull(t time.Time) string { b := make([]byte, 0, 32) b = append(b, uz.daysWide[t.Weekday()]...) b = append(b, []byte{0x2c, 0x20}...) b = strconv.AppendInt(b, int64(t.Day()), 10) b = append(b, []byte{0x2d}...) b = append(b, uz.monthsWide[t.Month()]...) b = append(b, []byte{0x2c, 0x20}...) if t.Year() > 0 { b = strconv.AppendInt(b, int64(t.Year()), 10) } else { b = strconv.AppendInt(b, int64(-t.Year()), 10) } return string(b) } // FmtTimeShort returns the short time representation of 't' for 'uz' func (uz *uz) FmtTimeShort(t time.Time) string { b := make([]byte, 0, 32) if t.Hour() < 10 { b = append(b, '0') } b = strconv.AppendInt(b, int64(t.Hour()), 10) b = append(b, uz.timeSeparator...) if t.Minute() < 10 { b = append(b, '0') } b = strconv.AppendInt(b, int64(t.Minute()), 10) return string(b) } // FmtTimeMedium returns the medium time representation of 't' for 'uz' func (uz *uz) FmtTimeMedium(t time.Time) string { b := make([]byte, 0, 32) if t.Hour() < 10 { b = append(b, '0') } b = strconv.AppendInt(b, int64(t.Hour()), 10) b = append(b, uz.timeSeparator...) if t.Minute() < 10 { b = append(b, '0') } b = strconv.AppendInt(b, int64(t.Minute()), 10) b = append(b, uz.timeSeparator...) if t.Second() < 10 { b = append(b, '0') } b = strconv.AppendInt(b, int64(t.Second()), 10) return string(b) } // FmtTimeLong returns the long time representation of 't' for 'uz' func (uz *uz) FmtTimeLong(t time.Time) string { b := make([]byte, 0, 32) b = strconv.AppendInt(b, int64(t.Hour()), 10) b = append(b, uz.timeSeparator...) if t.Minute() < 10 { b = append(b, '0') } b = strconv.AppendInt(b, int64(t.Minute()), 10) b = append(b, uz.timeSeparator...) if t.Second() < 10 { b = append(b, '0') } b = strconv.AppendInt(b, int64(t.Second()), 10) b = append(b, []byte{0x20, 0x28}...) tz, _ := t.Zone() b = append(b, tz...) b = append(b, []byte{0x29}...) return string(b) } // FmtTimeFull returns the full time representation of 't' for 'uz' func (uz *uz) FmtTimeFull(t time.Time) string { b := make([]byte, 0, 32) b = strconv.AppendInt(b, int64(t.Hour()), 10) b = append(b, uz.timeSeparator...) if t.Minute() < 10 { b = append(b, '0') } b = strconv.AppendInt(b, int64(t.Minute()), 10) b = append(b, uz.timeSeparator...) if t.Second() < 10 { b = append(b, '0') } b = strconv.AppendInt(b, int64(t.Second()), 10) b = append(b, []byte{0x20, 0x28}...) tz, _ := t.Zone() if btz, ok := uz.timezones[tz]; ok { b = append(b, btz...) } else { b = append(b, tz...) } b = append(b, []byte{0x29}...) return string(b) }