te.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  1. package te
  2. import (
  3. "math"
  4. "strconv"
  5. "time"
  6. "github.com/go-playground/locales"
  7. "github.com/go-playground/locales/currency"
  8. )
  9. type te 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 'te' locale
  41. func New() locales.Translator {
  42. return &te{
  43. locale: "te",
  44. pluralsCardinal: []locales.PluralRule{2, 6},
  45. pluralsOrdinal: []locales.PluralRule{6},
  46. pluralsRange: []locales.PluralRule{2, 6},
  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", "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", "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", "฿", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "NT$", "TZS", "UAH", "UAK", "UGS", "UGX", "$", "USN", "USS", "UYI", "UYP", "UYU", "UZS", "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"},
  55. currencyNegativePrefix: "(",
  56. currencyNegativeSuffix: ")",
  57. monthsAbbreviated: []string{"", "జన", "ఫిబ్ర", "మార్చి", "ఏప్రి", "మే", "జూన్", "జులై", "ఆగ", "సెప్టెం", "అక్టో", "నవం", "డిసెం"},
  58. monthsNarrow: []string{"", "జ", "ఫి", "మా", "ఏ", "మే", "జూ", "జు", "ఆ", "సె", "అ", "న", "డి"},
  59. monthsWide: []string{"", "జనవరి", "ఫిబ్రవరి", "మార్చి", "ఏప్రిల్", "మే", "జూన్", "జులై", "ఆగస్టు", "సెప్టెంబర్", "అక్టోబర్", "నవంబర్", "డిసెంబర్"},
  60. daysAbbreviated: []string{"ఆది", "సోమ", "మంగళ", "బుధ", "గురు", "శుక్ర", "శని"},
  61. daysNarrow: []string{"ఆ", "సో", "మ", "బు", "గు", "శు", "శ"},
  62. daysShort: []string{"ఆది", "సోమ", "మం", "బుధ", "గురు", "శుక్ర", "శని"},
  63. daysWide: []string{"ఆదివారం", "సోమవారం", "మంగళవారం", "బుధవారం", "గురువారం", "శుక్రవారం", "శనివారం"},
  64. periodsAbbreviated: []string{"AM", "PM"},
  65. periodsNarrow: []string{"ఉ", "సా"},
  66. periodsWide: []string{"[AM]", "[PM]"},
  67. erasAbbreviated: []string{"క్రీపూ", "క్రీశ"},
  68. erasNarrow: []string{"", ""},
  69. erasWide: []string{"క్రీస్తు పూర్వం", "క్రీస్తు శకం"},
  70. timezones: map[string]string{"JST": "జపాన్ ప్రామాణిక సమయం", "CDT": "మధ్యమ పగటి సమయం", "WAST": "పశ్చిమ ఆఫ్రికా వేసవి సమయం", "NZDT": "న్యూజిల్యాండ్ పగటి వెలుతురు సమయం", "OESZ": "తూర్పు యూరోపియన్ వేసవి సమయం", "BOT": "బొలీవియా సమయం", "LHDT": "లార్డ్ హోవ్ పగటి సమయం", "UYST": "ఉరుగ్వే వేసవి సమయం", "AKDT": "అలాస్కా పగటి సమయం", "MST": "మకావ్ ప్రామాణిక సమయం", "PDT": "పసిఫిక్ పగటి సమయం", "ACWDT": "మధ్యమ ఆస్ట్రేలియన్ పశ్చిమ పగటి సమయం", "TMST": "తుర్క్మెనిస్థాన్ వేసవి సమయం", "GFT": "ఫ్రెంచ్ గయానా సమయం", "MYT": "మలేషియా సమయం", "MDT": "మకావ్ వేసవి సమయం", "ARST": "ఆర్జెంటీనా వేసవి సమయం", "COST": "కొలంబియా వేసవి సమయం", "AEDT": "తూర్పు ఆస్ట్రేలియా పగటి సమయం", "COT": "కొలంబియా ప్రామాణిక సమయం", "WIT": "తూర్పు ఇండోనేషియా సమయం", "HADT": "హవాయ్-అల్యూషియన్ పగటి వెలుతురు సమయం", "VET": "వెనిజులా సమయం", "ChST": "చామర్రో ప్రామాణిక సమయం", "ACST": "ఆస్ట్రేలియా మధ్యమ ప్రామాణిక సమయం", "ACDT": "ఆస్ట్రేలియా మధ్యమ పగటి సమయం", "NZST": "న్యూజిల్యాండ్ ప్రామాణిక సమయం", "AEST": "తూర్పు ఆస్ట్రేలియా ప్రామాణిక సమయం", "WITA": "సెంట్రల్ ఇండోనేషియా సమయం", "EDT": "తూర్పు పగటి సమయం", "IST": "భారతదేశ సమయం", "CHAST": "చాథమ్ ప్రామాణిక సమయం", "WART": "పశ్చిమ అర్జెంటీనా ప్రామాణిక సమయం", "UYT": "ఉరుగ్వే ప్రామాణిక సమయం", "WAT": "పశ్చిమ ఆఫ్రికా ప్రామాణిక సమయం", "WESZ": "పశ్చిమ యూరోపియన్ వేసవి సమయం", "PST": "పసిఫిక్ ప్రామాణిక సమయం", "OEZ": "తూర్పు యూరోపియన్ ప్రామాణిక సమయం", "HNT": "న్యూఫౌండ్ ల్యాండ్ ప్రామాణిక సమయం", "AST": "అట్లాంటిక్ ప్రామాణిక సమయం", "SAST": "దక్షిణ ఆఫ్రికా ప్రామాణిక సమయం", "HAST": "హవాయ్-అల్యూషియన్ ప్రామాణిక సమయం", "CST": "మధ్యమ ప్రామాణిక సమయం", "WEZ": "పశ్చిమ యూరోపియన్ ప్రామాణిక సమయం", "SRT": "సూరినామ్ సమయం", "CAT": "సెంట్రల్ ఆఫ్రికా సమయం", "AWST": "పశ్చిమ ఆస్ట్రేలియన్ ప్రామాణిక సమయం", "AWDT": "పశ్చిమ ఆస్ట్రేలియన్ పగటి సమయం", "LHST": "లార్డ్ హోవ్ ప్రామాణిక సమయం", "EAT": "తూర్పు ఆఫ్రికా సమయం", "MESZ": "సెంట్రల్ యూరోపియన్ వేసవి సమయం", "CLT": "చిలీ ప్రామాణిక సమయం", "CHADT": "చాథమ్ పగటి వెలుతురు సమయం", "HAT": "న్యూఫౌండ్ ల్యాండ్ పగటి సమయం", "∅∅∅": "పెరూ వేసవి సమయం", "ART": "అర్జెంటీనా ప్రామాణిక సమయం", "JDT": "జపాన్ పగటి వెలుతురు సమయం", "GYT": "గయానా సమయం", "WIB": "పశ్చిమ ఇండోనేషియా సమయం", "ACWST": "మధ్యమ ఆస్ట్రేలియా పశ్చిమ ప్రామాణిక సమయం", "ECT": "ఈక్వడార్ సమయం", "HKT": "హాంకాంగ్ ప్రామాణిక సమయం", "HKST": "హాంకాంగ్ వేసవి సమయం", "GMT": "గ్రీన్\u200cవిచ్ సగటు సమయం", "TMT": "తుర్క్మెనిస్థాన్ ప్రామాణిక సమయం", "BT": "భూటాన్ సమయం", "MEZ": "సెంట్రల్ యూరోపియన్ ప్రామాణిక సమయం", "AKST": "అలాస్కా ప్రామాణిక సమయం", "ADT": "అట్లాంటిక్ పగటి సమయం", "CLST": "చిలీ వేసవి సమయం", "SGT": "సింగపూర్ ప్రామాణిక సమయం", "WARST": "పశ్చిమ అర్జెంటీనా వేసవి సమయం", "EST": "తూర్పు ప్రామాణిక సమయం"},
  71. }
  72. }
  73. // Locale returns the current translators string locale
  74. func (te *te) Locale() string {
  75. return te.locale
  76. }
  77. // PluralsCardinal returns the list of cardinal plural rules associated with 'te'
  78. func (te *te) PluralsCardinal() []locales.PluralRule {
  79. return te.pluralsCardinal
  80. }
  81. // PluralsOrdinal returns the list of ordinal plural rules associated with 'te'
  82. func (te *te) PluralsOrdinal() []locales.PluralRule {
  83. return te.pluralsOrdinal
  84. }
  85. // PluralsRange returns the list of range plural rules associated with 'te'
  86. func (te *te) PluralsRange() []locales.PluralRule {
  87. return te.pluralsRange
  88. }
  89. // CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'te'
  90. func (te *te) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
  91. n := math.Abs(num)
  92. if n == 1 {
  93. return locales.PluralRuleOne
  94. }
  95. return locales.PluralRuleOther
  96. }
  97. // OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'te'
  98. func (te *te) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
  99. return locales.PluralRuleOther
  100. }
  101. // RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'te'
  102. func (te *te) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
  103. start := te.CardinalPluralRule(num1, v1)
  104. end := te.CardinalPluralRule(num2, v2)
  105. if start == locales.PluralRuleOne && end == locales.PluralRuleOther {
  106. return locales.PluralRuleOther
  107. } else if start == locales.PluralRuleOther && end == locales.PluralRuleOne {
  108. return locales.PluralRuleOne
  109. }
  110. return locales.PluralRuleOther
  111. }
  112. // MonthAbbreviated returns the locales abbreviated month given the 'month' provided
  113. func (te *te) MonthAbbreviated(month time.Month) string {
  114. return te.monthsAbbreviated[month]
  115. }
  116. // MonthsAbbreviated returns the locales abbreviated months
  117. func (te *te) MonthsAbbreviated() []string {
  118. return te.monthsAbbreviated[1:]
  119. }
  120. // MonthNarrow returns the locales narrow month given the 'month' provided
  121. func (te *te) MonthNarrow(month time.Month) string {
  122. return te.monthsNarrow[month]
  123. }
  124. // MonthsNarrow returns the locales narrow months
  125. func (te *te) MonthsNarrow() []string {
  126. return te.monthsNarrow[1:]
  127. }
  128. // MonthWide returns the locales wide month given the 'month' provided
  129. func (te *te) MonthWide(month time.Month) string {
  130. return te.monthsWide[month]
  131. }
  132. // MonthsWide returns the locales wide months
  133. func (te *te) MonthsWide() []string {
  134. return te.monthsWide[1:]
  135. }
  136. // WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
  137. func (te *te) WeekdayAbbreviated(weekday time.Weekday) string {
  138. return te.daysAbbreviated[weekday]
  139. }
  140. // WeekdaysAbbreviated returns the locales abbreviated weekdays
  141. func (te *te) WeekdaysAbbreviated() []string {
  142. return te.daysAbbreviated
  143. }
  144. // WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
  145. func (te *te) WeekdayNarrow(weekday time.Weekday) string {
  146. return te.daysNarrow[weekday]
  147. }
  148. // WeekdaysNarrow returns the locales narrow weekdays
  149. func (te *te) WeekdaysNarrow() []string {
  150. return te.daysNarrow
  151. }
  152. // WeekdayShort returns the locales short weekday given the 'weekday' provided
  153. func (te *te) WeekdayShort(weekday time.Weekday) string {
  154. return te.daysShort[weekday]
  155. }
  156. // WeekdaysShort returns the locales short weekdays
  157. func (te *te) WeekdaysShort() []string {
  158. return te.daysShort
  159. }
  160. // WeekdayWide returns the locales wide weekday given the 'weekday' provided
  161. func (te *te) WeekdayWide(weekday time.Weekday) string {
  162. return te.daysWide[weekday]
  163. }
  164. // WeekdaysWide returns the locales wide weekdays
  165. func (te *te) WeekdaysWide() []string {
  166. return te.daysWide
  167. }
  168. // FmtNumber returns 'num' with digits/precision of 'v' for 'te' and handles both Whole and Real numbers based on 'v'
  169. func (te *te) FmtNumber(num float64, v uint64) string {
  170. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  171. l := len(s) + 2 + 1*len(s[:len(s)-int(v)-1])/3
  172. count := 0
  173. inWhole := v == 0
  174. inSecondary := false
  175. groupThreshold := 3
  176. b := make([]byte, 0, l)
  177. for i := len(s) - 1; i >= 0; i-- {
  178. if s[i] == '.' {
  179. b = append(b, te.decimal[0])
  180. inWhole = true
  181. continue
  182. }
  183. if inWhole {
  184. if count == groupThreshold {
  185. b = append(b, te.group[0])
  186. count = 1
  187. if !inSecondary {
  188. inSecondary = true
  189. groupThreshold = 2
  190. }
  191. } else {
  192. count++
  193. }
  194. }
  195. b = append(b, s[i])
  196. }
  197. if num < 0 {
  198. b = append(b, te.minus[0])
  199. }
  200. // reverse
  201. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  202. b[i], b[j] = b[j], b[i]
  203. }
  204. return string(b)
  205. }
  206. // FmtPercent returns 'num' with digits/precision of 'v' for 'te' and handles both Whole and Real numbers based on 'v'
  207. // NOTE: 'num' passed into FmtPercent is assumed to be in percent already
  208. func (te *te) FmtPercent(num float64, v uint64) string {
  209. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  210. l := len(s) + 3
  211. b := make([]byte, 0, l)
  212. for i := len(s) - 1; i >= 0; i-- {
  213. if s[i] == '.' {
  214. b = append(b, te.decimal[0])
  215. continue
  216. }
  217. b = append(b, s[i])
  218. }
  219. if num < 0 {
  220. b = append(b, te.minus[0])
  221. }
  222. // reverse
  223. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  224. b[i], b[j] = b[j], b[i]
  225. }
  226. b = append(b, te.percent...)
  227. return string(b)
  228. }
  229. // FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'te'
  230. func (te *te) FmtCurrency(num float64, v uint64, currency currency.Type) string {
  231. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  232. symbol := te.currencies[currency]
  233. l := len(s) + len(symbol) + 2 + 1*len(s[:len(s)-int(v)-1])/3
  234. count := 0
  235. inWhole := v == 0
  236. inSecondary := false
  237. groupThreshold := 3
  238. b := make([]byte, 0, l)
  239. for i := len(s) - 1; i >= 0; i-- {
  240. if s[i] == '.' {
  241. b = append(b, te.decimal[0])
  242. inWhole = true
  243. continue
  244. }
  245. if inWhole {
  246. if count == groupThreshold {
  247. b = append(b, te.group[0])
  248. count = 1
  249. if !inSecondary {
  250. inSecondary = true
  251. groupThreshold = 2
  252. }
  253. } else {
  254. count++
  255. }
  256. }
  257. b = append(b, s[i])
  258. }
  259. for j := len(symbol) - 1; j >= 0; j-- {
  260. b = append(b, symbol[j])
  261. }
  262. if num < 0 {
  263. b = append(b, te.minus[0])
  264. }
  265. // reverse
  266. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  267. b[i], b[j] = b[j], b[i]
  268. }
  269. if int(v) < 2 {
  270. if v == 0 {
  271. b = append(b, te.decimal...)
  272. }
  273. for i := 0; i < 2-int(v); i++ {
  274. b = append(b, '0')
  275. }
  276. }
  277. return string(b)
  278. }
  279. // FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'te'
  280. // in accounting notation.
  281. func (te *te) FmtAccounting(num float64, v uint64, currency currency.Type) string {
  282. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  283. symbol := te.currencies[currency]
  284. l := len(s) + len(symbol) + 4 + 1*len(s[:len(s)-int(v)-1])/3
  285. count := 0
  286. inWhole := v == 0
  287. inSecondary := false
  288. groupThreshold := 3
  289. b := make([]byte, 0, l)
  290. for i := len(s) - 1; i >= 0; i-- {
  291. if s[i] == '.' {
  292. b = append(b, te.decimal[0])
  293. inWhole = true
  294. continue
  295. }
  296. if inWhole {
  297. if count == groupThreshold {
  298. b = append(b, te.group[0])
  299. count = 1
  300. if !inSecondary {
  301. inSecondary = true
  302. groupThreshold = 2
  303. }
  304. } else {
  305. count++
  306. }
  307. }
  308. b = append(b, s[i])
  309. }
  310. if num < 0 {
  311. for j := len(symbol) - 1; j >= 0; j-- {
  312. b = append(b, symbol[j])
  313. }
  314. b = append(b, te.currencyNegativePrefix[0])
  315. } else {
  316. for j := len(symbol) - 1; j >= 0; j-- {
  317. b = append(b, symbol[j])
  318. }
  319. }
  320. // reverse
  321. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  322. b[i], b[j] = b[j], b[i]
  323. }
  324. if int(v) < 2 {
  325. if v == 0 {
  326. b = append(b, te.decimal...)
  327. }
  328. for i := 0; i < 2-int(v); i++ {
  329. b = append(b, '0')
  330. }
  331. }
  332. if num < 0 {
  333. b = append(b, te.currencyNegativeSuffix...)
  334. }
  335. return string(b)
  336. }
  337. // FmtDateShort returns the short date representation of 't' for 'te'
  338. func (te *te) FmtDateShort(t time.Time) string {
  339. b := make([]byte, 0, 32)
  340. if t.Day() < 10 {
  341. b = append(b, '0')
  342. }
  343. b = strconv.AppendInt(b, int64(t.Day()), 10)
  344. b = append(b, []byte{0x2d}...)
  345. if t.Month() < 10 {
  346. b = append(b, '0')
  347. }
  348. b = strconv.AppendInt(b, int64(t.Month()), 10)
  349. b = append(b, []byte{0x2d}...)
  350. if t.Year() > 9 {
  351. b = append(b, strconv.Itoa(t.Year())[2:]...)
  352. } else {
  353. b = append(b, strconv.Itoa(t.Year())[1:]...)
  354. }
  355. return string(b)
  356. }
  357. // FmtDateMedium returns the medium date representation of 't' for 'te'
  358. func (te *te) FmtDateMedium(t time.Time) string {
  359. b := make([]byte, 0, 32)
  360. b = strconv.AppendInt(b, int64(t.Day()), 10)
  361. b = append(b, []byte{0x20}...)
  362. b = append(b, te.monthsAbbreviated[t.Month()]...)
  363. b = append(b, []byte{0x2c, 0x20}...)
  364. b = strconv.AppendInt(b, int64(t.Year()), 10)
  365. return string(b)
  366. }
  367. // FmtDateLong returns the long date representation of 't' for 'te'
  368. func (te *te) FmtDateLong(t time.Time) string {
  369. b := make([]byte, 0, 32)
  370. b = strconv.AppendInt(b, int64(t.Day()), 10)
  371. b = append(b, []byte{0x20}...)
  372. b = append(b, te.monthsWide[t.Month()]...)
  373. b = append(b, []byte{0x2c, 0x20}...)
  374. b = strconv.AppendInt(b, int64(t.Year()), 10)
  375. return string(b)
  376. }
  377. // FmtDateFull returns the full date representation of 't' for 'te'
  378. func (te *te) FmtDateFull(t time.Time) string {
  379. b := make([]byte, 0, 32)
  380. b = strconv.AppendInt(b, int64(t.Day()), 10)
  381. b = append(b, []byte{0x2c, 0x20}...)
  382. b = append(b, te.monthsWide[t.Month()]...)
  383. b = append(b, []byte{0x20}...)
  384. b = strconv.AppendInt(b, int64(t.Year()), 10)
  385. b = append(b, []byte{0x2c, 0x20}...)
  386. b = append(b, te.daysWide[t.Weekday()]...)
  387. return string(b)
  388. }
  389. // FmtTimeShort returns the short time representation of 't' for 'te'
  390. func (te *te) FmtTimeShort(t time.Time) string {
  391. b := make([]byte, 0, 32)
  392. h := t.Hour()
  393. if h > 12 {
  394. h -= 12
  395. }
  396. b = strconv.AppendInt(b, int64(h), 10)
  397. b = append(b, te.timeSeparator...)
  398. if t.Minute() < 10 {
  399. b = append(b, '0')
  400. }
  401. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  402. b = append(b, []byte{0x20}...)
  403. if t.Hour() < 12 {
  404. b = append(b, te.periodsAbbreviated[0]...)
  405. } else {
  406. b = append(b, te.periodsAbbreviated[1]...)
  407. }
  408. return string(b)
  409. }
  410. // FmtTimeMedium returns the medium time representation of 't' for 'te'
  411. func (te *te) FmtTimeMedium(t time.Time) string {
  412. b := make([]byte, 0, 32)
  413. h := t.Hour()
  414. if h > 12 {
  415. h -= 12
  416. }
  417. b = strconv.AppendInt(b, int64(h), 10)
  418. b = append(b, te.timeSeparator...)
  419. if t.Minute() < 10 {
  420. b = append(b, '0')
  421. }
  422. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  423. b = append(b, te.timeSeparator...)
  424. if t.Second() < 10 {
  425. b = append(b, '0')
  426. }
  427. b = strconv.AppendInt(b, int64(t.Second()), 10)
  428. b = append(b, []byte{0x20}...)
  429. if t.Hour() < 12 {
  430. b = append(b, te.periodsAbbreviated[0]...)
  431. } else {
  432. b = append(b, te.periodsAbbreviated[1]...)
  433. }
  434. return string(b)
  435. }
  436. // FmtTimeLong returns the long time representation of 't' for 'te'
  437. func (te *te) FmtTimeLong(t time.Time) string {
  438. b := make([]byte, 0, 32)
  439. h := t.Hour()
  440. if h > 12 {
  441. h -= 12
  442. }
  443. b = strconv.AppendInt(b, int64(h), 10)
  444. b = append(b, te.timeSeparator...)
  445. if t.Minute() < 10 {
  446. b = append(b, '0')
  447. }
  448. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  449. b = append(b, te.timeSeparator...)
  450. if t.Second() < 10 {
  451. b = append(b, '0')
  452. }
  453. b = strconv.AppendInt(b, int64(t.Second()), 10)
  454. b = append(b, []byte{0x20}...)
  455. if t.Hour() < 12 {
  456. b = append(b, te.periodsAbbreviated[0]...)
  457. } else {
  458. b = append(b, te.periodsAbbreviated[1]...)
  459. }
  460. b = append(b, []byte{0x20}...)
  461. tz, _ := t.Zone()
  462. b = append(b, tz...)
  463. return string(b)
  464. }
  465. // FmtTimeFull returns the full time representation of 't' for 'te'
  466. func (te *te) FmtTimeFull(t time.Time) string {
  467. b := make([]byte, 0, 32)
  468. h := t.Hour()
  469. if h > 12 {
  470. h -= 12
  471. }
  472. b = strconv.AppendInt(b, int64(h), 10)
  473. b = append(b, te.timeSeparator...)
  474. if t.Minute() < 10 {
  475. b = append(b, '0')
  476. }
  477. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  478. b = append(b, te.timeSeparator...)
  479. if t.Second() < 10 {
  480. b = append(b, '0')
  481. }
  482. b = strconv.AppendInt(b, int64(t.Second()), 10)
  483. b = append(b, []byte{0x20}...)
  484. if t.Hour() < 12 {
  485. b = append(b, te.periodsAbbreviated[0]...)
  486. } else {
  487. b = append(b, te.periodsAbbreviated[1]...)
  488. }
  489. b = append(b, []byte{0x20}...)
  490. tz, _ := t.Zone()
  491. if btz, ok := te.timezones[tz]; ok {
  492. b = append(b, btz...)
  493. } else {
  494. b = append(b, tz...)
  495. }
  496. return string(b)
  497. }