is.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. package is
  2. import (
  3. "math"
  4. "strconv"
  5. "time"
  6. "github.com/go-playground/locales"
  7. "github.com/go-playground/locales/currency"
  8. )
  9. type is 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. currencyPositiveSuffix 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 'is' locale
  41. func New() locales.Translator {
  42. return &is{
  43. locale: "is",
  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", "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", "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", "EUR", "FIM", "FJD", "FKP", "FRF", "GBP", "GEK", "GEL", "GHC", "GHS", "GIP", "GMD", "GNF", "GNS", "GQE", "GRD", "GTQ", "GWE", "GWP", "GYD", "HK$", "HNL", "HRD", "HRK", "HTG", "HUF", "IDR", "IEP", "ILP", "ILR", "₪", "INR", "IQD", "IRR", "ISJ", "ISK", "ITL", "JMD", "JOD", "JP¥", "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", "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. currencyPositiveSuffix: " ",
  56. currencyNegativeSuffix: " ",
  57. monthsAbbreviated: []string{"", "jan.", "feb.", "mar.", "apr.", "maí", "jún.", "júl.", "ágú.", "sep.", "okt.", "nóv.", "des."},
  58. monthsNarrow: []string{"", "J", "F", "M", "A", "M", "J", "J", "Á", "S", "O", "N", "D"},
  59. monthsWide: []string{"", "janúar", "febrúar", "mars", "apríl", "maí", "júní", "júlí", "ágúst", "september", "október", "nóvember", "desember"},
  60. daysAbbreviated: []string{"sun.", "mán.", "þri.", "mið.", "fim.", "fös.", "lau."},
  61. daysNarrow: []string{"S", "M", "Þ", "M", "F", "F", "L"},
  62. daysShort: []string{"su.", "má.", "þr.", "mi.", "fi.", "fö.", "la."},
  63. daysWide: []string{"sunnudagur", "mánudagur", "þriðjudagur", "miðvikudagur", "fimmtudagur", "föstudagur", "laugardagur"},
  64. periodsAbbreviated: []string{"f.h.", "e.h."},
  65. periodsNarrow: []string{"f.", "e."},
  66. periodsWide: []string{"f.h.", "e.h."},
  67. erasAbbreviated: []string{"f.Kr.", "e.Kr."},
  68. erasNarrow: []string{"f.k.", "e.k."},
  69. erasWide: []string{"fyrir Krist", "eftir Krist"},
  70. timezones: map[string]string{"HEOG": "Sumartími á Vestur-Grænlandi", "ACDT": "Sumartími í Mið-Ástralíu", "MST": "MST", "MESZ": "Sumartími í Mið-Evrópu", "LHST": "Staðaltími á Lord Howe-eyju", "CST": "Staðaltími í miðhluta Bandaríkjanna og Kanada", "SAST": "Suður-Afríkutími", "HNEG": "Staðaltími á Austur-Grænlandi", "HEEG": "Sumartími á Austur-Grænlandi", "ACWST": "Staðaltími í miðvesturhluta Ástralíu", "HNPM": "Staðaltími á Sankti Pierre og Miquelon", "OEZ": "Staðaltími í Austur-Evrópu", "OESZ": "Sumartími í Austur-Evrópu", "CHAST": "Staðaltími í Chatham", "ADT": "Sumartími á Atlantshafssvæðinu", "AKDT": "Sumartími í Alaska", "ACWDT": "Sumartími í miðvesturhluta Ástralíu", "HKT": "Staðaltími í Hong Kong", "HAT": "Sumartími á Nýfundnalandi", "PST": "Staðaltími á Kyrrahafssvæðinu", "UYT": "Staðaltími í Úrúgvæ", "WIB": "Vestur-Indónesíutími", "JDT": "Sumartími í Japan", "EDT": "Sumartími í austurhluta Bandaríkjanna og Kanada", "∅∅∅": "Sumartími á Asóreyjum", "TMT": "Staðaltími í Túrkmenistan", "JST": "Staðaltími í Japan", "EAT": "Austur-Afríkutími", "AEST": "Staðaltími í Austur-Ástralíu", "BOT": "Bólivíutími", "WART": "Staðaltími í Vestur-Argentínu", "VET": "Venesúelatími", "HNNOMX": "Staðaltími í Norðvestur-Mexíkó", "WIT": "Austur-Indónesíutími", "COT": "Staðaltími í Kólumbíu", "SGT": "Singapúrtími", "EST": "Staðaltími í austurhluta Bandaríkjanna og Kanada", "LHDT": "Sumartími á Lord Howe-eyju", "HECU": "Sumartími á Kúbu", "HAST": "Staðaltími á Havaí og Aleúta", "GYT": "Gvæjanatími", "UYST": "Sumartími í Úrúgvæ", "GMT": "Greenwich-staðaltími", "CHADT": "Sumartími í Chatham", "NZDT": "Sumartími á Nýja-Sjálandi", "HEPM": "Sumartími á Sankti Pierre og Miquelon", "HENOMX": "Sumartími í Norðvestur-Mexíkó", "CLT": "Staðaltími í Síle", "HNPMX": "Staðaltími í Mexíkó á Kyrrahafssvæðinu", "WESZ": "Sumartími í Vestur-Evrópu", "MYT": "Malasíutími", "CDT": "Sumartími í miðhluta Bandaríkjanna og Kanada", "PDT": "Sumartími á Kyrrahafssvæðinu", "AWST": "Staðaltími í Vestur-Ástralíu", "COST": "Sumartími í Kólumbíu", "ChST": "Chamorro-staðaltími", "HNCU": "Staðaltími á Kúbu", "WAST": "Sumartími í Vestur-Afríku", "WEZ": "Staðaltími í Vestur-Evrópu", "MEZ": "Staðaltími í Mið-Evrópu", "IST": "Indlandstími", "WARST": "Sumartími í Vestur-Argentínu", "HNT": "Staðaltími á Nýfundnalandi", "SRT": "Súrinamtími", "AST": "Staðaltími á Atlantshafssvæðinu", "GFT": "Tími í Frönsku Gvæjana", "ECT": "Ekvadortími", "HADT": "Sumartími á Havaí og Aleúta", "AWDT": "Sumartími í Vestur-Ástralíu", "HKST": "Sumartími í Hong Kong", "CAT": "Mið-Afríkutími", "ARST": "Sumartími í Argentínu", "WAT": "Staðaltími í Vestur-Afríku", "NZST": "Staðaltími á Nýja-Sjálandi", "AKST": "Staðaltími í Alaska", "HNOG": "Staðaltími á Vestur-Grænlandi", "ACST": "Staðaltími í Mið-Ástralíu", "CLST": "Sumartími í Síle", "ART": "Staðaltími í Argentínu", "HEPMX": "Sumartími í Mexíkó á Kyrrahafssvæðinu", "AEDT": "Sumartími í Austur-Ástralíu", "BT": "Bútantími", "WITA": "Mið-Indónesíutími", "MDT": "MDT", "TMST": "Sumartími í Túrkmenistan"},
  71. }
  72. }
  73. // Locale returns the current translators string locale
  74. func (is *is) Locale() string {
  75. return is.locale
  76. }
  77. // PluralsCardinal returns the list of cardinal plural rules associated with 'is'
  78. func (is *is) PluralsCardinal() []locales.PluralRule {
  79. return is.pluralsCardinal
  80. }
  81. // PluralsOrdinal returns the list of ordinal plural rules associated with 'is'
  82. func (is *is) PluralsOrdinal() []locales.PluralRule {
  83. return is.pluralsOrdinal
  84. }
  85. // PluralsRange returns the list of range plural rules associated with 'is'
  86. func (is *is) PluralsRange() []locales.PluralRule {
  87. return is.pluralsRange
  88. }
  89. // CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'is'
  90. func (is *is) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
  91. n := math.Abs(num)
  92. i := int64(n)
  93. t := locales.T(n, v)
  94. iMod10 := i % 10
  95. iMod100 := i % 100
  96. if (t == 0 && iMod10 == 1 && iMod100 != 11) || (t != 0) {
  97. return locales.PluralRuleOne
  98. }
  99. return locales.PluralRuleOther
  100. }
  101. // OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'is'
  102. func (is *is) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
  103. return locales.PluralRuleOther
  104. }
  105. // RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'is'
  106. func (is *is) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
  107. start := is.CardinalPluralRule(num1, v1)
  108. end := is.CardinalPluralRule(num2, v2)
  109. if start == locales.PluralRuleOne && end == locales.PluralRuleOne {
  110. return locales.PluralRuleOne
  111. } else if start == locales.PluralRuleOne && end == locales.PluralRuleOther {
  112. return locales.PluralRuleOther
  113. } else if start == locales.PluralRuleOther && end == locales.PluralRuleOne {
  114. return locales.PluralRuleOne
  115. }
  116. return locales.PluralRuleOther
  117. }
  118. // MonthAbbreviated returns the locales abbreviated month given the 'month' provided
  119. func (is *is) MonthAbbreviated(month time.Month) string {
  120. return is.monthsAbbreviated[month]
  121. }
  122. // MonthsAbbreviated returns the locales abbreviated months
  123. func (is *is) MonthsAbbreviated() []string {
  124. return is.monthsAbbreviated[1:]
  125. }
  126. // MonthNarrow returns the locales narrow month given the 'month' provided
  127. func (is *is) MonthNarrow(month time.Month) string {
  128. return is.monthsNarrow[month]
  129. }
  130. // MonthsNarrow returns the locales narrow months
  131. func (is *is) MonthsNarrow() []string {
  132. return is.monthsNarrow[1:]
  133. }
  134. // MonthWide returns the locales wide month given the 'month' provided
  135. func (is *is) MonthWide(month time.Month) string {
  136. return is.monthsWide[month]
  137. }
  138. // MonthsWide returns the locales wide months
  139. func (is *is) MonthsWide() []string {
  140. return is.monthsWide[1:]
  141. }
  142. // WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
  143. func (is *is) WeekdayAbbreviated(weekday time.Weekday) string {
  144. return is.daysAbbreviated[weekday]
  145. }
  146. // WeekdaysAbbreviated returns the locales abbreviated weekdays
  147. func (is *is) WeekdaysAbbreviated() []string {
  148. return is.daysAbbreviated
  149. }
  150. // WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
  151. func (is *is) WeekdayNarrow(weekday time.Weekday) string {
  152. return is.daysNarrow[weekday]
  153. }
  154. // WeekdaysNarrow returns the locales narrow weekdays
  155. func (is *is) WeekdaysNarrow() []string {
  156. return is.daysNarrow
  157. }
  158. // WeekdayShort returns the locales short weekday given the 'weekday' provided
  159. func (is *is) WeekdayShort(weekday time.Weekday) string {
  160. return is.daysShort[weekday]
  161. }
  162. // WeekdaysShort returns the locales short weekdays
  163. func (is *is) WeekdaysShort() []string {
  164. return is.daysShort
  165. }
  166. // WeekdayWide returns the locales wide weekday given the 'weekday' provided
  167. func (is *is) WeekdayWide(weekday time.Weekday) string {
  168. return is.daysWide[weekday]
  169. }
  170. // WeekdaysWide returns the locales wide weekdays
  171. func (is *is) WeekdaysWide() []string {
  172. return is.daysWide
  173. }
  174. // Decimal returns the decimal point of number
  175. func (is *is) Decimal() string {
  176. return is.decimal
  177. }
  178. // Group returns the group of number
  179. func (is *is) Group() string {
  180. return is.group
  181. }
  182. // Group returns the minus sign of number
  183. func (is *is) Minus() string {
  184. return is.minus
  185. }
  186. // FmtNumber returns 'num' with digits/precision of 'v' for 'is' and handles both Whole and Real numbers based on 'v'
  187. func (is *is) FmtNumber(num float64, v uint64) string {
  188. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  189. l := len(s) + 2 + 1*len(s[:len(s)-int(v)-1])/3
  190. count := 0
  191. inWhole := v == 0
  192. b := make([]byte, 0, l)
  193. for i := len(s) - 1; i >= 0; i-- {
  194. if s[i] == '.' {
  195. b = append(b, is.decimal[0])
  196. inWhole = true
  197. continue
  198. }
  199. if inWhole {
  200. if count == 3 {
  201. b = append(b, is.group[0])
  202. count = 1
  203. } else {
  204. count++
  205. }
  206. }
  207. b = append(b, s[i])
  208. }
  209. if num < 0 {
  210. b = append(b, is.minus[0])
  211. }
  212. // reverse
  213. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  214. b[i], b[j] = b[j], b[i]
  215. }
  216. return string(b)
  217. }
  218. // FmtPercent returns 'num' with digits/precision of 'v' for 'is' and handles both Whole and Real numbers based on 'v'
  219. // NOTE: 'num' passed into FmtPercent is assumed to be in percent already
  220. func (is *is) FmtPercent(num float64, v uint64) string {
  221. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  222. l := len(s) + 3
  223. b := make([]byte, 0, l)
  224. for i := len(s) - 1; i >= 0; i-- {
  225. if s[i] == '.' {
  226. b = append(b, is.decimal[0])
  227. continue
  228. }
  229. b = append(b, s[i])
  230. }
  231. if num < 0 {
  232. b = append(b, is.minus[0])
  233. }
  234. // reverse
  235. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  236. b[i], b[j] = b[j], b[i]
  237. }
  238. b = append(b, is.percent...)
  239. return string(b)
  240. }
  241. // FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'is'
  242. func (is *is) FmtCurrency(num float64, v uint64, currency currency.Type) string {
  243. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  244. symbol := is.currencies[currency]
  245. l := len(s) + len(symbol) + 4 + 1*len(s[:len(s)-int(v)-1])/3
  246. count := 0
  247. inWhole := v == 0
  248. b := make([]byte, 0, l)
  249. for i := len(s) - 1; i >= 0; i-- {
  250. if s[i] == '.' {
  251. b = append(b, is.decimal[0])
  252. inWhole = true
  253. continue
  254. }
  255. if inWhole {
  256. if count == 3 {
  257. b = append(b, is.group[0])
  258. count = 1
  259. } else {
  260. count++
  261. }
  262. }
  263. b = append(b, s[i])
  264. }
  265. if num < 0 {
  266. b = append(b, is.minus[0])
  267. }
  268. // reverse
  269. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  270. b[i], b[j] = b[j], b[i]
  271. }
  272. if int(v) < 2 {
  273. if v == 0 {
  274. b = append(b, is.decimal...)
  275. }
  276. for i := 0; i < 2-int(v); i++ {
  277. b = append(b, '0')
  278. }
  279. }
  280. b = append(b, is.currencyPositiveSuffix...)
  281. b = append(b, symbol...)
  282. return string(b)
  283. }
  284. // FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'is'
  285. // in accounting notation.
  286. func (is *is) FmtAccounting(num float64, v uint64, currency currency.Type) string {
  287. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  288. symbol := is.currencies[currency]
  289. l := len(s) + len(symbol) + 4 + 1*len(s[:len(s)-int(v)-1])/3
  290. count := 0
  291. inWhole := v == 0
  292. b := make([]byte, 0, l)
  293. for i := len(s) - 1; i >= 0; i-- {
  294. if s[i] == '.' {
  295. b = append(b, is.decimal[0])
  296. inWhole = true
  297. continue
  298. }
  299. if inWhole {
  300. if count == 3 {
  301. b = append(b, is.group[0])
  302. count = 1
  303. } else {
  304. count++
  305. }
  306. }
  307. b = append(b, s[i])
  308. }
  309. if num < 0 {
  310. b = append(b, is.minus[0])
  311. }
  312. // reverse
  313. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  314. b[i], b[j] = b[j], b[i]
  315. }
  316. if int(v) < 2 {
  317. if v == 0 {
  318. b = append(b, is.decimal...)
  319. }
  320. for i := 0; i < 2-int(v); i++ {
  321. b = append(b, '0')
  322. }
  323. }
  324. if num < 0 {
  325. b = append(b, is.currencyNegativeSuffix...)
  326. b = append(b, symbol...)
  327. } else {
  328. b = append(b, is.currencyPositiveSuffix...)
  329. b = append(b, symbol...)
  330. }
  331. return string(b)
  332. }
  333. // FmtDateShort returns the short date representation of 't' for 'is'
  334. func (is *is) FmtDateShort(t time.Time) string {
  335. b := make([]byte, 0, 32)
  336. b = strconv.AppendInt(b, int64(t.Day()), 10)
  337. b = append(b, []byte{0x2e}...)
  338. b = strconv.AppendInt(b, int64(t.Month()), 10)
  339. b = append(b, []byte{0x2e}...)
  340. if t.Year() > 0 {
  341. b = strconv.AppendInt(b, int64(t.Year()), 10)
  342. } else {
  343. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  344. }
  345. return string(b)
  346. }
  347. // FmtDateMedium returns the medium date representation of 't' for 'is'
  348. func (is *is) FmtDateMedium(t time.Time) string {
  349. b := make([]byte, 0, 32)
  350. b = strconv.AppendInt(b, int64(t.Day()), 10)
  351. b = append(b, []byte{0x2e, 0x20}...)
  352. b = append(b, is.monthsAbbreviated[t.Month()]...)
  353. b = append(b, []byte{0x20}...)
  354. if t.Year() > 0 {
  355. b = strconv.AppendInt(b, int64(t.Year()), 10)
  356. } else {
  357. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  358. }
  359. return string(b)
  360. }
  361. // FmtDateLong returns the long date representation of 't' for 'is'
  362. func (is *is) FmtDateLong(t time.Time) string {
  363. b := make([]byte, 0, 32)
  364. b = strconv.AppendInt(b, int64(t.Day()), 10)
  365. b = append(b, []byte{0x2e, 0x20}...)
  366. b = append(b, is.monthsWide[t.Month()]...)
  367. b = append(b, []byte{0x20}...)
  368. if t.Year() > 0 {
  369. b = strconv.AppendInt(b, int64(t.Year()), 10)
  370. } else {
  371. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  372. }
  373. return string(b)
  374. }
  375. // FmtDateFull returns the full date representation of 't' for 'is'
  376. func (is *is) FmtDateFull(t time.Time) string {
  377. b := make([]byte, 0, 32)
  378. b = append(b, is.daysWide[t.Weekday()]...)
  379. b = append(b, []byte{0x2c, 0x20}...)
  380. b = strconv.AppendInt(b, int64(t.Day()), 10)
  381. b = append(b, []byte{0x2e, 0x20}...)
  382. b = append(b, is.monthsWide[t.Month()]...)
  383. b = append(b, []byte{0x20}...)
  384. if t.Year() > 0 {
  385. b = strconv.AppendInt(b, int64(t.Year()), 10)
  386. } else {
  387. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  388. }
  389. return string(b)
  390. }
  391. // FmtTimeShort returns the short time representation of 't' for 'is'
  392. func (is *is) FmtTimeShort(t time.Time) string {
  393. b := make([]byte, 0, 32)
  394. if t.Hour() < 10 {
  395. b = append(b, '0')
  396. }
  397. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  398. b = append(b, is.timeSeparator...)
  399. if t.Minute() < 10 {
  400. b = append(b, '0')
  401. }
  402. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  403. return string(b)
  404. }
  405. // FmtTimeMedium returns the medium time representation of 't' for 'is'
  406. func (is *is) FmtTimeMedium(t time.Time) string {
  407. b := make([]byte, 0, 32)
  408. if t.Hour() < 10 {
  409. b = append(b, '0')
  410. }
  411. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  412. b = append(b, is.timeSeparator...)
  413. if t.Minute() < 10 {
  414. b = append(b, '0')
  415. }
  416. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  417. b = append(b, is.timeSeparator...)
  418. if t.Second() < 10 {
  419. b = append(b, '0')
  420. }
  421. b = strconv.AppendInt(b, int64(t.Second()), 10)
  422. return string(b)
  423. }
  424. // FmtTimeLong returns the long time representation of 't' for 'is'
  425. func (is *is) FmtTimeLong(t time.Time) string {
  426. b := make([]byte, 0, 32)
  427. if t.Hour() < 10 {
  428. b = append(b, '0')
  429. }
  430. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  431. b = append(b, is.timeSeparator...)
  432. if t.Minute() < 10 {
  433. b = append(b, '0')
  434. }
  435. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  436. b = append(b, is.timeSeparator...)
  437. if t.Second() < 10 {
  438. b = append(b, '0')
  439. }
  440. b = strconv.AppendInt(b, int64(t.Second()), 10)
  441. b = append(b, []byte{0x20}...)
  442. tz, _ := t.Zone()
  443. b = append(b, tz...)
  444. return string(b)
  445. }
  446. // FmtTimeFull returns the full time representation of 't' for 'is'
  447. func (is *is) FmtTimeFull(t time.Time) string {
  448. b := make([]byte, 0, 32)
  449. if t.Hour() < 10 {
  450. b = append(b, '0')
  451. }
  452. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  453. b = append(b, is.timeSeparator...)
  454. if t.Minute() < 10 {
  455. b = append(b, '0')
  456. }
  457. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  458. b = append(b, is.timeSeparator...)
  459. if t.Second() < 10 {
  460. b = append(b, '0')
  461. }
  462. b = strconv.AppendInt(b, int64(t.Second()), 10)
  463. b = append(b, []byte{0x20}...)
  464. tz, _ := t.Zone()
  465. if btz, ok := is.timezones[tz]; ok {
  466. b = append(b, btz...)
  467. } else {
  468. b = append(b, tz...)
  469. }
  470. return string(b)
  471. }