pt_PT.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. package pt_PT
  2. import (
  3. "math"
  4. "strconv"
  5. "time"
  6. "github.com/go-playground/locales"
  7. "github.com/go-playground/locales/currency"
  8. )
  9. type pt_PT 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. currencyNegativePrefix string
  24. currencyNegativeSuffix string
  25. monthsAbbreviated []string
  26. monthsNarrow []string
  27. monthsWide []string
  28. daysAbbreviated []string
  29. daysNarrow []string
  30. daysShort []string
  31. daysWide []string
  32. periodsAbbreviated []string
  33. periodsNarrow []string
  34. periodsShort []string
  35. periodsWide []string
  36. erasAbbreviated []string
  37. erasNarrow []string
  38. erasWide []string
  39. timezones map[string]string
  40. }
  41. // New returns a new instance of translator for the 'pt_PT' locale
  42. func New() locales.Translator {
  43. return &pt_PT{
  44. locale: "pt_PT",
  45. pluralsCardinal: []locales.PluralRule{2, 6},
  46. pluralsOrdinal: []locales.PluralRule{6},
  47. pluralsRange: []locales.PluralRule{6, 2},
  48. decimal: ",",
  49. group: " ",
  50. minus: "-",
  51. percent: "%",
  52. perMille: "‰",
  53. timeSeparator: ":",
  54. inifinity: "∞",
  55. currencies: []string{"ADP ", "AED ", "AFA ", "AFN ", "ALK ", "ALL ", "AMD ", "ANG ", "AOA ", "AOK ", "AON ", "AOR ", "ARA ", "ARL ", "ARM ", "ARP ", "ARS ", "ATS ", "AUD ", "AWG ", "AZM ", "AZN ", "BAD ", "BAM ", "BAN ", "BBD ", "BDT ", "BEC ", "BEF ", "BEL ", "BGL ", "BGM ", "BGN ", "BGO ", "BHD ", "BIF ", "BMD ", "BND ", "BOB ", "BOL ", "BOP ", "BOV ", "BRB ", "BRC ", "BRE ", "BRL ", "BRN ", "BRR ", "BRZ ", "BSD ", "BTN ", "BUK ", "BWP ", "BYB ", "BYR ", "BZD ", "CAD ", "CDF ", "CHE ", "CHF ", "CHW ", "CLE ", "CLF ", "CLP ", "CNX ", "CNY ", "COP ", "COU ", "CRC ", "CSD ", "CSK ", "CUC ", "CUP ", "CVE ", "CYP ", "CZK ", "DDM ", "DEM ", "DJF ", "DKK ", "DOP ", "DZD ", "ECS ", "ECV ", "EEK ", "EGP ", "ERN ", "ESA ", "ESB ", "ESP ", "ETB ", "EUR ", "FIM ", "FJD ", "FKP ", "FRF ", "GBP ", "GEK ", "GEL ", "GHC ", "GHS ", "GIP ", "GMD ", "GNF ", "GNS ", "GQE ", "GRD ", "GTQ ", "GWE ", "GWP ", "GYD ", "HKD ", "HNL ", "HRD ", "HRK ", "HTG ", "HUF ", "IDR ", "IEP ", "ILP ", "ILR ", "ILS ", "INR ", "IQD ", "IRR ", "ISJ ", "ISK ", "ITL ", "JMD ", "JOD ", "JPY ", "KES ", "KGS ", "KHR ", "KMF ", "KPW ", "KRH ", "KRO ", "KRW ", "KWD ", "KYD ", "KZT ", "LAK ", "LBP ", "LKR ", "LRD ", "LSL ", "LTL ", "LTT ", "LUC ", "LUF ", "LUL ", "LVL ", "LVR ", "LYD ", "MAD ", "MAF ", "MCF ", "MDC ", "MDL ", "MGA ", "MGF ", "MKD ", "MKN ", "MLF ", "MMK ", "MNT ", "MOP ", "MRO ", "MTL ", "MTP ", "MUR ", "MVP ", "MVR ", "MWK ", "MXN ", "MXP ", "MXV ", "MYR ", "MZE ", "MZM ", "MZN ", "NAD ", "NGN ", "NIC ", "NIO ", "NLG ", "NOK ", "NPR ", "NZD ", "OMR ", "PAB ", "PEI ", "PEN ", "PES ", "PGK ", "PHP ", "PKR ", "PLN ", "PLZ ", "\u200b", "PYG ", "QAR ", "RHD ", "ROL ", "RON ", "RSD ", "RUB ", "RUR ", "RWF ", "SAR ", "SBD ", "SCR ", "SDD ", "SDG ", "SDP ", "SEK ", "SGD ", "SHP ", "SIT ", "SKK ", "SLL ", "SOS ", "SRD ", "SRG ", "SSP ", "STD ", "SUR ", "SVC ", "SYP ", "SZL ", "THB ", "TJR ", "TJS ", "TMM ", "TMT ", "TND ", "TOP ", "TPE ", "TRL ", "TRY ", "TTD ", "TWD ", "TZS ", "UAH ", "UAK ", "UGS ", "UGX ", "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 "},
  56. currencyPositiveSuffix: " ",
  57. currencyNegativePrefix: "(",
  58. currencyNegativeSuffix: " )",
  59. monthsAbbreviated: []string{"", "jan", "fev", "mar", "abr", "mai", "jun", "jul", "ago", "set", "out", "nov", "dez"},
  60. monthsNarrow: []string{"", "J", "F", "M", "A", "M", "J", "J", "A", "S", "O", "N", "D"},
  61. monthsWide: []string{"", "janeiro", "fevereiro", "março", "abril", "maio", "junho", "julho", "agosto", "setembro", "outubro", "novembro", "dezembro"},
  62. daysAbbreviated: []string{"domingo", "segunda", "terça", "quarta", "quinta", "sexta", "sábado"},
  63. daysNarrow: []string{"D", "S", "T", "Q", "Q", "S", "S"},
  64. daysShort: []string{"dom", "seg", "ter", "qua", "qui", "sex", "sáb"},
  65. daysWide: []string{"domingo", "segunda-feira", "terça-feira", "quarta-feira", "quinta-feira", "sexta-feira", "sábado"},
  66. periodsAbbreviated: []string{"a.m.", "p.m."},
  67. periodsNarrow: []string{"a.m.", "p.m."},
  68. periodsWide: []string{"da manhã", "da tarde"},
  69. erasAbbreviated: []string{"a.E.C.", "E.C."},
  70. erasNarrow: []string{"", ""},
  71. erasWide: []string{"", ""},
  72. timezones: map[string]string{"JST": "Hora padrão do Japão", "WESZ": "Hora de verão da Europa Ocidental", "CAT": "Hora da África Central", "COST": "Hora de verão da Colômbia", "LHST": "Hora padrão de Lord Howe", "SAST": "Hora da África do Sul", "IST": "Hora padrão da Índia", "NZST": "Hora padrão da Nova Zelândia", "WAST": "Hora de verão da África Ocidental", "WIT": "Hora da Indonésia Oriental", "TMST": "Hora de verão do Turquemenistão", "UYT": "Hora padrão do Uruguai", "AST": "Hora padrão do Atlântico", "ACDT": "Hora de verão da Austrália Central", "ACWDT": "Hora de verão da Austrália Central Ocidental", "ChST": "Hora padrão do Chamorro", "COT": "Hora padrão da Colômbia", "ADT": "Hora de verão do Atlântico", "HKT": "Hora padrão de Hong Kong", "HKST": "Hora de verão de Hong Kong", "GYT": "Hora da Guiana", "JDT": "Hora de verão do Japão", "CDT": "Hora de verão Central", "MESZ": "Hora de verão da Europa Central", "SGT": "Hora padrão de Singapura", "WARST": "Hora de verão da Argentina Ocidental", "HNT": "Hora padrão da Terra Nova", "HAT": "Hora de verão da Terra Nova", "LHDT": "Hora de verão de Lord Howe", "MYT": "Hora da Malásia", "EST": "Hora padrão Oriental", "AKDT": "Hora de verão do Alasca", "BOT": "Hora da Bolívia", "ACWST": "Hora padrão da Austrália Central Ocidental", "MST": "Hora padrão de Macau", "AWDT": "Hora de verão da Austrália Ocidental", "HAST": "Hora padrão do Havai e Aleutas", "WART": "Hora padrão da Argentina Ocidental", "OEZ": "Hora padrão da Europa Oriental", "ACST": "Hora padrão da Austrália Central", "WIB": "Hora da Indonésia Ocidental", "GFT": "Hora da Guiana Francesa", "WITA": "Hora da Indonésia Central", "MDT": "Hora de verão de Macau", "UYST": "Hora de verão do Uruguai", "EDT": "Hora de verão Oriental", "AWST": "Hora padrão da Austrália Ocidental", "NZDT": "Hora de verão da Nova Zelândia", "HADT": "Hora de verão do Havai e Aleutas", "BT": "Hora do Butão", "GMT": "Hora de Greenwich", "AKST": "Hora padrão do Alasca", "ARST": "Hora de verão da Argentina", "PDT": "Hora de verão do Pacífico", "VET": "Hora da Venezuela", "ECT": "Hora do Equador", "OESZ": "Hora de verão da Europa Oriental", "ART": "Hora padrão da Argentina", "AEDT": "Hora de verão da Austrália Oriental", "CST": "Hora padrão Central", "CLT": "Hora padrão do Chile", "TMT": "Hora padrão do Turquemenistão", "∅∅∅": "Hora de verão do Amazonas", "SRT": "Hora do Suriname", "PST": "Hora padrão do Pacífico", "MEZ": "Hora padrão da Europa Central", "WEZ": "Hora padrão da Europa Ocidental", "AEST": "Hora padrão da Austrália Oriental", "CHAST": "Hora padrão do Chatham", "EAT": "Hora da África Oriental", "CLST": "Hora de verão do Chile", "WAT": "Hora padrão da África Ocidental", "CHADT": "Hora de verão do Chatham"},
  73. }
  74. }
  75. // Locale returns the current translators string locale
  76. func (pt *pt_PT) Locale() string {
  77. return pt.locale
  78. }
  79. // PluralsCardinal returns the list of cardinal plural rules associated with 'pt_PT'
  80. func (pt *pt_PT) PluralsCardinal() []locales.PluralRule {
  81. return pt.pluralsCardinal
  82. }
  83. // PluralsOrdinal returns the list of ordinal plural rules associated with 'pt_PT'
  84. func (pt *pt_PT) PluralsOrdinal() []locales.PluralRule {
  85. return pt.pluralsOrdinal
  86. }
  87. // PluralsRange returns the list of range plural rules associated with 'pt_PT'
  88. func (pt *pt_PT) PluralsRange() []locales.PluralRule {
  89. return pt.pluralsRange
  90. }
  91. // CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'pt_PT'
  92. func (pt *pt_PT) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
  93. n := math.Abs(num)
  94. if n >= 0 && n <= 2 && n != 2 {
  95. return locales.PluralRuleOne
  96. }
  97. return locales.PluralRuleOther
  98. }
  99. // OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'pt_PT'
  100. func (pt *pt_PT) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
  101. return locales.PluralRuleOther
  102. }
  103. // RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'pt_PT'
  104. func (pt *pt_PT) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
  105. start := pt.CardinalPluralRule(num1, v1)
  106. end := pt.CardinalPluralRule(num2, v2)
  107. if start == locales.PluralRuleOne && end == locales.PluralRuleOther {
  108. return locales.PluralRuleOther
  109. } else if start == locales.PluralRuleOther && end == locales.PluralRuleOne {
  110. return locales.PluralRuleOne
  111. }
  112. return locales.PluralRuleOther
  113. }
  114. // MonthAbbreviated returns the locales abbreviated month given the 'month' provided
  115. func (pt *pt_PT) MonthAbbreviated(month time.Month) string {
  116. return pt.monthsAbbreviated[month]
  117. }
  118. // MonthsAbbreviated returns the locales abbreviated months
  119. func (pt *pt_PT) MonthsAbbreviated() []string {
  120. return pt.monthsAbbreviated[1:]
  121. }
  122. // MonthNarrow returns the locales narrow month given the 'month' provided
  123. func (pt *pt_PT) MonthNarrow(month time.Month) string {
  124. return pt.monthsNarrow[month]
  125. }
  126. // MonthsNarrow returns the locales narrow months
  127. func (pt *pt_PT) MonthsNarrow() []string {
  128. return pt.monthsNarrow[1:]
  129. }
  130. // MonthWide returns the locales wide month given the 'month' provided
  131. func (pt *pt_PT) MonthWide(month time.Month) string {
  132. return pt.monthsWide[month]
  133. }
  134. // MonthsWide returns the locales wide months
  135. func (pt *pt_PT) MonthsWide() []string {
  136. return pt.monthsWide[1:]
  137. }
  138. // WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
  139. func (pt *pt_PT) WeekdayAbbreviated(weekday time.Weekday) string {
  140. return pt.daysAbbreviated[weekday]
  141. }
  142. // WeekdaysAbbreviated returns the locales abbreviated weekdays
  143. func (pt *pt_PT) WeekdaysAbbreviated() []string {
  144. return pt.daysAbbreviated
  145. }
  146. // WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
  147. func (pt *pt_PT) WeekdayNarrow(weekday time.Weekday) string {
  148. return pt.daysNarrow[weekday]
  149. }
  150. // WeekdaysNarrow returns the locales narrow weekdays
  151. func (pt *pt_PT) WeekdaysNarrow() []string {
  152. return pt.daysNarrow
  153. }
  154. // WeekdayShort returns the locales short weekday given the 'weekday' provided
  155. func (pt *pt_PT) WeekdayShort(weekday time.Weekday) string {
  156. return pt.daysShort[weekday]
  157. }
  158. // WeekdaysShort returns the locales short weekdays
  159. func (pt *pt_PT) WeekdaysShort() []string {
  160. return pt.daysShort
  161. }
  162. // WeekdayWide returns the locales wide weekday given the 'weekday' provided
  163. func (pt *pt_PT) WeekdayWide(weekday time.Weekday) string {
  164. return pt.daysWide[weekday]
  165. }
  166. // WeekdaysWide returns the locales wide weekdays
  167. func (pt *pt_PT) WeekdaysWide() []string {
  168. return pt.daysWide
  169. }
  170. // FmtNumber returns 'num' with digits/precision of 'v' for 'pt_PT' and handles both Whole and Real numbers based on 'v'
  171. func (pt *pt_PT) FmtNumber(num float64, v uint64) string {
  172. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  173. l := len(s) + 2 + 2*len(s[:len(s)-int(v)-1])/3
  174. count := 0
  175. inWhole := v == 0
  176. b := make([]byte, 0, l)
  177. for i := len(s) - 1; i >= 0; i-- {
  178. if s[i] == '.' {
  179. b = append(b, pt.decimal[0])
  180. inWhole = true
  181. continue
  182. }
  183. if inWhole {
  184. if count == 3 {
  185. for j := len(pt.group) - 1; j >= 0; j-- {
  186. b = append(b, pt.group[j])
  187. }
  188. count = 1
  189. } else {
  190. count++
  191. }
  192. }
  193. b = append(b, s[i])
  194. }
  195. if num < 0 {
  196. b = append(b, pt.minus[0])
  197. }
  198. // reverse
  199. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  200. b[i], b[j] = b[j], b[i]
  201. }
  202. return string(b)
  203. }
  204. // FmtPercent returns 'num' with digits/precision of 'v' for 'pt_PT' and handles both Whole and Real numbers based on 'v'
  205. // NOTE: 'num' passed into FmtPercent is assumed to be in percent already
  206. func (pt *pt_PT) FmtPercent(num float64, v uint64) string {
  207. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  208. l := len(s) + 3
  209. b := make([]byte, 0, l)
  210. for i := len(s) - 1; i >= 0; i-- {
  211. if s[i] == '.' {
  212. b = append(b, pt.decimal[0])
  213. continue
  214. }
  215. b = append(b, s[i])
  216. }
  217. if num < 0 {
  218. b = append(b, pt.minus[0])
  219. }
  220. // reverse
  221. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  222. b[i], b[j] = b[j], b[i]
  223. }
  224. b = append(b, pt.percent...)
  225. return string(b)
  226. }
  227. // FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'pt_PT'
  228. func (pt *pt_PT) FmtCurrency(num float64, v uint64, currency currency.Type) string {
  229. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  230. symbol := pt.currencies[currency]
  231. l := len(s) + len(symbol) + 4 + 2*len(s[:len(s)-int(v)-1])/3
  232. count := 0
  233. inWhole := v == 0
  234. b := make([]byte, 0, l)
  235. for i := len(s) - 1; i >= 0; i-- {
  236. if s[i] == '.' {
  237. b = append(b, pt.decimal[0])
  238. inWhole = true
  239. continue
  240. }
  241. if inWhole {
  242. if count == 3 {
  243. for j := len(pt.group) - 1; j >= 0; j-- {
  244. b = append(b, pt.group[j])
  245. }
  246. count = 1
  247. } else {
  248. count++
  249. }
  250. }
  251. b = append(b, s[i])
  252. }
  253. if num < 0 {
  254. b = append(b, pt.minus[0])
  255. }
  256. // reverse
  257. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  258. b[i], b[j] = b[j], b[i]
  259. }
  260. if int(v) < 2 {
  261. if v == 0 {
  262. b = append(b, pt.decimal...)
  263. }
  264. for i := 0; i < 2-int(v); i++ {
  265. b = append(b, '0')
  266. }
  267. }
  268. b = append(b, pt.currencyPositiveSuffix...)
  269. b = append(b, symbol...)
  270. return string(b)
  271. }
  272. // FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'pt_PT'
  273. // in accounting notation.
  274. func (pt *pt_PT) FmtAccounting(num float64, v uint64, currency currency.Type) string {
  275. s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
  276. symbol := pt.currencies[currency]
  277. l := len(s) + len(symbol) + 6 + 2*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, pt.decimal[0])
  284. inWhole = true
  285. continue
  286. }
  287. if inWhole {
  288. if count == 3 {
  289. for j := len(pt.group) - 1; j >= 0; j-- {
  290. b = append(b, pt.group[j])
  291. }
  292. count = 1
  293. } else {
  294. count++
  295. }
  296. }
  297. b = append(b, s[i])
  298. }
  299. if num < 0 {
  300. b = append(b, pt.currencyNegativePrefix[0])
  301. }
  302. // reverse
  303. for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
  304. b[i], b[j] = b[j], b[i]
  305. }
  306. if int(v) < 2 {
  307. if v == 0 {
  308. b = append(b, pt.decimal...)
  309. }
  310. for i := 0; i < 2-int(v); i++ {
  311. b = append(b, '0')
  312. }
  313. }
  314. if num < 0 {
  315. b = append(b, pt.currencyNegativeSuffix...)
  316. b = append(b, symbol...)
  317. } else {
  318. b = append(b, pt.currencyPositiveSuffix...)
  319. b = append(b, symbol...)
  320. }
  321. return string(b)
  322. }
  323. // FmtDateShort returns the short date representation of 't' for 'pt_PT'
  324. func (pt *pt_PT) FmtDateShort(t time.Time) string {
  325. b := make([]byte, 0, 32)
  326. if t.Day() < 10 {
  327. b = append(b, '0')
  328. }
  329. b = strconv.AppendInt(b, int64(t.Day()), 10)
  330. b = append(b, []byte{0x2f}...)
  331. if t.Month() < 10 {
  332. b = append(b, '0')
  333. }
  334. b = strconv.AppendInt(b, int64(t.Month()), 10)
  335. b = append(b, []byte{0x2f}...)
  336. if t.Year() > 9 {
  337. b = append(b, strconv.Itoa(t.Year())[2:]...)
  338. } else {
  339. b = append(b, strconv.Itoa(t.Year())[1:]...)
  340. }
  341. return string(b)
  342. }
  343. // FmtDateMedium returns the medium date representation of 't' for 'pt_PT'
  344. func (pt *pt_PT) FmtDateMedium(t time.Time) string {
  345. b := make([]byte, 0, 32)
  346. if t.Day() < 10 {
  347. b = append(b, '0')
  348. }
  349. b = strconv.AppendInt(b, int64(t.Day()), 10)
  350. b = append(b, []byte{0x2f}...)
  351. if t.Month() < 10 {
  352. b = append(b, '0')
  353. }
  354. b = strconv.AppendInt(b, int64(t.Month()), 10)
  355. b = append(b, []byte{0x2f}...)
  356. b = strconv.AppendInt(b, int64(t.Year()), 10)
  357. return string(b)
  358. }
  359. // FmtDateLong returns the long date representation of 't' for 'pt_PT'
  360. func (pt *pt_PT) FmtDateLong(t time.Time) string {
  361. b := make([]byte, 0, 32)
  362. b = strconv.AppendInt(b, int64(t.Day()), 10)
  363. b = append(b, []byte{}...)
  364. b = append(b, []byte{0x27, 0x64, 0x65, 0x27, 0x20}...)
  365. b = append(b, pt.monthsWide[t.Month()]...)
  366. b = append(b, []byte{}...)
  367. b = append(b, []byte{0x27, 0x64, 0x65, 0x27, 0x20}...)
  368. b = strconv.AppendInt(b, int64(t.Year()), 10)
  369. return string(b)
  370. }
  371. // FmtDateFull returns the full date representation of 't' for 'pt_PT'
  372. func (pt *pt_PT) FmtDateFull(t time.Time) string {
  373. b := make([]byte, 0, 32)
  374. b = append(b, pt.daysWide[t.Weekday()]...)
  375. b = append(b, []byte{0x2c, 0x20}...)
  376. b = strconv.AppendInt(b, int64(t.Day()), 10)
  377. b = append(b, []byte{}...)
  378. b = append(b, []byte{0x27, 0x64, 0x65, 0x27, 0x20}...)
  379. b = append(b, pt.monthsWide[t.Month()]...)
  380. b = append(b, []byte{}...)
  381. b = append(b, []byte{0x27, 0x64, 0x65, 0x27, 0x20}...)
  382. b = strconv.AppendInt(b, int64(t.Year()), 10)
  383. return string(b)
  384. }
  385. // FmtTimeShort returns the short time representation of 't' for 'pt_PT'
  386. func (pt *pt_PT) FmtTimeShort(t time.Time) string {
  387. b := make([]byte, 0, 32)
  388. if t.Hour() < 10 {
  389. b = append(b, '0')
  390. }
  391. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  392. b = append(b, pt.timeSeparator...)
  393. if t.Minute() < 10 {
  394. b = append(b, '0')
  395. }
  396. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  397. return string(b)
  398. }
  399. // FmtTimeMedium returns the medium time representation of 't' for 'pt_PT'
  400. func (pt *pt_PT) FmtTimeMedium(t time.Time) string {
  401. b := make([]byte, 0, 32)
  402. if t.Hour() < 10 {
  403. b = append(b, '0')
  404. }
  405. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  406. b = append(b, pt.timeSeparator...)
  407. if t.Minute() < 10 {
  408. b = append(b, '0')
  409. }
  410. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  411. b = append(b, pt.timeSeparator...)
  412. if t.Second() < 10 {
  413. b = append(b, '0')
  414. }
  415. b = strconv.AppendInt(b, int64(t.Second()), 10)
  416. return string(b)
  417. }
  418. // FmtTimeLong returns the long time representation of 't' for 'pt_PT'
  419. func (pt *pt_PT) FmtTimeLong(t time.Time) string {
  420. b := make([]byte, 0, 32)
  421. if t.Hour() < 10 {
  422. b = append(b, '0')
  423. }
  424. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  425. b = append(b, pt.timeSeparator...)
  426. if t.Minute() < 10 {
  427. b = append(b, '0')
  428. }
  429. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  430. b = append(b, pt.timeSeparator...)
  431. if t.Second() < 10 {
  432. b = append(b, '0')
  433. }
  434. b = strconv.AppendInt(b, int64(t.Second()), 10)
  435. b = append(b, []byte{0x20}...)
  436. tz, _ := t.Zone()
  437. b = append(b, tz...)
  438. return string(b)
  439. }
  440. // FmtTimeFull returns the full time representation of 't' for 'pt_PT'
  441. func (pt *pt_PT) FmtTimeFull(t time.Time) string {
  442. b := make([]byte, 0, 32)
  443. if t.Hour() < 10 {
  444. b = append(b, '0')
  445. }
  446. b = strconv.AppendInt(b, int64(t.Hour()), 10)
  447. b = append(b, pt.timeSeparator...)
  448. if t.Minute() < 10 {
  449. b = append(b, '0')
  450. }
  451. b = strconv.AppendInt(b, int64(t.Minute()), 10)
  452. b = append(b, pt.timeSeparator...)
  453. if t.Second() < 10 {
  454. b = append(b, '0')
  455. }
  456. b = strconv.AppendInt(b, int64(t.Second()), 10)
  457. b = append(b, []byte{0x20}...)
  458. tz, _ := t.Zone()
  459. if btz, ok := pt.timezones[tz]; ok {
  460. b = append(b, btz...)
  461. } else {
  462. b = append(b, tz...)
  463. }
  464. return string(b)
  465. }