ms_SG.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. package ms_SG
  2. import (
  3. "math"
  4. "strconv"
  5. "time"
  6. "github.com/go-playground/locales"
  7. "github.com/go-playground/locales/currency"
  8. )
  9. type ms_SG 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 'ms_SG' locale
  41. func New() locales.Translator {
  42. return &ms_SG{
  43. locale: "ms_SG",
  44. pluralsCardinal: []locales.PluralRule{6},
  45. pluralsOrdinal: []locales.PluralRule{2, 6},
  46. pluralsRange: []locales.PluralRule{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", "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", "$", "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", "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{"", "Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"},
  58. monthsNarrow: []string{"", "J", "F", "M", "A", "M", "J", "J", "O", "S", "O", "N", "D"},
  59. monthsWide: []string{"", "Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"},
  60. daysAbbreviated: []string{"Ahd", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab"},
  61. daysNarrow: []string{"A", "I", "S", "R", "K", "J", "S"},
  62. daysShort: []string{"Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa"},
  63. daysWide: []string{"Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu"},
  64. periodsAbbreviated: []string{"PG", "PTG"},
  65. periodsNarrow: []string{"a", "p"},
  66. periodsWide: []string{"PG", "PTG"},
  67. erasAbbreviated: []string{"S.M.", "TM"},
  68. erasNarrow: []string{"S.M.", "TM"},
  69. erasWide: []string{"S.M.", "TM"},
  70. timezones: map[string]string{"AEST": "Waktu Piawai Timur Australia", "ACWST": "Waktu Piawai Barat Tengah Australia", "HNPM": "Waktu Piawai Saint Pierre dan Miquelon", "HENOMX": "Waktu Siang Barat Laut Mexico", "CLT": "Waktu Piawai Chile", "CHAST": "Waktu Piawai Chatham", "PST": "Waktu Piawai Pasifik", "EDT": "Waktu Siang Timur", "MEZ": "Waktu Piawai Eropah Tengah", "VET": "Waktu Venezuela", "TMST": "Waktu Musim Panas Turkmenistan", "GMT": "Waktu Min Greenwich", "AWST": "Waktu Piawai Australia Barat", "HNPMX": "Waktu Piawai Pasifik Mexico", "AKST": "Waktu Piawai Alaska", "SGT": "Waktu Piawai Singapura", "EST": "Waktu Piawai Timur", "TMT": "Waktu Piawai Turkmenistan", "SAST": "Waktu Piawai Afrika Selatan", "WAT": "Waktu Piawai Afrika Barat", "WIB": "Waktu Indonesia Barat", "AKDT": "Waktu Siang Alaska", "HEOG": "Waktu Musim Panas Greenland Barat", "COT": "Waktu Piawai Colombia", "HNCU": "Waktu Piawai Cuba", "∅∅∅": "Waktu Musim Panas Brasilia", "AST": "Waktu Piawai Atlantik", "MYT": "Waktu Malaysia", "BOT": "Waktu Bolivia", "PDT": "Waktu Siang Pasifik", "HEPMX": "Waktu Siang Pasifik Mexico", "ADT": "Waktu Siang Atlantik", "MDT": "Waktu Hari Siang Pergunungan", "NZDT": "Waktu Siang New Zealand", "ACST": "Waktu Piawai Australia Tengah", "HNT": "Waktu Piawai Newfoundland", "ART": "Waktu Piawai Argentina", "ACDT": "Waktu Siang Australia Tengah", "HNEG": "Waktu Piawai Greenland Timur", "MESZ": "Waktu Musim Panas Eropah Tengah", "HKST": "Waktu Musim Panas Hong Kong", "LHST": "Waktu Piawai Lord Howe", "HAT": "Waktu Siang Newfoundland", "CAT": "Waktu Afrika Tengah", "WIT": "Waktu Indonesia Timur", "OEZ": "Waktu Piawai Eropah Timur", "AEDT": "Waktu Siang Australia Timur", "WART": "Waktu Piawai Argentina Barat", "WARST": "Waktu Musim Panas Argentina Barat", "UYT": "Waktu Piawai Uruguay", "WAST": "Waktu Musim Panas Afrika Barat", "WEZ": "Waktu Piawai Eropah Barat", "BT": "Waktu Bhutan", "GFT": "Waktu Guyana Perancis", "ACWDT": "Waktu Siang Barat Tengah Australia", "HECU": "Waktu Siang Cuba", "CST": "Waktu Piawai Pusat", "JST": "Waktu Piawai Jepun", "UYST": "Waktu Musim Panas Uruguay", "NZST": "Waktu Piawai New Zealand", "HKT": "Waktu Piawai Hong Kong", "HEPM": "Waktu Siang Saint Pierre dan Miquelon", "OESZ": "Waktu Musim Panas Eropah Timur", "HADT": "Waktu Siang Hawaii-Aleutian", "GYT": "Waktu Guyana", "ChST": "Waktu Piawai Chamorro", "HEEG": "Waktu Musim Panas Greenland Timur", "HNOG": "Waktu Piawai Greenland Barat", "HNNOMX": "Waktu Piawai Barat Laut Mexico", "CDT": "Waktu Siang Tengah", "MST": "Waktu Piawai Pergunungan", "JDT": "Waktu Siang Jepun", "IST": "Waktu Piawai India", "WESZ": "Waktu Musim Panas Eropah Barat", "LHDT": "Waktu Siang Lord Howe", "CLST": "Waktu Musim Panas Chile", "ARST": "Waktu Musim Panas Argentina", "COST": "Waktu Musim Panas Colombia", "CHADT": "Waktu Siang Chatham", "AWDT": "Waktu Siang Australia Barat", "ECT": "Waktu Ecuador", "WITA": "Waktu Indonesia Tengah", "SRT": "Waktu Suriname", "EAT": "Waktu Afrika Timur", "HAST": "Waktu Piawai Hawaii-Aleutian"},
  71. }
  72. }
  73. // Locale returns the current translators string locale
  74. func (ms *ms_SG) Locale() string {
  75. return ms.locale
  76. }
  77. // PluralsCardinal returns the list of cardinal plural rules associated with 'ms_SG'
  78. func (ms *ms_SG) PluralsCardinal() []locales.PluralRule {
  79. return ms.pluralsCardinal
  80. }
  81. // PluralsOrdinal returns the list of ordinal plural rules associated with 'ms_SG'
  82. func (ms *ms_SG) PluralsOrdinal() []locales.PluralRule {
  83. return ms.pluralsOrdinal
  84. }
  85. // PluralsRange returns the list of range plural rules associated with 'ms_SG'
  86. func (ms *ms_SG) PluralsRange() []locales.PluralRule {
  87. return ms.pluralsRange
  88. }
  89. // CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'ms_SG'
  90. func (ms *ms_SG) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
  91. return locales.PluralRuleOther
  92. }
  93. // OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'ms_SG'
  94. func (ms *ms_SG) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
  95. n := math.Abs(num)
  96. if n == 1 {
  97. return locales.PluralRuleOne
  98. }
  99. return locales.PluralRuleOther
  100. }
  101. // RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'ms_SG'
  102. func (ms *ms_SG) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
  103. return locales.PluralRuleOther
  104. }
  105. // MonthAbbreviated returns the locales abbreviated month given the 'month' provided
  106. func (ms *ms_SG) MonthAbbreviated(month time.Month) string {
  107. return ms.monthsAbbreviated[month]
  108. }
  109. // MonthsAbbreviated returns the locales abbreviated months
  110. func (ms *ms_SG) MonthsAbbreviated() []string {
  111. return ms.monthsAbbreviated[1:]
  112. }
  113. // MonthNarrow returns the locales narrow month given the 'month' provided
  114. func (ms *ms_SG) MonthNarrow(month time.Month) string {
  115. return ms.monthsNarrow[month]
  116. }
  117. // MonthsNarrow returns the locales narrow months
  118. func (ms *ms_SG) MonthsNarrow() []string {
  119. return ms.monthsNarrow[1:]
  120. }
  121. // MonthWide returns the locales wide month given the 'month' provided
  122. func (ms *ms_SG) MonthWide(month time.Month) string {
  123. return ms.monthsWide[month]
  124. }
  125. // MonthsWide returns the locales wide months
  126. func (ms *ms_SG) MonthsWide() []string {
  127. return ms.monthsWide[1:]
  128. }
  129. // WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
  130. func (ms *ms_SG) WeekdayAbbreviated(weekday time.Weekday) string {
  131. return ms.daysAbbreviated[weekday]
  132. }
  133. // WeekdaysAbbreviated returns the locales abbreviated weekdays
  134. func (ms *ms_SG) WeekdaysAbbreviated() []string {
  135. return ms.daysAbbreviated
  136. }
  137. // WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
  138. func (ms *ms_SG) WeekdayNarrow(weekday time.Weekday) string {
  139. return ms.daysNarrow[weekday]
  140. }
  141. // WeekdaysNarrow returns the locales narrow weekdays
  142. func (ms *ms_SG) WeekdaysNarrow() []string {
  143. return ms.daysNarrow
  144. }
  145. // WeekdayShort returns the locales short weekday given the 'weekday' provided
  146. func (ms *ms_SG) WeekdayShort(weekday time.Weekday) string {
  147. return ms.daysShort[weekday]
  148. }
  149. // WeekdaysShort returns the locales short weekdays
  150. func (ms *ms_SG) WeekdaysShort() []string {
  151. return ms.daysShort
  152. }
  153. // WeekdayWide returns the locales wide weekday given the 'weekday' provided
  154. func (ms *ms_SG) WeekdayWide(weekday time.Weekday) string {
  155. return ms.daysWide[weekday]
  156. }
  157. // WeekdaysWide returns the locales wide weekdays
  158. func (ms *ms_SG) WeekdaysWide() []string {
  159. return ms.daysWide
  160. }
  161. // Decimal returns the decimal point of number
  162. func (ms *ms_SG) Decimal() string {
  163. return ms.decimal
  164. }
  165. // Group returns the group of number
  166. func (ms *ms_SG) Group() string {
  167. return ms.group
  168. }
  169. // Group returns the minus sign of number
  170. func (ms *ms_SG) Minus() string {
  171. return ms.minus
  172. }
  173. // FmtNumber returns 'num' with digits/precision of 'v' for 'ms_SG' and handles both Whole and Real numbers based on 'v'
  174. func (ms *ms_SG) FmtNumber(num float64, v uint64) string {
  175. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  176. l := len(s) + 2 + 1*len(s[:len(s)-int(v)-1])/3
  177. count := 0
  178. inWhole := v == 0
  179. b := make([]byte, 0, l)
  180. for i := len(s) - 1; i >= 0; i-- {
  181. if s[i] == '.' {
  182. b = append(b, ms.decimal[0])
  183. inWhole = true
  184. continue
  185. }
  186. if inWhole {
  187. if count == 3 {
  188. b = append(b, ms.group[0])
  189. count = 1
  190. } else {
  191. count++
  192. }
  193. }
  194. b = append(b, s[i])
  195. }
  196. if num < 0 {
  197. b = append(b, ms.minus[0])
  198. }
  199. // reverse
  200. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  201. b[i], b[j] = b[j], b[i]
  202. }
  203. return string(b)
  204. }
  205. // FmtPercent returns 'num' with digits/precision of 'v' for 'ms_SG' and handles both Whole and Real numbers based on 'v'
  206. // NOTE: 'num' passed into FmtPercent is assumed to be in percent already
  207. func (ms *ms_SG) FmtPercent(num float64, v uint64) string {
  208. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  209. l := len(s) + 3
  210. b := make([]byte, 0, l)
  211. for i := len(s) - 1; i >= 0; i-- {
  212. if s[i] == '.' {
  213. b = append(b, ms.decimal[0])
  214. continue
  215. }
  216. b = append(b, s[i])
  217. }
  218. if num < 0 {
  219. b = append(b, ms.minus[0])
  220. }
  221. // reverse
  222. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  223. b[i], b[j] = b[j], b[i]
  224. }
  225. b = append(b, ms.percent...)
  226. return string(b)
  227. }
  228. // FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'ms_SG'
  229. func (ms *ms_SG) FmtCurrency(num float64, v uint64, currency currency.Type) string {
  230. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  231. symbol := ms.currencies[currency]
  232. l := len(s) + len(symbol) + 2 + 1*len(s[:len(s)-int(v)-1])/3
  233. count := 0
  234. inWhole := v == 0
  235. b := make([]byte, 0, l)
  236. for i := len(s) - 1; i >= 0; i-- {
  237. if s[i] == '.' {
  238. b = append(b, ms.decimal[0])
  239. inWhole = true
  240. continue
  241. }
  242. if inWhole {
  243. if count == 3 {
  244. b = append(b, ms.group[0])
  245. count = 1
  246. } else {
  247. count++
  248. }
  249. }
  250. b = append(b, s[i])
  251. }
  252. for j := len(symbol) - 1; j >= 0; j-- {
  253. b = append(b, symbol[j])
  254. }
  255. if num < 0 {
  256. b = append(b, ms.minus[0])
  257. }
  258. // reverse
  259. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  260. b[i], b[j] = b[j], b[i]
  261. }
  262. if int(v) < 2 {
  263. if v == 0 {
  264. b = append(b, ms.decimal...)
  265. }
  266. for i := 0; i < 2-int(v); i++ {
  267. b = append(b, '0')
  268. }
  269. }
  270. return string(b)
  271. }
  272. // FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'ms_SG'
  273. // in accounting notation.
  274. func (ms *ms_SG) FmtAccounting(num float64, v uint64, currency currency.Type) string {
  275. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  276. symbol := ms.currencies[currency]
  277. l := len(s) + len(symbol) + 4 + 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, ms.decimal[0])
  284. inWhole = true
  285. continue
  286. }
  287. if inWhole {
  288. if count == 3 {
  289. b = append(b, ms.group[0])
  290. count = 1
  291. } else {
  292. count++
  293. }
  294. }
  295. b = append(b, s[i])
  296. }
  297. if num < 0 {
  298. for j := len(symbol) - 1; j >= 0; j-- {
  299. b = append(b, symbol[j])
  300. }
  301. b = append(b, ms.currencyNegativePrefix[0])
  302. } else {
  303. for j := len(symbol) - 1; j >= 0; j-- {
  304. b = append(b, symbol[j])
  305. }
  306. }
  307. // reverse
  308. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  309. b[i], b[j] = b[j], b[i]
  310. }
  311. if int(v) < 2 {
  312. if v == 0 {
  313. b = append(b, ms.decimal...)
  314. }
  315. for i := 0; i < 2-int(v); i++ {
  316. b = append(b, '0')
  317. }
  318. }
  319. if num < 0 {
  320. b = append(b, ms.currencyNegativeSuffix...)
  321. }
  322. return string(b)
  323. }
  324. // FmtDateShort returns the short date representation of 't' for 'ms_SG'
  325. func (ms *ms_SG) FmtDateShort(t time.Time) string {
  326. b := make([]byte, 0, 32)
  327. b = strconv.AppendInt(b, int64(t.Day()), 10)
  328. b = append(b, []byte{0x2f}...)
  329. if t.Month() < 10 {
  330. b = append(b, '0')
  331. }
  332. b = strconv.AppendInt(b, int64(t.Month()), 10)
  333. b = append(b, []byte{0x2f}...)
  334. if t.Year() > 9 {
  335. b = append(b, strconv.Itoa(t.Year())[2:]...)
  336. } else {
  337. b = append(b, strconv.Itoa(t.Year())[1:]...)
  338. }
  339. return string(b)
  340. }
  341. // FmtDateMedium returns the medium date representation of 't' for 'ms_SG'
  342. func (ms *ms_SG) FmtDateMedium(t time.Time) string {
  343. b := make([]byte, 0, 32)
  344. b = strconv.AppendInt(b, int64(t.Day()), 10)
  345. b = append(b, []byte{0x20}...)
  346. b = append(b, ms.monthsAbbreviated[t.Month()]...)
  347. b = append(b, []byte{0x20}...)
  348. if t.Year() > 0 {
  349. b = strconv.AppendInt(b, int64(t.Year()), 10)
  350. } else {
  351. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  352. }
  353. return string(b)
  354. }
  355. // FmtDateLong returns the long date representation of 't' for 'ms_SG'
  356. func (ms *ms_SG) FmtDateLong(t time.Time) string {
  357. b := make([]byte, 0, 32)
  358. b = strconv.AppendInt(b, int64(t.Day()), 10)
  359. b = append(b, []byte{0x20}...)
  360. b = append(b, ms.monthsWide[t.Month()]...)
  361. b = append(b, []byte{0x20}...)
  362. if t.Year() > 0 {
  363. b = strconv.AppendInt(b, int64(t.Year()), 10)
  364. } else {
  365. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  366. }
  367. return string(b)
  368. }
  369. // FmtDateFull returns the full date representation of 't' for 'ms_SG'
  370. func (ms *ms_SG) FmtDateFull(t time.Time) string {
  371. b := make([]byte, 0, 32)
  372. b = append(b, ms.daysWide[t.Weekday()]...)
  373. b = append(b, []byte{0x2c, 0x20}...)
  374. b = strconv.AppendInt(b, int64(t.Day()), 10)
  375. b = append(b, []byte{0x20}...)
  376. b = append(b, ms.monthsWide[t.Month()]...)
  377. b = append(b, []byte{0x20}...)
  378. if t.Year() > 0 {
  379. b = strconv.AppendInt(b, int64(t.Year()), 10)
  380. } else {
  381. b = strconv.AppendInt(b, int64(-t.Year()), 10)
  382. }
  383. return string(b)
  384. }
  385. // FmtTimeShort returns the short time representation of 't' for 'ms_SG'
  386. func (ms *ms_SG) FmtTimeShort(t time.Time) string {
  387. b := make([]byte, 0, 32)
  388. h := t.Hour()
  389. if h > 12 {
  390. h -= 12
  391. }
  392. b = strconv.AppendInt(b, int64(h), 10)
  393. b = append(b, ms.timeSeparator...)
  394. if t.Minute() < 10 {
  395. b = append(b, '0')
  396. }
  397. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  398. b = append(b, []byte{0x20}...)
  399. if t.Hour() < 12 {
  400. b = append(b, ms.periodsAbbreviated[0]...)
  401. } else {
  402. b = append(b, ms.periodsAbbreviated[1]...)
  403. }
  404. return string(b)
  405. }
  406. // FmtTimeMedium returns the medium time representation of 't' for 'ms_SG'
  407. func (ms *ms_SG) FmtTimeMedium(t time.Time) string {
  408. b := make([]byte, 0, 32)
  409. h := t.Hour()
  410. if h > 12 {
  411. h -= 12
  412. }
  413. b = strconv.AppendInt(b, int64(h), 10)
  414. b = append(b, ms.timeSeparator...)
  415. if t.Minute() < 10 {
  416. b = append(b, '0')
  417. }
  418. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  419. b = append(b, ms.timeSeparator...)
  420. if t.Second() < 10 {
  421. b = append(b, '0')
  422. }
  423. b = strconv.AppendInt(b, int64(t.Second()), 10)
  424. b = append(b, []byte{0x20}...)
  425. if t.Hour() < 12 {
  426. b = append(b, ms.periodsAbbreviated[0]...)
  427. } else {
  428. b = append(b, ms.periodsAbbreviated[1]...)
  429. }
  430. return string(b)
  431. }
  432. // FmtTimeLong returns the long time representation of 't' for 'ms_SG'
  433. func (ms *ms_SG) FmtTimeLong(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, ms.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, ms.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, ms.periodsAbbreviated[0]...)
  453. } else {
  454. b = append(b, ms.periodsAbbreviated[1]...)
  455. }
  456. b = append(b, []byte{0x20}...)
  457. tz, _ := t.Zone()
  458. b = append(b, tz...)
  459. return string(b)
  460. }
  461. // FmtTimeFull returns the full time representation of 't' for 'ms_SG'
  462. func (ms *ms_SG) FmtTimeFull(t time.Time) string {
  463. b := make([]byte, 0, 32)
  464. h := t.Hour()
  465. if h > 12 {
  466. h -= 12
  467. }
  468. b = strconv.AppendInt(b, int64(h), 10)
  469. b = append(b, ms.timeSeparator...)
  470. if t.Minute() < 10 {
  471. b = append(b, '0')
  472. }
  473. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  474. b = append(b, ms.timeSeparator...)
  475. if t.Second() < 10 {
  476. b = append(b, '0')
  477. }
  478. b = strconv.AppendInt(b, int64(t.Second()), 10)
  479. b = append(b, []byte{0x20}...)
  480. if t.Hour() < 12 {
  481. b = append(b, ms.periodsAbbreviated[0]...)
  482. } else {
  483. b = append(b, ms.periodsAbbreviated[1]...)
  484. }
  485. b = append(b, []byte{0x20}...)
  486. tz, _ := t.Zone()
  487. if btz, ok := ms.timezones[tz]; ok {
  488. b = append(b, btz...)
  489. } else {
  490. b = append(b, tz...)
  491. }
  492. return string(b)
  493. }