1package chr 2 3import ( 4 "math" 5 "strconv" 6 "time" 7 8 "github.com/gohugoio/locales" 9 "github.com/gohugoio/locales/currency" 10) 11 12type chr 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 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// New returns a new instance of translator for the 'chr' locale 45func New() locales.Translator { 46 return &chr{ 47 locale: "chr", 48 pluralsCardinal: []locales.PluralRule{2, 6}, 49 pluralsOrdinal: nil, 50 pluralsRange: nil, 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", "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", "CNH", "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", "MRU", "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", "STN", "SUR", "SVC", "SYP", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "NT$", "TZS", "UAH", "UAK", "UGS", "UGX", "$", "USN", "USS", "UYI", "UYP", "UYU", "UYW", "UZS", "VEB", "VEF", "VES", "₫", "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"}, 59 currencyNegativePrefix: "(", 60 currencyNegativeSuffix: ")", 61 monthsAbbreviated: []string{"", "ᎤᏃ", "ᎧᎦ", "ᎠᏅ", "ᎧᏬ", "ᎠᏂ", "ᏕᎭ", "ᎫᏰ", "ᎦᎶ", "ᏚᎵ", "ᏚᏂ", "ᏅᏓ", "ᎥᏍ"}, 62 monthsNarrow: []string{"", "Ꭴ", "Ꭷ", "Ꭰ", "Ꭷ", "Ꭰ", "Ꮥ", "Ꭻ", "Ꭶ", "Ꮪ", "Ꮪ", "Ꮕ", "Ꭵ"}, 63 monthsWide: []string{"", "ᎤᏃᎸᏔᏅ", "ᎧᎦᎵ", "ᎠᏅᏱ", "ᎧᏬᏂ", "ᎠᏂᏍᎬᏘ", "ᏕᎭᎷᏱ", "ᎫᏰᏉᏂ", "ᎦᎶᏂ", "ᏚᎵᏍᏗ", "ᏚᏂᏅᏗ", "ᏅᏓᏕᏆ", "ᎥᏍᎩᏱ"}, 64 daysAbbreviated: []string{"ᏆᏍᎬ", "ᏉᏅᎯ", "ᏔᎵᏁ", "ᏦᎢᏁ", "ᏅᎩᏁ", "ᏧᎾᎩ", "ᏈᏕᎾ"}, 65 daysNarrow: []string{"Ꮖ", "Ꮙ", "Ꮤ", "Ꮶ", "Ꮕ", "Ꮷ", "Ꭴ"}, 66 daysShort: []string{"ᏍᎬ", "ᏅᎯ", "ᏔᎵ", "ᏦᎢ", "ᏅᎩ", "ᏧᎾ", "ᏕᎾ"}, 67 daysWide: []string{"ᎤᎾᏙᏓᏆᏍᎬ", "ᎤᎾᏙᏓᏉᏅᎯ", "ᏔᎵᏁᎢᎦ", "ᏦᎢᏁᎢᎦ", "ᏅᎩᏁᎢᎦ", "ᏧᎾᎩᎶᏍᏗ", "ᎤᎾᏙᏓᏈᏕᎾ"}, 68 periodsAbbreviated: []string{"ᏌᎾᎴ", "ᏒᎯᏱᎢ"}, 69 periodsNarrow: []string{"Ꮜ", "Ꮢ"}, 70 periodsWide: []string{"ᏌᎾᎴ", "ᏒᎯᏱᎢᏗᏢ"}, 71 erasAbbreviated: []string{"BC", "AD"}, 72 erasNarrow: []string{"", ""}, 73 erasWide: []string{"ᏧᏓᎷᎸ ᎤᎷᎯᏍᏗ ᎦᎶᏁᏛ", "ᎠᏃ ᏙᎻᏂ"}, 74 timezones: map[string]string{"ACDT": "ᎠᏰᏟ ᎡᎳᏗᏜ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "ACST": "ᎠᏰᏟ ᎡᎳᏗᏜ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "ACWDT": "ᎠᏰᏟ ᎡᎳᏗᏜ ᏭᏕᎵᎬ ᏗᏜ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "ACWST": "ᎠᏰᏟ ᎡᎳᏗᏜ ᏭᏕᎵᎬ ᏗᏜ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "ADT": "ᏗᎧᎸᎬ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "AEDT": "ᎡᎳᏗᏜ ᏗᎧᎸᎬ ᏗᏜ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "AEST": "ᎡᎳᏗᏜ ᏗᎧᎸᎬ ᏗᏜ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "AKDT": "ᎠᎳᏍᎦ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "AKST": "ᎠᎳᏍᎦ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "ARST": "ᎠᏥᏂᏘᏂᎠ ᎪᎩ ᎠᏟᎢᎵᏒ", "ART": "ᎠᏥᏂᏘᏂᎠ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "AST": "ᏗᎧᎸᎬ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "AWDT": "ᎡᎳᏗᏜ ᏭᏕᎵᎬ ᏗᏜ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "AWST": "ᎡᎳᏗᏜ ᏭᏕᎵᎬ ᏗᏜ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "BOT": "ᏉᎵᏫᎠ ᎠᏟᎢᎵᏒ", "BT": "ᏊᏔᏂ ᎠᏟᎢᎵᏒ", "CAT": "ᎠᏰᏟ ᎬᎿᎨᏍᏛ ᎠᏟᎢᎵᏒ", "CDT": "ᎠᏰᏟ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "CHADT": "ᏣᏝᎻ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "CHAST": "ᏣᏝᎻ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "CLST": "ᏥᎵ ᎪᎩ ᎠᏟᎢᎵᏒ", "CLT": "ᏥᎵ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "COST": "ᎪᎸᎻᏈᎢᎠ ᎪᎩ ᎠᏟᎢᎵᏒ", "COT": "ᎪᎸᎻᏈᎢᎠ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "CST": "ᎠᏰᏟ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "ChST": "ᏣᎼᎶ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "EAT": "ᏗᎧᎸᎬ ᎬᎿᎨᏍᏛ ᎠᏟᎢᎵᏒ", "ECT": "ᎡᏆᏙᎵ ᎠᏟᎢᎵᏒ", "EDT": "ᏗᎧᎸᎬ ᏗᏜ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "EST": "ᏗᎧᎸᎬ ᏗᏜ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "GFT": "ᎠᏂᎦᎸ ᏈᏯᎾ ᎠᏟᎢᎵᏒ", "GMT": "ᎢᏤ ᎢᏳᏍᏗ ᎠᏟᎢᎵᏒ", "GST": "ᎡᏉᏄᎸᏗ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "GYT": "ᎦᏯᎾ ᎠᏟᎢᎵᏒ", "HADT": "ᎭᏩᏱ-ᎠᎵᏳᏏᎠᏂ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "HAST": "ᎭᏩᏱ-ᎠᎵᏳᏏᎠᏂ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "HAT": "ᎢᏤᎤᏂᏩᏛᏓᎦᏙᎯ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "HECU": "ᎫᏆ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "HEEG": "ᏗᎧᎸᎬ ᎢᏤᏍᏛᏱ ᎪᎩ ᎠᏟᎢᎵᏒ", "HENOMX": "ᏧᏴᏢ ᏭᏕᎵᎬ ᎠᏂᏍᏆᏂ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "HEOG": "ᏭᏕᎵᎬ ᎢᏤᏍᏛᏱ ᎪᎩ ᎠᏟᎢᎵᏒ", "HEPM": "ᎤᏓᏅᏘ ᏈᏰ & ᎻᏇᎶᏂ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "HEPMX": "ᎠᏂᏍᏆᏂ ᏭᏕᎵᎬ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "HKST": "ᎰᏂᎩ ᎪᏂᎩ ᎪᎩ ᎠᏟᎢᎵᏒ", "HKT": "ᎰᏂᎩ ᎪᏂᎩ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "HNCU": "ᎫᏆ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "HNEG": "ᏗᎧᎸᎬ ᎢᏤᏍᏛᏱ ᎠᏟᎶᏍᏗ ᎠᎵᎢᎵᏒ", "HNNOMX": "ᏧᏴᏢ ᏭᏕᎵᎬ ᎠᏂᏍᏆᏂ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "HNOG": "ᏭᏕᎵᎬ ᎢᏤᏍᏛᏱ ᎠᏟᎶᏍᏗ ᎠᎵᎢᎵᏒ", "HNPM": "ᎤᏓᏅᏘ ᏈᏰ & ᎻᏇᎶᏂ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "HNPMX": "ᎠᏂᏍᏆᏂ ᏭᏕᎵᎬ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "HNT": "ᎢᏤᎤᏂᏩᏛᏓᎦᏙᎯ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "IST": "ᎢᏂᏗᎢᎠ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "JDT": "ᏣᏩᏂᏏ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "JST": "ᏣᏩᏂᏏ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "LHDT": "ᎤᎬᏫᏳᎯ ᎭᏫ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "LHST": "ᎤᎬᏫᏳᎯ ᎭᏫ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "MDT": "ᎣᏓᎸ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "MESZ": "ᎠᏰᏟ ᏳᎳᏈ ᎪᎩ ᎠᏟᎢᎵᏒ", "MEZ": "ᎠᏰᏟ ᏳᎳᏈ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "MST": "ᎣᏓᎸ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "MYT": "ᎹᎴᏏᎢᎠ ᎠᏟᎢᎵᏒ", "NZDT": "ᎢᏤ ᏏᎢᎴᏂᏗ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "NZST": "ᎢᏤ ᏏᎢᎴᏂᏗ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "OESZ": "ᏗᎧᎸᎬ ᏗᏜ ᏳᎳᏈ ᎪᎩ ᎠᏟᎢᎵᏒ", "OEZ": "ᏗᎧᎸᎬ ᏗᏜ ᏳᎳᏈ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "PDT": "ᏭᏕᎵᎬ ᎪᎯ ᎢᎦ ᎠᏟᎢᎵᏒ", "PST": "ᏭᏕᎵᎬ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "SAST": "ᏧᎦᎾᏮ ᎬᎿᎨᏍᏛ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "SGT": "ᏏᏂᎦᏉᎵ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "SRT": "ᏒᎵᎾᎻ ᎠᏟᎢᎵᏒ", "TMST": "ᏛᎵᎩᎺᏂᏍᏔᏂ ᎪᎩ ᎠᏟᎢᎵᏒ", "TMT": "ᏛᎵᎩᎺᏂᏍᏔᏂ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "UYST": "ᏳᎷᏇ ᎪᎩ ᎠᏟᎢᎵᏒ", "UYT": "ᏳᎷᏇ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "VET": "ᏪᏁᏑᏪᎳ ᎠᏟᎢᎵᏒ", "WARST": "ᏭᏕᎵᎬ ᏗᏜ ᎠᏥᏂᏘᏂᎠ ᎪᎩ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "WART": "ᏭᏕᎵᎬ ᏗᏜ ᎠᏥᏂᏘᏂᎠ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "WAST": "ᏭᏕᎵᎬ ᎬᎿᎨᏍᏛ ᎪᎩ ᎠᏟᎢᎵᏒ", "WAT": "ᏭᏕᎵᎬ ᎬᎿᎨᏍᏛ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "WESZ": "ᏭᏕᎵᎬ ᏗᏜ ᏳᎳᏈ ᎪᎩ ᎠᏟᎢᎵᏒ", "WEZ": "ᏭᏕᎵᎬ ᏗᏜ ᏳᎳᏈ ᎠᏟᎶᏍᏗ ᎠᏟᎢᎵᏒ", "WIB": "ᏭᏕᎵᎬ ᏗᏜ ᎢᏂᏙᏂᏍᏯ ᎠᏟᎢᎵᏒ", "WIT": "ᏗᎧᎸᎬ ᏗᏜ ᎢᏂᏙᏂᏍᏯ ᎠᏟᎢᎵᏒ", "WITA": "ᎠᏰᏟ ᎢᏂᏙᏂᏍᏯ ᎠᏟᎢᎵᏒ", "∅∅∅": "ᎠᏐᎴᏏ ᎪᎩ ᎠᏟᎢᎵᏒ"}, 75 } 76} 77 78// Locale returns the current translators string locale 79func (chr *chr) Locale() string { 80 return chr.locale 81} 82 83// PluralsCardinal returns the list of cardinal plural rules associated with 'chr' 84func (chr *chr) PluralsCardinal() []locales.PluralRule { 85 return chr.pluralsCardinal 86} 87 88// PluralsOrdinal returns the list of ordinal plural rules associated with 'chr' 89func (chr *chr) PluralsOrdinal() []locales.PluralRule { 90 return chr.pluralsOrdinal 91} 92 93// PluralsRange returns the list of range plural rules associated with 'chr' 94func (chr *chr) PluralsRange() []locales.PluralRule { 95 return chr.pluralsRange 96} 97 98// CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'chr' 99func (chr *chr) CardinalPluralRule(num float64, v uint64) locales.PluralRule { 100 101 n := math.Abs(num) 102 103 if n == 1 { 104 return locales.PluralRuleOne 105 } 106 107 return locales.PluralRuleOther 108} 109 110// OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'chr' 111func (chr *chr) OrdinalPluralRule(num float64, v uint64) locales.PluralRule { 112 return locales.PluralRuleUnknown 113} 114 115// RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'chr' 116func (chr *chr) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule { 117 return locales.PluralRuleUnknown 118} 119 120// MonthAbbreviated returns the locales abbreviated month given the 'month' provided 121func (chr *chr) MonthAbbreviated(month time.Month) string { 122 return chr.monthsAbbreviated[month] 123} 124 125// MonthsAbbreviated returns the locales abbreviated months 126func (chr *chr) MonthsAbbreviated() []string { 127 return chr.monthsAbbreviated[1:] 128} 129 130// MonthNarrow returns the locales narrow month given the 'month' provided 131func (chr *chr) MonthNarrow(month time.Month) string { 132 return chr.monthsNarrow[month] 133} 134 135// MonthsNarrow returns the locales narrow months 136func (chr *chr) MonthsNarrow() []string { 137 return chr.monthsNarrow[1:] 138} 139 140// MonthWide returns the locales wide month given the 'month' provided 141func (chr *chr) MonthWide(month time.Month) string { 142 return chr.monthsWide[month] 143} 144 145// MonthsWide returns the locales wide months 146func (chr *chr) MonthsWide() []string { 147 return chr.monthsWide[1:] 148} 149 150// WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided 151func (chr *chr) WeekdayAbbreviated(weekday time.Weekday) string { 152 return chr.daysAbbreviated[weekday] 153} 154 155// WeekdaysAbbreviated returns the locales abbreviated weekdays 156func (chr *chr) WeekdaysAbbreviated() []string { 157 return chr.daysAbbreviated 158} 159 160// WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided 161func (chr *chr) WeekdayNarrow(weekday time.Weekday) string { 162 return chr.daysNarrow[weekday] 163} 164 165// WeekdaysNarrow returns the locales narrow weekdays 166func (chr *chr) WeekdaysNarrow() []string { 167 return chr.daysNarrow 168} 169 170// WeekdayShort returns the locales short weekday given the 'weekday' provided 171func (chr *chr) WeekdayShort(weekday time.Weekday) string { 172 return chr.daysShort[weekday] 173} 174 175// WeekdaysShort returns the locales short weekdays 176func (chr *chr) WeekdaysShort() []string { 177 return chr.daysShort 178} 179 180// WeekdayWide returns the locales wide weekday given the 'weekday' provided 181func (chr *chr) WeekdayWide(weekday time.Weekday) string { 182 return chr.daysWide[weekday] 183} 184 185// WeekdaysWide returns the locales wide weekdays 186func (chr *chr) WeekdaysWide() []string { 187 return chr.daysWide 188} 189 190// Decimal returns the decimal point of number 191func (chr *chr) Decimal() string { 192 return chr.decimal 193} 194 195// Group returns the group of number 196func (chr *chr) Group() string { 197 return chr.group 198} 199 200// Group returns the minus sign of number 201func (chr *chr) Minus() string { 202 return chr.minus 203} 204 205// FmtNumber returns 'num' with digits/precision of 'v' for 'chr' and handles both Whole and Real numbers based on 'v' 206func (chr *chr) FmtNumber(num float64, v uint64) string { 207 208 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64) 209 l := len(s) + 2 + 1*len(s[:len(s)-int(v)-1])/3 210 count := 0 211 inWhole := v == 0 212 b := make([]byte, 0, l) 213 214 for i := len(s) - 1; i >= 0; i-- { 215 216 if s[i] == '.' { 217 b = append(b, chr.decimal[0]) 218 inWhole = true 219 continue 220 } 221 222 if inWhole { 223 if count == 3 { 224 b = append(b, chr.group[0]) 225 count = 1 226 } else { 227 count++ 228 } 229 } 230 231 b = append(b, s[i]) 232 } 233 234 if num < 0 { 235 b = append(b, chr.minus[0]) 236 } 237 238 // reverse 239 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 { 240 b[i], b[j] = b[j], b[i] 241 } 242 243 return string(b) 244} 245 246// FmtPercent returns 'num' with digits/precision of 'v' for 'chr' and handles both Whole and Real numbers based on 'v' 247// NOTE: 'num' passed into FmtPercent is assumed to be in percent already 248func (chr *chr) FmtPercent(num float64, v uint64) string { 249 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64) 250 l := len(s) + 3 251 b := make([]byte, 0, l) 252 253 for i := len(s) - 1; i >= 0; i-- { 254 255 if s[i] == '.' { 256 b = append(b, chr.decimal[0]) 257 continue 258 } 259 260 b = append(b, s[i]) 261 } 262 263 if num < 0 { 264 b = append(b, chr.minus[0]) 265 } 266 267 // reverse 268 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 { 269 b[i], b[j] = b[j], b[i] 270 } 271 272 b = append(b, chr.percent...) 273 274 return string(b) 275} 276 277// FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'chr' 278func (chr *chr) FmtCurrency(num float64, v uint64, currency currency.Type) string { 279 280 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64) 281 symbol := chr.currencies[currency] 282 l := len(s) + len(symbol) + 2 + 1*len(s[:len(s)-int(v)-1])/3 283 count := 0 284 inWhole := v == 0 285 b := make([]byte, 0, l) 286 287 for i := len(s) - 1; i >= 0; i-- { 288 289 if s[i] == '.' { 290 b = append(b, chr.decimal[0]) 291 inWhole = true 292 continue 293 } 294 295 if inWhole { 296 if count == 3 { 297 b = append(b, chr.group[0]) 298 count = 1 299 } else { 300 count++ 301 } 302 } 303 304 b = append(b, s[i]) 305 } 306 307 for j := len(symbol) - 1; j >= 0; j-- { 308 b = append(b, symbol[j]) 309 } 310 311 if num < 0 { 312 b = append(b, chr.minus[0]) 313 } 314 315 // reverse 316 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 { 317 b[i], b[j] = b[j], b[i] 318 } 319 320 if int(v) < 2 { 321 322 if v == 0 { 323 b = append(b, chr.decimal...) 324 } 325 326 for i := 0; i < 2-int(v); i++ { 327 b = append(b, '0') 328 } 329 } 330 331 return string(b) 332} 333 334// FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'chr' 335// in accounting notation. 336func (chr *chr) FmtAccounting(num float64, v uint64, currency currency.Type) string { 337 338 s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64) 339 symbol := chr.currencies[currency] 340 l := len(s) + len(symbol) + 4 + 1*len(s[:len(s)-int(v)-1])/3 341 count := 0 342 inWhole := v == 0 343 b := make([]byte, 0, l) 344 345 for i := len(s) - 1; i >= 0; i-- { 346 347 if s[i] == '.' { 348 b = append(b, chr.decimal[0]) 349 inWhole = true 350 continue 351 } 352 353 if inWhole { 354 if count == 3 { 355 b = append(b, chr.group[0]) 356 count = 1 357 } else { 358 count++ 359 } 360 } 361 362 b = append(b, s[i]) 363 } 364 365 if num < 0 { 366 367 for j := len(symbol) - 1; j >= 0; j-- { 368 b = append(b, symbol[j]) 369 } 370 371 b = append(b, chr.currencyNegativePrefix[0]) 372 373 } else { 374 375 for j := len(symbol) - 1; j >= 0; j-- { 376 b = append(b, symbol[j]) 377 } 378 379 } 380 381 // reverse 382 for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 { 383 b[i], b[j] = b[j], b[i] 384 } 385 386 if int(v) < 2 { 387 388 if v == 0 { 389 b = append(b, chr.decimal...) 390 } 391 392 for i := 0; i < 2-int(v); i++ { 393 b = append(b, '0') 394 } 395 } 396 397 if num < 0 { 398 b = append(b, chr.currencyNegativeSuffix...) 399 } 400 401 return string(b) 402} 403 404// FmtDateShort returns the short date representation of 't' for 'chr' 405func (chr *chr) FmtDateShort(t time.Time) string { 406 407 b := make([]byte, 0, 32) 408 409 b = strconv.AppendInt(b, int64(t.Month()), 10) 410 b = append(b, []byte{0x2f}...) 411 b = strconv.AppendInt(b, int64(t.Day()), 10) 412 b = append(b, []byte{0x2f}...) 413 414 if t.Year() > 9 { 415 b = append(b, strconv.Itoa(t.Year())[2:]...) 416 } else { 417 b = append(b, strconv.Itoa(t.Year())[1:]...) 418 } 419 420 return string(b) 421} 422 423// FmtDateMedium returns the medium date representation of 't' for 'chr' 424func (chr *chr) FmtDateMedium(t time.Time) string { 425 426 b := make([]byte, 0, 32) 427 428 b = append(b, chr.monthsAbbreviated[t.Month()]...) 429 b = append(b, []byte{0x20}...) 430 b = strconv.AppendInt(b, int64(t.Day()), 10) 431 b = append(b, []byte{0x2c, 0x20}...) 432 433 if t.Year() > 0 { 434 b = strconv.AppendInt(b, int64(t.Year()), 10) 435 } else { 436 b = strconv.AppendInt(b, int64(-t.Year()), 10) 437 } 438 439 return string(b) 440} 441 442// FmtDateLong returns the long date representation of 't' for 'chr' 443func (chr *chr) FmtDateLong(t time.Time) string { 444 445 b := make([]byte, 0, 32) 446 447 b = append(b, chr.monthsWide[t.Month()]...) 448 b = append(b, []byte{0x20}...) 449 b = strconv.AppendInt(b, int64(t.Day()), 10) 450 b = append(b, []byte{0x2c, 0x20}...) 451 452 if t.Year() > 0 { 453 b = strconv.AppendInt(b, int64(t.Year()), 10) 454 } else { 455 b = strconv.AppendInt(b, int64(-t.Year()), 10) 456 } 457 458 return string(b) 459} 460 461// FmtDateFull returns the full date representation of 't' for 'chr' 462func (chr *chr) FmtDateFull(t time.Time) string { 463 464 b := make([]byte, 0, 32) 465 466 b = append(b, chr.daysWide[t.Weekday()]...) 467 b = append(b, []byte{0x2c, 0x20}...) 468 b = append(b, chr.monthsWide[t.Month()]...) 469 b = append(b, []byte{0x20}...) 470 b = strconv.AppendInt(b, int64(t.Day()), 10) 471 b = append(b, []byte{0x2c, 0x20}...) 472 473 if t.Year() > 0 { 474 b = strconv.AppendInt(b, int64(t.Year()), 10) 475 } else { 476 b = strconv.AppendInt(b, int64(-t.Year()), 10) 477 } 478 479 return string(b) 480} 481 482// FmtTimeShort returns the short time representation of 't' for 'chr' 483func (chr *chr) FmtTimeShort(t time.Time) string { 484 485 b := make([]byte, 0, 32) 486 487 h := t.Hour() 488 489 if h > 12 { 490 h -= 12 491 } 492 493 b = strconv.AppendInt(b, int64(h), 10) 494 b = append(b, chr.timeSeparator...) 495 496 if t.Minute() < 10 { 497 b = append(b, '0') 498 } 499 500 b = strconv.AppendInt(b, int64(t.Minute()), 10) 501 b = append(b, []byte{0x20}...) 502 503 if t.Hour() < 12 { 504 b = append(b, chr.periodsAbbreviated[0]...) 505 } else { 506 b = append(b, chr.periodsAbbreviated[1]...) 507 } 508 509 return string(b) 510} 511 512// FmtTimeMedium returns the medium time representation of 't' for 'chr' 513func (chr *chr) FmtTimeMedium(t time.Time) string { 514 515 b := make([]byte, 0, 32) 516 517 h := t.Hour() 518 519 if h > 12 { 520 h -= 12 521 } 522 523 b = strconv.AppendInt(b, int64(h), 10) 524 b = append(b, chr.timeSeparator...) 525 526 if t.Minute() < 10 { 527 b = append(b, '0') 528 } 529 530 b = strconv.AppendInt(b, int64(t.Minute()), 10) 531 b = append(b, chr.timeSeparator...) 532 533 if t.Second() < 10 { 534 b = append(b, '0') 535 } 536 537 b = strconv.AppendInt(b, int64(t.Second()), 10) 538 b = append(b, []byte{0x20}...) 539 540 if t.Hour() < 12 { 541 b = append(b, chr.periodsAbbreviated[0]...) 542 } else { 543 b = append(b, chr.periodsAbbreviated[1]...) 544 } 545 546 return string(b) 547} 548 549// FmtTimeLong returns the long time representation of 't' for 'chr' 550func (chr *chr) FmtTimeLong(t time.Time) string { 551 552 b := make([]byte, 0, 32) 553 554 h := t.Hour() 555 556 if h > 12 { 557 h -= 12 558 } 559 560 b = strconv.AppendInt(b, int64(h), 10) 561 b = append(b, chr.timeSeparator...) 562 563 if t.Minute() < 10 { 564 b = append(b, '0') 565 } 566 567 b = strconv.AppendInt(b, int64(t.Minute()), 10) 568 b = append(b, chr.timeSeparator...) 569 570 if t.Second() < 10 { 571 b = append(b, '0') 572 } 573 574 b = strconv.AppendInt(b, int64(t.Second()), 10) 575 b = append(b, []byte{0x20}...) 576 577 if t.Hour() < 12 { 578 b = append(b, chr.periodsAbbreviated[0]...) 579 } else { 580 b = append(b, chr.periodsAbbreviated[1]...) 581 } 582 583 b = append(b, []byte{0x20}...) 584 585 tz, _ := t.Zone() 586 b = append(b, tz...) 587 588 return string(b) 589} 590 591// FmtTimeFull returns the full time representation of 't' for 'chr' 592func (chr *chr) FmtTimeFull(t time.Time) string { 593 594 b := make([]byte, 0, 32) 595 596 h := t.Hour() 597 598 if h > 12 { 599 h -= 12 600 } 601 602 b = strconv.AppendInt(b, int64(h), 10) 603 b = append(b, chr.timeSeparator...) 604 605 if t.Minute() < 10 { 606 b = append(b, '0') 607 } 608 609 b = strconv.AppendInt(b, int64(t.Minute()), 10) 610 b = append(b, chr.timeSeparator...) 611 612 if t.Second() < 10 { 613 b = append(b, '0') 614 } 615 616 b = strconv.AppendInt(b, int64(t.Second()), 10) 617 b = append(b, []byte{0x20}...) 618 619 if t.Hour() < 12 { 620 b = append(b, chr.periodsAbbreviated[0]...) 621 } else { 622 b = append(b, chr.periodsAbbreviated[1]...) 623 } 624 625 b = append(b, []byte{0x20}...) 626 627 tz, _ := t.Zone() 628 629 if btz, ok := chr.timezones[tz]; ok { 630 b = append(b, btz...) 631 } else { 632 b = append(b, tz...) 633 } 634 635 return string(b) 636} 637