ga.go 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660
  1. package ga
  2. import (
  3. "math"
  4. "strconv"
  5. "time"
  6. "github.com/go-playground/locales"
  7. "github.com/go-playground/locales/currency"
  8. )
  9. type ga 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 'ga' locale
  41. func New() locales.Translator {
  42. return &ga{
  43. locale: "ga",
  44. pluralsCardinal: []locales.PluralRule{2, 3, 4, 5, 6},
  45. pluralsOrdinal: []locales.PluralRule{2, 6},
  46. pluralsRange: []locales.PluralRule{2, 3, 4, 5, 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", "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", "¥", "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", "STN", "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{"", "Ean", "Feabh", "Márta", "Aib", "Beal", "Meith", "Iúil", "Lún", "MFómh", "DFómh", "Samh", "Noll"},
  58. monthsNarrow: []string{"", "E", "F", "M", "A", "B", "M", "I", "L", "M", "D", "S", "N"},
  59. monthsWide: []string{"", "Eanáir", "Feabhra", "Márta", "Aibreán", "Bealtaine", "Meitheamh", "Iúil", "Lúnasa", "Meán Fómhair", "Deireadh Fómhair", "Samhain", "Nollaig"},
  60. daysAbbreviated: []string{"Domh", "Luan", "Máirt", "Céad", "Déar", "Aoine", "Sath"},
  61. daysNarrow: []string{"D", "L", "M", "C", "D", "A", "S"},
  62. daysShort: []string{"Do", "Lu", "Má", "Cé", "Dé", "Ao", "Sa"},
  63. daysWide: []string{"Dé Domhnaigh", "Dé Luain", "Dé Máirt", "Dé Céadaoin", "Déardaoin", "Dé hAoine", "Dé Sathairn"},
  64. periodsAbbreviated: []string{"r.n.", "i.n."},
  65. periodsNarrow: []string{"a", "p"},
  66. periodsWide: []string{"r.n.", "i.n."},
  67. erasAbbreviated: []string{"RC", "AD"},
  68. erasNarrow: []string{"RC", "AD"},
  69. erasWide: []string{"Roimh Chríost", "Anno Domini"},
  70. timezones: map[string]string{"TMST": "Am Samhraidh na Tuircméanastáine", "ART": "Am Caighdeánach na hAirgintíne", "ADT": "Am Samhraidh an Atlantaigh", "WEZ": "Am Caighdeánach Iarthar na hEorpa", "NZDT": "Am Samhraidh na Nua-Shéalainne", "HENOMX": "Am Samhraidh Iarthuaisceart Mheicsiceo", "ACWDT": "Am Samhraidh Mheániarthar na hAstráile", "LHST": "Am Caighdeánach Lord Howe", "VET": "Am Veiniséala", "HEPM": "Am Samhraidh Saint-Pierre-et-Miquelon", "WIT": "Am Oirthear na hIndinéise", "CLST": "Am Samhraidh na Sile", "MYT": "Am na Malaeisia", "EDT": "Am Samhraidh an Oirthir", "WIB": "Am Iarthar na hIndinéise", "CDT": "Am Samhraidh Lárnach", "AST": "Am Caighdeánach an Atlantaigh", "WART": "Am Caighdeánach Iarthar na hAirgintíne", "HNCU": "Am Caighdeánach Chúba", "ACDT": "Am Samhraidh Lár na hAstráile", "∅∅∅": "Am Samhraidh na nAsór", "ACWST": "Am Caighdeánach Mheániarthar na hAstráile", "CHAST": "Am Caighdeánach Chatham", "CHADT": "Am Samhraidh Chatham", "JDT": "Am Samhraidh na Seapáine", "BT": "Am na Bútáine", "HNT": "Am Caighdeánach Thalamh an Éisc", "HNPM": "Am Caighdeánach Saint-Pierre-et-Miquelon", "HNPMX": "Am Caighdeánach Meicsiceach an Aigéin Chiúin", "AEDT": "Am Samhraidh Oirthear na hAstráile", "SAST": "Am Caighdeánach na hAfraice Theas", "MEZ": "Am Caighdeánach Lár na hEorpa", "MESZ": "Am Samhraidh Lár na hEorpa", "GMT": "Meán-Am Greenwich", "AWDT": "Am Samhraidh Iarthar na hAstráile", "OEZ": "Am Caighdeánach Oirthear na hEorpa", "HEPMX": "Am Samhraidh Meicsiceach an Aigéin Chiúin", "HAT": "Am Samhraidh Thalamh an Éisc", "HNNOMX": "Am Caighdeánach Iarthuaisceart Mheicsiceo", "EST": "Am Caighdeánach an Oirthir", "IST": "Am Caighdeánach na hIndia", "ChST": "Am Caighdeánach Seamórach", "BOT": "Am na Bolaive", "HNEG": "Am Caighdeánach Oirthear na Graonlainne", "UYT": "Am Caighdeánach Uragua", "ECT": "Am Eacuadór", "HEOG": "Am Samhraidh Iarthar na Graonlainne", "HAST": "Am Caighdeánach Haváí-Ailiúit", "UYST": "Am Samhraidh Uragua", "AWST": "Am Caighdeánach Iarthar na hAstráile", "JST": "Am Caighdeánach na Seapáine", "MST": "Am Caighdeánach Mhacao", "WITA": "Am Lár na hIndinéise", "ARST": "Am Samhraidh na hAirgintíne", "PDT": "Am Samhraidh an Aigéin Chiúin", "AEST": "Am Caighdeánach Oirthear na hAstráile", "WESZ": "Am Samhraidh Iarthar na hEorpa", "GFT": "Am Ghuáin na Fraince", "HKT": "Am Caighdeánach Hong Cong", "WARST": "Am Samhraidh Iarthar na hAirgintíne", "TMT": "Am Caighdeánach na Tuircméanastáine", "COT": "Am Caighdeánach na Colóime", "HADT": "Am Samhraidh Haváí-Ailiúit", "WAT": "Am Caighdeánach Iarthar na hAfraice", "AKST": "Am Caighdeánach Alasca", "HNOG": "Am Caighdeánach Iarthar na Graonlainne", "MDT": "Am Samhraidh Mhacao", "CAT": "Am Lár na hAfraice", "COST": "Am Samhraidh na Colóime", "WAST": "Am Samhraidh Iarthar na hAfraice", "NZST": "Am Caighdeánach na Nua-Shéalainne", "HEEG": "Am Samhraidh Oirthear na Graonlainne", "SRT": "Am Shuranam", "EAT": "Am Oirthear na hAfraice", "GYT": "Am na Guáine", "HECU": "Am Samhraidh Chúba", "CST": "Am Caighdeánach Lárnach", "AKDT": "Am Samhraidh Alasca", "LHDT": "Am Samhraidh Lord Howe", "HKST": "Am Samhraidh Hong Cong", "CLT": "Am Caighdeánach na Sile", "PST": "Am Caighdeánach an Aigéin Chiúin", "SGT": "Am Caighdeánach Shingeapór", "ACST": "Am Caighdeánach Lár na hAstráile", "OESZ": "Am Samhraidh Oirthear na hEorpa"},
  71. }
  72. }
  73. // Locale returns the current translators string locale
  74. func (ga *ga) Locale() string {
  75. return ga.locale
  76. }
  77. // PluralsCardinal returns the list of cardinal plural rules associated with 'ga'
  78. func (ga *ga) PluralsCardinal() []locales.PluralRule {
  79. return ga.pluralsCardinal
  80. }
  81. // PluralsOrdinal returns the list of ordinal plural rules associated with 'ga'
  82. func (ga *ga) PluralsOrdinal() []locales.PluralRule {
  83. return ga.pluralsOrdinal
  84. }
  85. // PluralsRange returns the list of range plural rules associated with 'ga'
  86. func (ga *ga) PluralsRange() []locales.PluralRule {
  87. return ga.pluralsRange
  88. }
  89. // CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'ga'
  90. func (ga *ga) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
  91. n := math.Abs(num)
  92. if n == 1 {
  93. return locales.PluralRuleOne
  94. } else if n == 2 {
  95. return locales.PluralRuleTwo
  96. } else if n >= 3 && n <= 6 {
  97. return locales.PluralRuleFew
  98. } else if n >= 7 && n <= 10 {
  99. return locales.PluralRuleMany
  100. }
  101. return locales.PluralRuleOther
  102. }
  103. // OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'ga'
  104. func (ga *ga) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
  105. n := math.Abs(num)
  106. if n == 1 {
  107. return locales.PluralRuleOne
  108. }
  109. return locales.PluralRuleOther
  110. }
  111. // RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'ga'
  112. func (ga *ga) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
  113. start := ga.CardinalPluralRule(num1, v1)
  114. end := ga.CardinalPluralRule(num2, v2)
  115. if start == locales.PluralRuleOne && end == locales.PluralRuleTwo {
  116. return locales.PluralRuleTwo
  117. } else if start == locales.PluralRuleOne && end == locales.PluralRuleFew {
  118. return locales.PluralRuleFew
  119. } else if start == locales.PluralRuleOne && end == locales.PluralRuleMany {
  120. return locales.PluralRuleMany
  121. } else if start == locales.PluralRuleOne && end == locales.PluralRuleOther {
  122. return locales.PluralRuleOther
  123. } else if start == locales.PluralRuleTwo && end == locales.PluralRuleFew {
  124. return locales.PluralRuleFew
  125. } else if start == locales.PluralRuleTwo && end == locales.PluralRuleMany {
  126. return locales.PluralRuleMany
  127. } else if start == locales.PluralRuleTwo && end == locales.PluralRuleOther {
  128. return locales.PluralRuleOther
  129. } else if start == locales.PluralRuleFew && end == locales.PluralRuleFew {
  130. return locales.PluralRuleFew
  131. } else if start == locales.PluralRuleFew && end == locales.PluralRuleMany {
  132. return locales.PluralRuleMany
  133. } else if start == locales.PluralRuleFew && end == locales.PluralRuleOther {
  134. return locales.PluralRuleOther
  135. } else if start == locales.PluralRuleMany && end == locales.PluralRuleMany {
  136. return locales.PluralRuleMany
  137. } else if start == locales.PluralRuleMany && end == locales.PluralRuleOther {
  138. return locales.PluralRuleOther
  139. } else if start == locales.PluralRuleOther && end == locales.PluralRuleOne {
  140. return locales.PluralRuleOne
  141. } else if start == locales.PluralRuleOther && end == locales.PluralRuleTwo {
  142. return locales.PluralRuleTwo
  143. } else if start == locales.PluralRuleOther && end == locales.PluralRuleFew {
  144. return locales.PluralRuleFew
  145. } else if start == locales.PluralRuleOther && end == locales.PluralRuleMany {
  146. return locales.PluralRuleMany
  147. }
  148. return locales.PluralRuleOther
  149. }
  150. // MonthAbbreviated returns the locales abbreviated month given the 'month' provided
  151. func (ga *ga) MonthAbbreviated(month time.Month) string {
  152. return ga.monthsAbbreviated[month]
  153. }
  154. // MonthsAbbreviated returns the locales abbreviated months
  155. func (ga *ga) MonthsAbbreviated() []string {
  156. return ga.monthsAbbreviated[1:]
  157. }
  158. // MonthNarrow returns the locales narrow month given the 'month' provided
  159. func (ga *ga) MonthNarrow(month time.Month) string {
  160. return ga.monthsNarrow[month]
  161. }
  162. // MonthsNarrow returns the locales narrow months
  163. func (ga *ga) MonthsNarrow() []string {
  164. return ga.monthsNarrow[1:]
  165. }
  166. // MonthWide returns the locales wide month given the 'month' provided
  167. func (ga *ga) MonthWide(month time.Month) string {
  168. return ga.monthsWide[month]
  169. }
  170. // MonthsWide returns the locales wide months
  171. func (ga *ga) MonthsWide() []string {
  172. return ga.monthsWide[1:]
  173. }
  174. // WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
  175. func (ga *ga) WeekdayAbbreviated(weekday time.Weekday) string {
  176. return ga.daysAbbreviated[weekday]
  177. }
  178. // WeekdaysAbbreviated returns the locales abbreviated weekdays
  179. func (ga *ga) WeekdaysAbbreviated() []string {
  180. return ga.daysAbbreviated
  181. }
  182. // WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
  183. func (ga *ga) WeekdayNarrow(weekday time.Weekday) string {
  184. return ga.daysNarrow[weekday]
  185. }
  186. // WeekdaysNarrow returns the locales narrow weekdays
  187. func (ga *ga) WeekdaysNarrow() []string {
  188. return ga.daysNarrow
  189. }
  190. // WeekdayShort returns the locales short weekday given the 'weekday' provided
  191. func (ga *ga) WeekdayShort(weekday time.Weekday) string {
  192. return ga.daysShort[weekday]
  193. }
  194. // WeekdaysShort returns the locales short weekdays
  195. func (ga *ga) WeekdaysShort() []string {
  196. return ga.daysShort
  197. }
  198. // WeekdayWide returns the locales wide weekday given the 'weekday' provided
  199. func (ga *ga) WeekdayWide(weekday time.Weekday) string {
  200. return ga.daysWide[weekday]
  201. }
  202. // WeekdaysWide returns the locales wide weekdays
  203. func (ga *ga) WeekdaysWide() []string {
  204. return ga.daysWide
  205. }
  206. // Decimal returns the decimal point of number
  207. func (ga *ga) Decimal() string {
  208. return ga.decimal
  209. }
  210. // Group returns the group of number
  211. func (ga *ga) Group() string {
  212. return ga.group
  213. }
  214. // Group returns the minus sign of number
  215. func (ga *ga) Minus() string {
  216. return ga.minus
  217. }
  218. // FmtNumber returns 'num' with digits/precision of 'v' for 'ga' and handles both Whole and Real numbers based on 'v'
  219. func (ga *ga) FmtNumber(num float64, v uint64) string {
  220. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  221. l := len(s) + 2 + 1*len(s[:len(s)-int(v)-1])/3
  222. count := 0
  223. inWhole := v == 0
  224. b := make([]byte, 0, l)
  225. for i := len(s) - 1; i >= 0; i-- {
  226. if s[i] == '.' {
  227. b = append(b, ga.decimal[0])
  228. inWhole = true
  229. continue
  230. }
  231. if inWhole {
  232. if count == 3 {
  233. b = append(b, ga.group[0])
  234. count = 1
  235. } else {
  236. count++
  237. }
  238. }
  239. b = append(b, s[i])
  240. }
  241. if num < 0 {
  242. b = append(b, ga.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. return string(b)
  249. }
  250. // FmtPercent returns 'num' with digits/precision of 'v' for 'ga' and handles both Whole and Real numbers based on 'v'
  251. // NOTE: 'num' passed into FmtPercent is assumed to be in percent already
  252. func (ga *ga) FmtPercent(num float64, v uint64) string {
  253. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  254. l := len(s) + 3
  255. b := make([]byte, 0, l)
  256. for i := len(s) - 1; i >= 0; i-- {
  257. if s[i] == '.' {
  258. b = append(b, ga.decimal[0])
  259. continue
  260. }
  261. b = append(b, s[i])
  262. }
  263. if num < 0 {
  264. b = append(b, ga.minus[0])
  265. }
  266. // reverse
  267. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  268. b[i], b[j] = b[j], b[i]
  269. }
  270. b = append(b, ga.percent...)
  271. return string(b)
  272. }
  273. // FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'ga'
  274. func (ga *ga) FmtCurrency(num float64, v uint64, currency currency.Type) string {
  275. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  276. symbol := ga.currencies[currency]
  277. l := len(s) + len(symbol) + 2 + 1*len(s[:len(s)-int(v)-1])/3
  278. count := 0
  279. inWhole := v == 0
  280. b := make([]byte, 0, l)
  281. for i := len(s) - 1; i >= 0; i-- {
  282. if s[i] == '.' {
  283. b = append(b, ga.decimal[0])
  284. inWhole = true
  285. continue
  286. }
  287. if inWhole {
  288. if count == 3 {
  289. b = append(b, ga.group[0])
  290. count = 1
  291. } else {
  292. count++
  293. }
  294. }
  295. b = append(b, s[i])
  296. }
  297. for j := len(symbol) - 1; j >= 0; j-- {
  298. b = append(b, symbol[j])
  299. }
  300. if num < 0 {
  301. b = append(b, ga.minus[0])
  302. }
  303. // reverse
  304. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  305. b[i], b[j] = b[j], b[i]
  306. }
  307. if int(v) < 2 {
  308. if v == 0 {
  309. b = append(b, ga.decimal...)
  310. }
  311. for i := 0; i < 2-int(v); i++ {
  312. b = append(b, '0')
  313. }
  314. }
  315. return string(b)
  316. }
  317. // FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'ga'
  318. // in accounting notation.
  319. func (ga *ga) FmtAccounting(num float64, v uint64, currency currency.Type) string {
  320. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  321. symbol := ga.currencies[currency]
  322. l := len(s) + len(symbol) + 4 + 1*len(s[:len(s)-int(v)-1])/3
  323. count := 0
  324. inWhole := v == 0
  325. b := make([]byte, 0, l)
  326. for i := len(s) - 1; i >= 0; i-- {
  327. if s[i] == '.' {
  328. b = append(b, ga.decimal[0])
  329. inWhole = true
  330. continue
  331. }
  332. if inWhole {
  333. if count == 3 {
  334. b = append(b, ga.group[0])
  335. count = 1
  336. } else {
  337. count++
  338. }
  339. }
  340. b = append(b, s[i])
  341. }
  342. if num < 0 {
  343. for j := len(symbol) - 1; j >= 0; j-- {
  344. b = append(b, symbol[j])
  345. }
  346. b = append(b, ga.currencyNegativePrefix[0])
  347. } else {
  348. for j := len(symbol) - 1; j >= 0; j-- {
  349. b = append(b, symbol[j])
  350. }
  351. }
  352. // reverse
  353. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  354. b[i], b[j] = b[j], b[i]
  355. }
  356. if int(v) < 2 {
  357. if v == 0 {
  358. b = append(b, ga.decimal...)
  359. }
  360. for i := 0; i < 2-int(v); i++ {
  361. b = append(b, '0')
  362. }
  363. }
  364. if num < 0 {
  365. b = append(b, ga.currencyNegativeSuffix...)
  366. }
  367. return string(b)
  368. }
  369. // FmtDateShort returns the short date representation of 't' for 'ga'
  370. func (ga *ga) FmtDateShort(t time.Time) string {
  371. b := make([]byte, 0, 32)
  372. if t.Day() < 10 {
  373. b = append(b, '0')
  374. }
  375. b = strconv.AppendInt(b, int64(t.Day()), 10)
  376. b = append(b, []byte{0x2f}...)
  377. if t.Month() < 10 {
  378. b = append(b, '0')
  379. }
  380. b = strconv.AppendInt(b, int64(t.Month()), 10)
  381. b = append(b, []byte{0x2f}...)
  382. if t.Year() > 0 {
  383. b = strconv.AppendInt(b, int64(t.Year()), 10)
  384. } else {
  385. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  386. }
  387. return string(b)
  388. }
  389. // FmtDateMedium returns the medium date representation of 't' for 'ga'
  390. func (ga *ga) FmtDateMedium(t time.Time) string {
  391. b := make([]byte, 0, 32)
  392. b = strconv.AppendInt(b, int64(t.Day()), 10)
  393. b = append(b, []byte{0x20}...)
  394. b = append(b, ga.monthsAbbreviated[t.Month()]...)
  395. b = append(b, []byte{0x20}...)
  396. if t.Year() > 0 {
  397. b = strconv.AppendInt(b, int64(t.Year()), 10)
  398. } else {
  399. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  400. }
  401. return string(b)
  402. }
  403. // FmtDateLong returns the long date representation of 't' for 'ga'
  404. func (ga *ga) FmtDateLong(t time.Time) string {
  405. b := make([]byte, 0, 32)
  406. b = strconv.AppendInt(b, int64(t.Day()), 10)
  407. b = append(b, []byte{0x20}...)
  408. b = append(b, ga.monthsWide[t.Month()]...)
  409. b = append(b, []byte{0x20}...)
  410. if t.Year() > 0 {
  411. b = strconv.AppendInt(b, int64(t.Year()), 10)
  412. } else {
  413. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  414. }
  415. return string(b)
  416. }
  417. // FmtDateFull returns the full date representation of 't' for 'ga'
  418. func (ga *ga) FmtDateFull(t time.Time) string {
  419. b := make([]byte, 0, 32)
  420. b = append(b, ga.daysWide[t.Weekday()]...)
  421. b = append(b, []byte{0x20}...)
  422. b = strconv.AppendInt(b, int64(t.Day()), 10)
  423. b = append(b, []byte{0x20}...)
  424. b = append(b, ga.monthsWide[t.Month()]...)
  425. b = append(b, []byte{0x20}...)
  426. if t.Year() > 0 {
  427. b = strconv.AppendInt(b, int64(t.Year()), 10)
  428. } else {
  429. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  430. }
  431. return string(b)
  432. }
  433. // FmtTimeShort returns the short time representation of 't' for 'ga'
  434. func (ga *ga) FmtTimeShort(t time.Time) string {
  435. b := make([]byte, 0, 32)
  436. if t.Hour() < 10 {
  437. b = append(b, '0')
  438. }
  439. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  440. b = append(b, ga.timeSeparator...)
  441. if t.Minute() < 10 {
  442. b = append(b, '0')
  443. }
  444. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  445. return string(b)
  446. }
  447. // FmtTimeMedium returns the medium time representation of 't' for 'ga'
  448. func (ga *ga) FmtTimeMedium(t time.Time) string {
  449. b := make([]byte, 0, 32)
  450. if t.Hour() < 10 {
  451. b = append(b, '0')
  452. }
  453. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  454. b = append(b, ga.timeSeparator...)
  455. if t.Minute() < 10 {
  456. b = append(b, '0')
  457. }
  458. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  459. b = append(b, ga.timeSeparator...)
  460. if t.Second() < 10 {
  461. b = append(b, '0')
  462. }
  463. b = strconv.AppendInt(b, int64(t.Second()), 10)
  464. return string(b)
  465. }
  466. // FmtTimeLong returns the long time representation of 't' for 'ga'
  467. func (ga *ga) FmtTimeLong(t time.Time) string {
  468. b := make([]byte, 0, 32)
  469. if t.Hour() < 10 {
  470. b = append(b, '0')
  471. }
  472. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  473. b = append(b, ga.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, ga.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. tz, _ := t.Zone()
  485. b = append(b, tz...)
  486. return string(b)
  487. }
  488. // FmtTimeFull returns the full time representation of 't' for 'ga'
  489. func (ga *ga) FmtTimeFull(t time.Time) string {
  490. b := make([]byte, 0, 32)
  491. if t.Hour() < 10 {
  492. b = append(b, '0')
  493. }
  494. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  495. b = append(b, ga.timeSeparator...)
  496. if t.Minute() < 10 {
  497. b = append(b, '0')
  498. }
  499. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  500. b = append(b, ga.timeSeparator...)
  501. if t.Second() < 10 {
  502. b = append(b, '0')
  503. }
  504. b = strconv.AppendInt(b, int64(t.Second()), 10)
  505. b = append(b, []byte{0x20}...)
  506. tz, _ := t.Zone()
  507. if btz, ok := ga.timezones[tz]; ok {
  508. b = append(b, btz...)
  509. } else {
  510. b = append(b, tz...)
  511. }
  512. return string(b)
  513. }