OSDN Git Service

new repo
[bytom/vapor.git] / vendor / github.com / go-playground / locales / rm / rm.go
1 package rm
2
3 import (
4         "math"
5         "strconv"
6         "time"
7
8         "github.com/go-playground/locales"
9         "github.com/go-playground/locales/currency"
10 )
11
12 type rm struct {
13         locale                 string
14         pluralsCardinal        []locales.PluralRule
15         pluralsOrdinal         []locales.PluralRule
16         pluralsRange           []locales.PluralRule
17         decimal                string
18         group                  string
19         minus                  string
20         percent                string
21         percentSuffix          string
22         perMille               string
23         timeSeparator          string
24         inifinity              string
25         currencies             []string // idx = enum of currency code
26         currencyPositiveSuffix string
27         currencyNegativeSuffix string
28         monthsAbbreviated      []string
29         monthsNarrow           []string
30         monthsWide             []string
31         daysAbbreviated        []string
32         daysNarrow             []string
33         daysShort              []string
34         daysWide               []string
35         periodsAbbreviated     []string
36         periodsNarrow          []string
37         periodsShort           []string
38         periodsWide            []string
39         erasAbbreviated        []string
40         erasNarrow             []string
41         erasWide               []string
42         timezones              map[string]string
43 }
44
45 // New returns a new instance of translator for the 'rm' locale
46 func New() locales.Translator {
47         return &rm{
48                 locale:                 "rm",
49                 pluralsCardinal:        []locales.PluralRule{2, 6},
50                 pluralsOrdinal:         nil,
51                 pluralsRange:           nil,
52                 decimal:                ".",
53                 group:                  "’",
54                 minus:                  "−",
55                 percent:                "%",
56                 perMille:               "‰",
57                 timeSeparator:          ":",
58                 inifinity:              "∞",
59                 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", "BRL", "BRN", "BRR", "BRZ", "BSD", "BTN", "BUK", "BWP", "BYB", "BYN", "BYR", "BZD", "CA$", "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", "€", "FIM", "FJD", "FKP", "FRF", "£", "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", "MX$", "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", "SUR", "SVC", "SYP", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "TWD", "TZS", "UAH", "UAK", "UGS", "UGX", "$", "USN", "USS", "UYI", "UYP", "UYU", "UZS", "VEB", "VEF", "VND", "VNN", "VUV", "WST", "XAF", "XAG", "XAU", "XBA", "XBB", "XBC", "XBD", "EC$", "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"},
60                 percentSuffix:          " ",
61                 currencyPositiveSuffix: " ",
62                 currencyNegativeSuffix: " ",
63                 monthsAbbreviated:      []string{"", "schan.", "favr.", "mars", "avr.", "matg", "zercl.", "fan.", "avust", "sett.", "oct.", "nov.", "dec."},
64                 monthsNarrow:           []string{"", "S", "F", "M", "A", "M", "Z", "F", "A", "S", "O", "N", "D"},
65                 monthsWide:             []string{"", "schaner", "favrer", "mars", "avrigl", "matg", "zercladur", "fanadur", "avust", "settember", "october", "november", "december"},
66                 daysAbbreviated:        []string{"du", "gli", "ma", "me", "gie", "ve", "so"},
67                 daysNarrow:             []string{"D", "G", "M", "M", "G", "V", "S"},
68                 daysShort:              []string{"du", "gli", "ma", "me", "gie", "ve", "so"},
69                 daysWide:               []string{"dumengia", "glindesdi", "mardi", "mesemna", "gievgia", "venderdi", "sonda"},
70                 periodsAbbreviated:     []string{"AM", "PM"},
71                 periodsNarrow:          []string{"AM", "PM"},
72                 periodsWide:            []string{"AM", "PM"},
73                 erasAbbreviated:        []string{"av. Cr.", "s. Cr."},
74                 erasNarrow:             []string{"", ""},
75                 erasWide:               []string{"avant Cristus", "suenter Cristus"},
76                 timezones:              map[string]string{"HNCU": "HNCU", "MYT": "MYT", "TMT": "TMT", "LHDT": "LHDT", "ART": "ART", "ACST": "ACST", "ACDT": "ACDT", "WEZ": "WEZ", "HAT": "HAT", "HAST": "HAST", "BT": "BT", "SRT": "SRT", "HADT": "HADT", "AST": "AST", "WAST": "WAST", "HKT": "HKT", "ChST": "ChST", "CHAST": "CHAST", "NZST": "NZST", "HNNOMX": "HNNOMX", "OEZ": "OEZ", "HKST": "HKST", "GMT": "GMT", "CHADT": "CHADT", "BOT": "BOT", "WARST": "WARST", "AEDT": "AEDT", "EAT": "EAT", "CLST": "CLST", "MDT": "MDT", "ADT": "ADT", "CST": "CST", "UYST": "UYST", "EST": "EST", "AKST": "AKST", "UYT": "UYT", "MST": "MST", "VET": "VET", "AEST": "AEST", "SAST": "SAST", "HEEG": "HEEG", "HNOG": "HNOG", "HNEG": "HNEG", "NZDT": "NZDT", "WART": "WART", "GYT": "GYT", "AWDT": "AWDT", "ACWST": "ACWST", "OESZ": "OESZ", "WAT": "WAT", "CLT": "CLT", "CDT": "CDT", "WIT": "WIT", "MEZ": "MEZ", "MESZ": "MESZ", "WITA": "WITA", "JDT": "JDT", "AKDT": "AKDT", "HEPMX": "HEPMX", "AWST": "AWST", "PDT": "PDT", "TMST": "TMST", "LHST": "LHST", "∅∅∅": "∅∅∅", "COST": "COST", "ECT": "ECT", "WIB": "WIB", "HECU": "HECU", "HNPM": "HNPM", "HENOMX": "HENOMX", "ARST": "ARST", "HEOG": "HEOG", "GFT": "GFT", "CAT": "CAT", "IST": "IST", "HNT": "HNT", "EDT": "EDT", "SGT": "SGT", "ACWDT": "ACWDT", "HEPM": "HEPM", "JST": "JST", "COT": "COT", "WESZ": "WESZ", "HNPMX": "HNPMX", "PST": "PST"},
77         }
78 }
79
80 // Locale returns the current translators string locale
81 func (rm *rm) Locale() string {
82         return rm.locale
83 }
84
85 // PluralsCardinal returns the list of cardinal plural rules associated with 'rm'
86 func (rm *rm) PluralsCardinal() []locales.PluralRule {
87         return rm.pluralsCardinal
88 }
89
90 // PluralsOrdinal returns the list of ordinal plural rules associated with 'rm'
91 func (rm *rm) PluralsOrdinal() []locales.PluralRule {
92         return rm.pluralsOrdinal
93 }
94
95 // PluralsRange returns the list of range plural rules associated with 'rm'
96 func (rm *rm) PluralsRange() []locales.PluralRule {
97         return rm.pluralsRange
98 }
99
100 // CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'rm'
101 func (rm *rm) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
102
103         n := math.Abs(num)
104
105         if n == 1 {
106                 return locales.PluralRuleOne
107         }
108
109         return locales.PluralRuleOther
110 }
111
112 // OrdinalPluralRule returns the ordinal PluralRule given 'num' and digits/precision of 'v' for 'rm'
113 func (rm *rm) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
114         return locales.PluralRuleUnknown
115 }
116
117 // RangePluralRule returns the ordinal PluralRule given 'num1', 'num2' and digits/precision of 'v1' and 'v2' for 'rm'
118 func (rm *rm) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.PluralRule {
119         return locales.PluralRuleUnknown
120 }
121
122 // MonthAbbreviated returns the locales abbreviated month given the 'month' provided
123 func (rm *rm) MonthAbbreviated(month time.Month) string {
124         return rm.monthsAbbreviated[month]
125 }
126
127 // MonthsAbbreviated returns the locales abbreviated months
128 func (rm *rm) MonthsAbbreviated() []string {
129         return rm.monthsAbbreviated[1:]
130 }
131
132 // MonthNarrow returns the locales narrow month given the 'month' provided
133 func (rm *rm) MonthNarrow(month time.Month) string {
134         return rm.monthsNarrow[month]
135 }
136
137 // MonthsNarrow returns the locales narrow months
138 func (rm *rm) MonthsNarrow() []string {
139         return rm.monthsNarrow[1:]
140 }
141
142 // MonthWide returns the locales wide month given the 'month' provided
143 func (rm *rm) MonthWide(month time.Month) string {
144         return rm.monthsWide[month]
145 }
146
147 // MonthsWide returns the locales wide months
148 func (rm *rm) MonthsWide() []string {
149         return rm.monthsWide[1:]
150 }
151
152 // WeekdayAbbreviated returns the locales abbreviated weekday given the 'weekday' provided
153 func (rm *rm) WeekdayAbbreviated(weekday time.Weekday) string {
154         return rm.daysAbbreviated[weekday]
155 }
156
157 // WeekdaysAbbreviated returns the locales abbreviated weekdays
158 func (rm *rm) WeekdaysAbbreviated() []string {
159         return rm.daysAbbreviated
160 }
161
162 // WeekdayNarrow returns the locales narrow weekday given the 'weekday' provided
163 func (rm *rm) WeekdayNarrow(weekday time.Weekday) string {
164         return rm.daysNarrow[weekday]
165 }
166
167 // WeekdaysNarrow returns the locales narrow weekdays
168 func (rm *rm) WeekdaysNarrow() []string {
169         return rm.daysNarrow
170 }
171
172 // WeekdayShort returns the locales short weekday given the 'weekday' provided
173 func (rm *rm) WeekdayShort(weekday time.Weekday) string {
174         return rm.daysShort[weekday]
175 }
176
177 // WeekdaysShort returns the locales short weekdays
178 func (rm *rm) WeekdaysShort() []string {
179         return rm.daysShort
180 }
181
182 // WeekdayWide returns the locales wide weekday given the 'weekday' provided
183 func (rm *rm) WeekdayWide(weekday time.Weekday) string {
184         return rm.daysWide[weekday]
185 }
186
187 // WeekdaysWide returns the locales wide weekdays
188 func (rm *rm) WeekdaysWide() []string {
189         return rm.daysWide
190 }
191
192 // Decimal returns the decimal point of number
193 func (rm *rm) Decimal() string {
194         return rm.decimal
195 }
196
197 // Group returns the group of number
198 func (rm *rm) Group() string {
199         return rm.group
200 }
201
202 // Group returns the minus sign of number
203 func (rm *rm) Minus() string {
204         return rm.minus
205 }
206
207 // FmtNumber returns 'num' with digits/precision of 'v' for 'rm' and handles both Whole and Real numbers based on 'v'
208 func (rm *rm) FmtNumber(num float64, v uint64) string {
209
210         s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
211         l := len(s) + 4 + 3*len(s[:len(s)-int(v)-1])/3
212         count := 0
213         inWhole := v == 0
214         b := make([]byte, 0, l)
215
216         for i := len(s) - 1; i >= 0; i-- {
217
218                 if s[i] == '.' {
219                         b = append(b, rm.decimal[0])
220                         inWhole = true
221                         continue
222                 }
223
224                 if inWhole {
225                         if count == 3 {
226                                 for j := len(rm.group) - 1; j >= 0; j-- {
227                                         b = append(b, rm.group[j])
228                                 }
229                                 count = 1
230                         } else {
231                                 count++
232                         }
233                 }
234
235                 b = append(b, s[i])
236         }
237
238         if num < 0 {
239                 for j := len(rm.minus) - 1; j >= 0; j-- {
240                         b = append(b, rm.minus[j])
241                 }
242         }
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
249         return string(b)
250 }
251
252 // FmtPercent returns 'num' with digits/precision of 'v' for 'rm' and handles both Whole and Real numbers based on 'v'
253 // NOTE: 'num' passed into FmtPercent is assumed to be in percent already
254 func (rm *rm) FmtPercent(num float64, v uint64) string {
255         s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
256         l := len(s) + 7
257         b := make([]byte, 0, l)
258
259         for i := len(s) - 1; i >= 0; i-- {
260
261                 if s[i] == '.' {
262                         b = append(b, rm.decimal[0])
263                         continue
264                 }
265
266                 b = append(b, s[i])
267         }
268
269         if num < 0 {
270                 for j := len(rm.minus) - 1; j >= 0; j-- {
271                         b = append(b, rm.minus[j])
272                 }
273         }
274
275         // reverse
276         for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
277                 b[i], b[j] = b[j], b[i]
278         }
279
280         b = append(b, rm.percentSuffix...)
281
282         b = append(b, rm.percent...)
283
284         return string(b)
285 }
286
287 // FmtCurrency returns the currency representation of 'num' with digits/precision of 'v' for 'rm'
288 func (rm *rm) FmtCurrency(num float64, v uint64, currency currency.Type) string {
289
290         s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
291         symbol := rm.currencies[currency]
292         l := len(s) + len(symbol) + 6 + 3*len(s[:len(s)-int(v)-1])/3
293         count := 0
294         inWhole := v == 0
295         b := make([]byte, 0, l)
296
297         for i := len(s) - 1; i >= 0; i-- {
298
299                 if s[i] == '.' {
300                         b = append(b, rm.decimal[0])
301                         inWhole = true
302                         continue
303                 }
304
305                 if inWhole {
306                         if count == 3 {
307                                 for j := len(rm.group) - 1; j >= 0; j-- {
308                                         b = append(b, rm.group[j])
309                                 }
310                                 count = 1
311                         } else {
312                                 count++
313                         }
314                 }
315
316                 b = append(b, s[i])
317         }
318
319         if num < 0 {
320                 for j := len(rm.minus) - 1; j >= 0; j-- {
321                         b = append(b, rm.minus[j])
322                 }
323         }
324
325         // reverse
326         for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
327                 b[i], b[j] = b[j], b[i]
328         }
329
330         if int(v) < 2 {
331
332                 if v == 0 {
333                         b = append(b, rm.decimal...)
334                 }
335
336                 for i := 0; i < 2-int(v); i++ {
337                         b = append(b, '0')
338                 }
339         }
340
341         b = append(b, rm.currencyPositiveSuffix...)
342
343         b = append(b, symbol...)
344
345         return string(b)
346 }
347
348 // FmtAccounting returns the currency representation of 'num' with digits/precision of 'v' for 'rm'
349 // in accounting notation.
350 func (rm *rm) FmtAccounting(num float64, v uint64, currency currency.Type) string {
351
352         s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
353         symbol := rm.currencies[currency]
354         l := len(s) + len(symbol) + 6 + 3*len(s[:len(s)-int(v)-1])/3
355         count := 0
356         inWhole := v == 0
357         b := make([]byte, 0, l)
358
359         for i := len(s) - 1; i >= 0; i-- {
360
361                 if s[i] == '.' {
362                         b = append(b, rm.decimal[0])
363                         inWhole = true
364                         continue
365                 }
366
367                 if inWhole {
368                         if count == 3 {
369                                 for j := len(rm.group) - 1; j >= 0; j-- {
370                                         b = append(b, rm.group[j])
371                                 }
372                                 count = 1
373                         } else {
374                                 count++
375                         }
376                 }
377
378                 b = append(b, s[i])
379         }
380
381         if num < 0 {
382
383                 for j := len(rm.minus) - 1; j >= 0; j-- {
384                         b = append(b, rm.minus[j])
385                 }
386
387         }
388
389         // reverse
390         for i, j := 0, len(b)-1; i < j; i, j = i+1, j-1 {
391                 b[i], b[j] = b[j], b[i]
392         }
393
394         if int(v) < 2 {
395
396                 if v == 0 {
397                         b = append(b, rm.decimal...)
398                 }
399
400                 for i := 0; i < 2-int(v); i++ {
401                         b = append(b, '0')
402                 }
403         }
404
405         if num < 0 {
406                 b = append(b, rm.currencyNegativeSuffix...)
407                 b = append(b, symbol...)
408         } else {
409
410                 b = append(b, rm.currencyPositiveSuffix...)
411                 b = append(b, symbol...)
412         }
413
414         return string(b)
415 }
416
417 // FmtDateShort returns the short date representation of 't' for 'rm'
418 func (rm *rm) FmtDateShort(t time.Time) string {
419
420         b := make([]byte, 0, 32)
421
422         if t.Day() < 10 {
423                 b = append(b, '0')
424         }
425
426         b = strconv.AppendInt(b, int64(t.Day()), 10)
427         b = append(b, []byte{0x2d}...)
428
429         if t.Month() < 10 {
430                 b = append(b, '0')
431         }
432
433         b = strconv.AppendInt(b, int64(t.Month()), 10)
434
435         b = append(b, []byte{0x2d}...)
436
437         if t.Year() > 9 {
438                 b = append(b, strconv.Itoa(t.Year())[2:]...)
439         } else {
440                 b = append(b, strconv.Itoa(t.Year())[1:]...)
441         }
442
443         return string(b)
444 }
445
446 // FmtDateMedium returns the medium date representation of 't' for 'rm'
447 func (rm *rm) FmtDateMedium(t time.Time) string {
448
449         b := make([]byte, 0, 32)
450
451         if t.Day() < 10 {
452                 b = append(b, '0')
453         }
454
455         b = strconv.AppendInt(b, int64(t.Day()), 10)
456         b = append(b, []byte{0x2d}...)
457
458         if t.Month() < 10 {
459                 b = append(b, '0')
460         }
461
462         b = strconv.AppendInt(b, int64(t.Month()), 10)
463
464         b = append(b, []byte{0x2d}...)
465
466         if t.Year() > 0 {
467                 b = strconv.AppendInt(b, int64(t.Year()), 10)
468         } else {
469                 b = strconv.AppendInt(b, int64(-t.Year()), 10)
470         }
471
472         return string(b)
473 }
474
475 // FmtDateLong returns the long date representation of 't' for 'rm'
476 func (rm *rm) FmtDateLong(t time.Time) string {
477
478         b := make([]byte, 0, 32)
479
480         b = strconv.AppendInt(b, int64(t.Day()), 10)
481         b = append(b, []byte{0x20, 0x64, 0x61}...)
482         b = append(b, []byte{0x20}...)
483         b = append(b, rm.monthsWide[t.Month()]...)
484         b = append(b, []byte{0x20}...)
485
486         if t.Year() > 0 {
487                 b = strconv.AppendInt(b, int64(t.Year()), 10)
488         } else {
489                 b = strconv.AppendInt(b, int64(-t.Year()), 10)
490         }
491
492         return string(b)
493 }
494
495 // FmtDateFull returns the full date representation of 't' for 'rm'
496 func (rm *rm) FmtDateFull(t time.Time) string {
497
498         b := make([]byte, 0, 32)
499
500         b = append(b, rm.daysWide[t.Weekday()]...)
501         b = append(b, []byte{0x2c, 0x20, 0x69, 0x6c, 0x73}...)
502         b = append(b, []byte{0x20}...)
503         b = strconv.AppendInt(b, int64(t.Day()), 10)
504         b = append(b, []byte{0x20, 0x64, 0x61}...)
505         b = append(b, []byte{0x20}...)
506         b = append(b, rm.monthsWide[t.Month()]...)
507         b = append(b, []byte{0x20}...)
508
509         if t.Year() > 0 {
510                 b = strconv.AppendInt(b, int64(t.Year()), 10)
511         } else {
512                 b = strconv.AppendInt(b, int64(-t.Year()), 10)
513         }
514
515         return string(b)
516 }
517
518 // FmtTimeShort returns the short time representation of 't' for 'rm'
519 func (rm *rm) FmtTimeShort(t time.Time) string {
520
521         b := make([]byte, 0, 32)
522
523         if t.Hour() < 10 {
524                 b = append(b, '0')
525         }
526
527         b = strconv.AppendInt(b, int64(t.Hour()), 10)
528         b = append(b, rm.timeSeparator...)
529
530         if t.Minute() < 10 {
531                 b = append(b, '0')
532         }
533
534         b = strconv.AppendInt(b, int64(t.Minute()), 10)
535
536         return string(b)
537 }
538
539 // FmtTimeMedium returns the medium time representation of 't' for 'rm'
540 func (rm *rm) FmtTimeMedium(t time.Time) string {
541
542         b := make([]byte, 0, 32)
543
544         if t.Hour() < 10 {
545                 b = append(b, '0')
546         }
547
548         b = strconv.AppendInt(b, int64(t.Hour()), 10)
549         b = append(b, rm.timeSeparator...)
550
551         if t.Minute() < 10 {
552                 b = append(b, '0')
553         }
554
555         b = strconv.AppendInt(b, int64(t.Minute()), 10)
556         b = append(b, rm.timeSeparator...)
557
558         if t.Second() < 10 {
559                 b = append(b, '0')
560         }
561
562         b = strconv.AppendInt(b, int64(t.Second()), 10)
563
564         return string(b)
565 }
566
567 // FmtTimeLong returns the long time representation of 't' for 'rm'
568 func (rm *rm) FmtTimeLong(t time.Time) string {
569
570         b := make([]byte, 0, 32)
571
572         if t.Hour() < 10 {
573                 b = append(b, '0')
574         }
575
576         b = strconv.AppendInt(b, int64(t.Hour()), 10)
577         b = append(b, rm.timeSeparator...)
578
579         if t.Minute() < 10 {
580                 b = append(b, '0')
581         }
582
583         b = strconv.AppendInt(b, int64(t.Minute()), 10)
584         b = append(b, rm.timeSeparator...)
585
586         if t.Second() < 10 {
587                 b = append(b, '0')
588         }
589
590         b = strconv.AppendInt(b, int64(t.Second()), 10)
591         b = append(b, []byte{0x20}...)
592
593         tz, _ := t.Zone()
594         b = append(b, tz...)
595
596         return string(b)
597 }
598
599 // FmtTimeFull returns the full time representation of 't' for 'rm'
600 func (rm *rm) FmtTimeFull(t time.Time) string {
601
602         b := make([]byte, 0, 32)
603
604         if t.Hour() < 10 {
605                 b = append(b, '0')
606         }
607
608         b = strconv.AppendInt(b, int64(t.Hour()), 10)
609         b = append(b, rm.timeSeparator...)
610
611         if t.Minute() < 10 {
612                 b = append(b, '0')
613         }
614
615         b = strconv.AppendInt(b, int64(t.Minute()), 10)
616         b = append(b, rm.timeSeparator...)
617
618         if t.Second() < 10 {
619                 b = append(b, '0')
620         }
621
622         b = strconv.AppendInt(b, int64(t.Second()), 10)
623         b = append(b, []byte{0x20}...)
624
625         tz, _ := t.Zone()
626
627         if btz, ok := rm.timezones[tz]; ok {
628                 b = append(b, btz...)
629         } else {
630                 b = append(b, tz...)
631         }
632
633         return string(b)
634 }