chr.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604
  1. package chr
  2. import (
  3. "math"
  4. "strconv"
  5. "time"
  6. "github.com/go-playground/locales"
  7. "github.com/go-playground/locales/currency"
  8. )
  9. type chr struct {
  10. locale string
  11. pluralsCardinal []locales.PluralRule
  12. pluralsOrdinal []locales.PluralRule
  13. pluralsRange []locales.PluralRule
  14. decimal string
  15. group string
  16. minus string
  17. percent string
  18. perMille string
  19. timeSeparator string
  20. inifinity string
  21. currencies []string // idx = enum of currency code
  22. currencyNegativePrefix string
  23. currencyNegativeSuffix string
  24. monthsAbbreviated []string
  25. monthsNarrow []string
  26. monthsWide []string
  27. daysAbbreviated []string
  28. daysNarrow []string
  29. daysShort []string
  30. daysWide []string
  31. periodsAbbreviated []string
  32. periodsNarrow []string
  33. periodsShort []string
  34. periodsWide []string
  35. erasAbbreviated []string
  36. erasNarrow []string
  37. erasWide []string
  38. timezones map[string]string
  39. }
  40. // New returns a new instance of translator for the 'chr' locale
  41. func New() locales.Translator {
  42. return &chr{
  43. locale: "chr",
  44. pluralsCardinal: []locales.PluralRule{2, 6},
  45. pluralsOrdinal: nil,
  46. pluralsRange: nil,
  47. decimal: ".",
  48. group: ",",
  49. minus: "-",
  50. percent: "%",
  51. perMille: "‰",
  52. timeSeparator: ":",
  53. inifinity: "∞",
  54. 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 ", "BYR ", "BZD ", "CAD ", "CDF ", "CHE ", "CHF ", "CHW ", "CLE ", "CLF ", "CLP ", "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 ", "SUR ", "SVC ", "SYP ", "SZL ", "THB ", "TJR ", "TJS ", "TMM ", "TMT ", "TND ", "TOP ", "TPE ", "TRL ", "TRY ", "TTD ", "TWD ", "TZS ", "UAH ", "UAK ", "UGS ", "UGX ", "$", "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 "},
  55. currencyNegativePrefix: "(",
  56. currencyNegativeSuffix: ")",
  57. monthsAbbreviated: []string{"", "ᎤᏃ", "ᎧᎦ", "ᎠᏅ", "ᎧᏬ", "ᎠᏂ", "ᏕᎭ", "ᎫᏰ", "ᎦᎶ", "ᏚᎵ", "ᏚᏂ", "ᏅᏓ", "ᎥᏍ"},
  58. monthsNarrow: []string{"", "Ꭴ", "Ꭷ", "Ꭰ", "Ꭷ", "Ꭰ", "Ꮥ", "Ꭻ", "Ꭶ", "Ꮪ", "Ꮪ", "Ꮕ", "Ꭵ"},
  59. monthsWide: []string{"", "ᎤᏃᎸᏔᏅ", "ᎧᎦᎵ", "ᎠᏅᏱ", "ᎧᏬᏂ", "ᎠᏂᏍᎬᏘ", "ᏕᎭᎷᏱ", "ᎫᏰᏉᏂ", "ᎦᎶᏂ", "ᏚᎵᏍᏗ", "ᏚᏂᏅᏗ", "ᏅᏓᏕᏆ", "ᎥᏍᎩᏱ"},
  60. daysAbbreviated: []string{"ᏆᏍᎬ", "ᏉᏅᎯ", "ᏔᎵᏁ", "ᏦᎢᏁ", "ᏅᎩᏁ", "ᏧᎾᎩ", "ᏈᏕᎾ"},
  61. daysNarrow: []string{"Ꮖ", "Ꮙ", "Ꮤ", "Ꮶ", "Ꮕ", "Ꮷ", "Ꭴ"},
  62. daysWide: []string{"ᎤᎾᏙᏓᏆᏍᎬ", "ᎤᎾᏙᏓᏉᏅᎯ", "ᏔᎵᏁᎢᎦ", "ᏦᎢᏁᎢᎦ", "ᏅᎩᏁᎢᎦ", "ᏧᎾᎩᎶᏍᏗ", "ᎤᎾᏙᏓᏈᏕᎾ"},
  63. periodsAbbreviated: []string{"ᏌᎾᎴ", "ᏒᎯᏱᎢᏗᏢ"},
  64. periodsWide: []string{"ᏌᎾᎴ", "ᏒᎯᏱᎢᏗᏢ"},
  65. erasAbbreviated: []string{"ᎤᏓᎷᎸ", "ᎤᎶᏐᏅ"},
  66. erasNarrow: []string{"", ""},
  67. erasWide: []string{"Ꮟ ᏥᏌ ᎾᏕᎲᏍᎬᎾ", "ᎠᎩᏃᎮᎵᏓᏍᏗᏱ ᎠᏕᏘᏱᏍᎬ ᏱᎰᏩ ᏧᏓᏂᎸᎢᏍᏗ"},
  68. timezones: map[string]string{"GFT": "GFT", "MYT": "MYT", "AWDT": "AWDT", "UYT": "UYT", "BT": "BT", "∅∅∅": "∅∅∅", "CAT": "CAT", "ADT": "ADT", "NZDT": "NZDT", "VET": "VET", "SGT": "SGT", "SAST": "SAST", "HNT": "HNT", "NZST": "NZST", "AEST": "AEST", "EDT": "ᎧᎸᎬᎢᏗᏢ ᎢᎦ ᎢᏳᏩᎪᏗ", "CST": "ᎠᏰᎵ ᏰᎵᏊ ᏗᏙᎳᎩ ᎢᏳᏩᎪᏗ", "MEZ": "MEZ", "EAT": "EAT", "ACDT": "ACDT", "AWST": "AWST", "WEZ": "WEZ", "ACWST": "ACWST", "UYST": "UYST", "AEDT": "AEDT", "ARST": "ARST", "AKDT": "AKDT", "LHST": "LHST", "ACWDT": "ACWDT", "WIB": "WIB", "HKT": "HKT", "LHDT": "LHDT", "ChST": "ChST", "HADT": "HADT", "JST": "JST", "WIT": "WIT", "GMT": "ᎢᏤ ᎢᏳᏍᏗ ᎢᏳᏩᎪᏗ", "WAST": "WAST", "HAT": "HAT", "PDT": "ᏭᏕᎵᎬ ᎢᎦ ᎢᏳᏩᎪᏗ", "CHADT": "CHADT", "CLST": "CLST", "IST": "IST", "TMST": "TMST", "AST": "AST", "WITA": "WITA", "WAT": "WAT", "HKST": "HKST", "ACST": "ACST", "AKST": "AKST", "MDT": "ᎣᏓᎸ ᎢᎦ ᎢᏳᏩᎪᏗ", "ECT": "ECT", "HAST": "HAST", "TMT": "TMT", "ART": "ART", "PST": "ᏭᏕᎵᎬ ᏰᎵᏊ ᏗᏙᎳᎩ ᎢᏳᏩᎪᏗ", "MST": "ᎣᏓᎸ ᏰᎵᏊ ᏗᏙᎳᎩ ᎢᏳᏩᎪᏗ", "EST": "ᎧᎸᎬᎢᏗᏢ ᏰᎵᏊ ᏗᏙᎳᎩ ᎢᏳᏩᎪᏗ", "COST": "COST", "OESZ": "OESZ", "BOT": "BOT", "CLT": "CLT", "WESZ": "WESZ", "COT": "COT", "WART": "WART", "OEZ": "OEZ", "JDT": "JDT", "SRT": "SRT", "MESZ": "MESZ", "CHAST": "CHAST", "GYT": "GYT", "CDT": "ᎠᏰᎵ ᎢᎦ ᎢᏳᏩᎪᏗ", "WARST": "WARST"},
  69. }
  70. }
  71. // Locale returns the current translators string locale
  72. func (chr *chr) Locale() string {
  73. return chr.locale
  74. }
  75. // PluralsCardinal returns the list of cardinal plural rules associated with 'chr'
  76. func (chr *chr) PluralsCardinal() []locales.PluralRule {
  77. return chr.pluralsCardinal
  78. }
  79. // PluralsOrdinal returns the list of ordinal plural rules associated with 'chr'
  80. func (chr *chr) PluralsOrdinal() []locales.PluralRule {
  81. return chr.pluralsOrdinal
  82. }
  83. // PluralsRange returns the list of range plural rules associated with 'chr'
  84. func (chr *chr) PluralsRange() []locales.PluralRule {
  85. return chr.pluralsRange
  86. }
  87. // CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'chr'
  88. func (chr *chr) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
  89. n := math.Abs(num)
  90. if n == 1 {
  91. return locales.PluralRuleOne
  92. }
  93. return locales.PluralRuleOther
  94. }
  95. // OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'chr'
  96. func (chr *chr) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
  97. return locales.PluralRuleUnknown
  98. }
  99. // RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'chr'
  100. func (chr *chr) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
  101. return locales.PluralRuleUnknown
  102. }
  103. // MonthAbbreviated returns the locales abbreviated month given the 'month' provided
  104. func (chr *chr) MonthAbbreviated(month time.Month) string {
  105. return chr.monthsAbbreviated[month]
  106. }
  107. // MonthsAbbreviated returns the locales abbreviated months
  108. func (chr *chr) MonthsAbbreviated() []string {
  109. return chr.monthsAbbreviated[1:]
  110. }
  111. // MonthNarrow returns the locales narrow month given the 'month' provided
  112. func (chr *chr) MonthNarrow(month time.Month) string {
  113. return chr.monthsNarrow[month]
  114. }
  115. // MonthsNarrow returns the locales narrow months
  116. func (chr *chr) MonthsNarrow() []string {
  117. return chr.monthsNarrow[1:]
  118. }
  119. // MonthWide returns the locales wide month given the 'month' provided
  120. func (chr *chr) MonthWide(month time.Month) string {
  121. return chr.monthsWide[month]
  122. }
  123. // MonthsWide returns the locales wide months
  124. func (chr *chr) MonthsWide() []string {
  125. return chr.monthsWide[1:]
  126. }
  127. // WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
  128. func (chr *chr) WeekdayAbbreviated(weekday time.Weekday) string {
  129. return chr.daysAbbreviated[weekday]
  130. }
  131. // WeekdaysAbbreviated returns the locales abbreviated weekdays
  132. func (chr *chr) WeekdaysAbbreviated() []string {
  133. return chr.daysAbbreviated
  134. }
  135. // WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
  136. func (chr *chr) WeekdayNarrow(weekday time.Weekday) string {
  137. return chr.daysNarrow[weekday]
  138. }
  139. // WeekdaysNarrow returns the locales narrow weekdays
  140. func (chr *chr) WeekdaysNarrow() []string {
  141. return chr.daysNarrow
  142. }
  143. // WeekdayShort returns the locales short weekday given the 'weekday' provided
  144. func (chr *chr) WeekdayShort(weekday time.Weekday) string {
  145. return chr.daysShort[weekday]
  146. }
  147. // WeekdaysShort returns the locales short weekdays
  148. func (chr *chr) WeekdaysShort() []string {
  149. return chr.daysShort
  150. }
  151. // WeekdayWide returns the locales wide weekday given the 'weekday' provided
  152. func (chr *chr) WeekdayWide(weekday time.Weekday) string {
  153. return chr.daysWide[weekday]
  154. }
  155. // WeekdaysWide returns the locales wide weekdays
  156. func (chr *chr) WeekdaysWide() []string {
  157. return chr.daysWide
  158. }
  159. // FmtNumber returns 'num' with digits/precision of 'v' for 'chr' and handles both Whole and Real numbers based on 'v'
  160. func (chr *chr) FmtNumber(num float64, v uint64) string {
  161. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  162. l := len(s) + 2 + 1*len(s[:len(s)-int(v)-1])/3
  163. count := 0
  164. inWhole := v == 0
  165. b := make([]byte, 0, l)
  166. for i := len(s) - 1; i >= 0; i-- {
  167. if s[i] == '.' {
  168. b = append(b, chr.decimal[0])
  169. inWhole = true
  170. continue
  171. }
  172. if inWhole {
  173. if count == 3 {
  174. b = append(b, chr.group[0])
  175. count = 1
  176. } else {
  177. count++
  178. }
  179. }
  180. b = append(b, s[i])
  181. }
  182. if num < 0 {
  183. b = append(b, chr.minus[0])
  184. }
  185. // reverse
  186. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  187. b[i], b[j] = b[j], b[i]
  188. }
  189. return string(b)
  190. }
  191. // FmtPercent returns 'num' with digits/precision of 'v' for 'chr' and handles both Whole and Real numbers based on 'v'
  192. // NOTE: 'num' passed into FmtPercent is assumed to be in percent already
  193. func (chr *chr) FmtPercent(num float64, v uint64) string {
  194. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  195. l := len(s) + 3
  196. b := make([]byte, 0, l)
  197. for i := len(s) - 1; i >= 0; i-- {
  198. if s[i] == '.' {
  199. b = append(b, chr.decimal[0])
  200. continue
  201. }
  202. b = append(b, s[i])
  203. }
  204. if num < 0 {
  205. b = append(b, chr.minus[0])
  206. }
  207. // reverse
  208. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  209. b[i], b[j] = b[j], b[i]
  210. }
  211. b = append(b, chr.percent...)
  212. return string(b)
  213. }
  214. // FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'chr'
  215. func (chr *chr) FmtCurrency(num float64, v uint64, currency currency.Type) string {
  216. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  217. symbol := chr.currencies[currency]
  218. l := len(s) + len(symbol) + 2 + 1*len(s[:len(s)-int(v)-1])/3
  219. count := 0
  220. inWhole := v == 0
  221. b := make([]byte, 0, l)
  222. for i := len(s) - 1; i >= 0; i-- {
  223. if s[i] == '.' {
  224. b = append(b, chr.decimal[0])
  225. inWhole = true
  226. continue
  227. }
  228. if inWhole {
  229. if count == 3 {
  230. b = append(b, chr.group[0])
  231. count = 1
  232. } else {
  233. count++
  234. }
  235. }
  236. b = append(b, s[i])
  237. }
  238. for j := len(symbol) - 1; j >= 0; j-- {
  239. b = append(b, symbol[j])
  240. }
  241. if num < 0 {
  242. b = append(b, chr.minus[0])
  243. }
  244. // reverse
  245. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  246. b[i], b[j] = b[j], b[i]
  247. }
  248. if int(v) < 2 {
  249. if v == 0 {
  250. b = append(b, chr.decimal...)
  251. }
  252. for i := 0; i < 2-int(v); i++ {
  253. b = append(b, '0')
  254. }
  255. }
  256. return string(b)
  257. }
  258. // FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'chr'
  259. // in accounting notation.
  260. func (chr *chr) FmtAccounting(num float64, v uint64, currency currency.Type) string {
  261. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  262. symbol := chr.currencies[currency]
  263. l := len(s) + len(symbol) + 4 + 1*len(s[:len(s)-int(v)-1])/3
  264. count := 0
  265. inWhole := v == 0
  266. b := make([]byte, 0, l)
  267. for i := len(s) - 1; i >= 0; i-- {
  268. if s[i] == '.' {
  269. b = append(b, chr.decimal[0])
  270. inWhole = true
  271. continue
  272. }
  273. if inWhole {
  274. if count == 3 {
  275. b = append(b, chr.group[0])
  276. count = 1
  277. } else {
  278. count++
  279. }
  280. }
  281. b = append(b, s[i])
  282. }
  283. if num < 0 {
  284. for j := len(symbol) - 1; j >= 0; j-- {
  285. b = append(b, symbol[j])
  286. }
  287. b = append(b, chr.currencyNegativePrefix[0])
  288. } else {
  289. for j := len(symbol) - 1; j >= 0; j-- {
  290. b = append(b, symbol[j])
  291. }
  292. }
  293. // reverse
  294. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  295. b[i], b[j] = b[j], b[i]
  296. }
  297. if int(v) < 2 {
  298. if v == 0 {
  299. b = append(b, chr.decimal...)
  300. }
  301. for i := 0; i < 2-int(v); i++ {
  302. b = append(b, '0')
  303. }
  304. }
  305. if num < 0 {
  306. b = append(b, chr.currencyNegativeSuffix...)
  307. }
  308. return string(b)
  309. }
  310. // FmtDateShort returns the short date representation of 't' for 'chr'
  311. func (chr *chr) FmtDateShort(t time.Time) string {
  312. b := make([]byte, 0, 32)
  313. b = strconv.AppendInt(b, int64(t.Month()), 10)
  314. b = append(b, []byte{0x2f}...)
  315. b = strconv.AppendInt(b, int64(t.Day()), 10)
  316. b = append(b, []byte{0x2f}...)
  317. if t.Year() > 9 {
  318. b = append(b, strconv.Itoa(t.Year())[2:]...)
  319. } else {
  320. b = append(b, strconv.Itoa(t.Year())[1:]...)
  321. }
  322. return string(b)
  323. }
  324. // FmtDateMedium returns the medium date representation of 't' for 'chr'
  325. func (chr *chr) FmtDateMedium(t time.Time) string {
  326. b := make([]byte, 0, 32)
  327. b = append(b, chr.monthsAbbreviated[t.Month()]...)
  328. b = append(b, []byte{0x20}...)
  329. b = strconv.AppendInt(b, int64(t.Day()), 10)
  330. b = append(b, []byte{0x2c, 0x20}...)
  331. b = strconv.AppendInt(b, int64(t.Year()), 10)
  332. return string(b)
  333. }
  334. // FmtDateLong returns the long date representation of 't' for 'chr'
  335. func (chr *chr) FmtDateLong(t time.Time) string {
  336. b := make([]byte, 0, 32)
  337. b = append(b, chr.monthsWide[t.Month()]...)
  338. b = append(b, []byte{0x20}...)
  339. b = strconv.AppendInt(b, int64(t.Day()), 10)
  340. b = append(b, []byte{0x2c, 0x20}...)
  341. b = strconv.AppendInt(b, int64(t.Year()), 10)
  342. return string(b)
  343. }
  344. // FmtDateFull returns the full date representation of 't' for 'chr'
  345. func (chr *chr) FmtDateFull(t time.Time) string {
  346. b := make([]byte, 0, 32)
  347. b = append(b, chr.daysWide[t.Weekday()]...)
  348. b = append(b, []byte{0x2c, 0x20}...)
  349. b = append(b, chr.monthsWide[t.Month()]...)
  350. b = append(b, []byte{0x20}...)
  351. b = strconv.AppendInt(b, int64(t.Day()), 10)
  352. b = append(b, []byte{0x2c, 0x20}...)
  353. b = strconv.AppendInt(b, int64(t.Year()), 10)
  354. return string(b)
  355. }
  356. // FmtTimeShort returns the short time representation of 't' for 'chr'
  357. func (chr *chr) FmtTimeShort(t time.Time) string {
  358. b := make([]byte, 0, 32)
  359. h := t.Hour()
  360. if h > 12 {
  361. h -= 12
  362. }
  363. b = strconv.AppendInt(b, int64(h), 10)
  364. b = append(b, chr.timeSeparator...)
  365. if t.Minute() < 10 {
  366. b = append(b, '0')
  367. }
  368. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  369. b = append(b, []byte{0x20}...)
  370. if t.Hour() < 12 {
  371. b = append(b, chr.periodsAbbreviated[0]...)
  372. } else {
  373. b = append(b, chr.periodsAbbreviated[1]...)
  374. }
  375. return string(b)
  376. }
  377. // FmtTimeMedium returns the medium time representation of 't' for 'chr'
  378. func (chr *chr) FmtTimeMedium(t time.Time) string {
  379. b := make([]byte, 0, 32)
  380. h := t.Hour()
  381. if h > 12 {
  382. h -= 12
  383. }
  384. b = strconv.AppendInt(b, int64(h), 10)
  385. b = append(b, chr.timeSeparator...)
  386. if t.Minute() < 10 {
  387. b = append(b, '0')
  388. }
  389. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  390. b = append(b, chr.timeSeparator...)
  391. if t.Second() < 10 {
  392. b = append(b, '0')
  393. }
  394. b = strconv.AppendInt(b, int64(t.Second()), 10)
  395. b = append(b, []byte{0x20}...)
  396. if t.Hour() < 12 {
  397. b = append(b, chr.periodsAbbreviated[0]...)
  398. } else {
  399. b = append(b, chr.periodsAbbreviated[1]...)
  400. }
  401. return string(b)
  402. }
  403. // FmtTimeLong returns the long time representation of 't' for 'chr'
  404. func (chr *chr) FmtTimeLong(t time.Time) string {
  405. b := make([]byte, 0, 32)
  406. h := t.Hour()
  407. if h > 12 {
  408. h -= 12
  409. }
  410. b = strconv.AppendInt(b, int64(h), 10)
  411. b = append(b, chr.timeSeparator...)
  412. if t.Minute() < 10 {
  413. b = append(b, '0')
  414. }
  415. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  416. b = append(b, chr.timeSeparator...)
  417. if t.Second() < 10 {
  418. b = append(b, '0')
  419. }
  420. b = strconv.AppendInt(b, int64(t.Second()), 10)
  421. b = append(b, []byte{0x20}...)
  422. if t.Hour() < 12 {
  423. b = append(b, chr.periodsAbbreviated[0]...)
  424. } else {
  425. b = append(b, chr.periodsAbbreviated[1]...)
  426. }
  427. b = append(b, []byte{0x20}...)
  428. tz, _ := t.Zone()
  429. b = append(b, tz...)
  430. return string(b)
  431. }
  432. // FmtTimeFull returns the full time representation of 't' for 'chr'
  433. func (chr *chr) FmtTimeFull(t time.Time) string {
  434. b := make([]byte, 0, 32)
  435. h := t.Hour()
  436. if h > 12 {
  437. h -= 12
  438. }
  439. b = strconv.AppendInt(b, int64(h), 10)
  440. b = append(b, chr.timeSeparator...)
  441. if t.Minute() < 10 {
  442. b = append(b, '0')
  443. }
  444. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  445. b = append(b, chr.timeSeparator...)
  446. if t.Second() < 10 {
  447. b = append(b, '0')
  448. }
  449. b = strconv.AppendInt(b, int64(t.Second()), 10)
  450. b = append(b, []byte{0x20}...)
  451. if t.Hour() < 12 {
  452. b = append(b, chr.periodsAbbreviated[0]...)
  453. } else {
  454. b = append(b, chr.periodsAbbreviated[1]...)
  455. }
  456. b = append(b, []byte{0x20}...)
  457. tz, _ := t.Zone()
  458. if btz, ok := chr.timezones[tz]; ok {
  459. b = append(b, btz...)
  460. } else {
  461. b = append(b, tz...)
  462. }
  463. return string(b)
  464. }