Lines Matching refs:nus

73 func (nus *nus_SS) Locale() string {
74 return nus.locale
78 func (nus *nus_SS) PluralsCardinal() []locales.PluralRule {
79 return nus.pluralsCardinal
83 func (nus *nus_SS) PluralsOrdinal() []locales.PluralRule {
84 return nus.pluralsOrdinal
88 func (nus *nus_SS) PluralsRange() []locales.PluralRule {
89 return nus.pluralsRange
93 func (nus *nus_SS) CardinalPluralRule(num float64, v uint64) locales.PluralRule {
98 func (nus *nus_SS) OrdinalPluralRule(num float64, v uint64) locales.PluralRule {
103 func (nus *nus_SS) RangePluralRule(num1 float64, v1 uint64, num2 float64, v2 uint64) locales.Plural…
108 func (nus *nus_SS) MonthAbbreviated(month time.Month) string {
109 return nus.monthsAbbreviated[month]
113 func (nus *nus_SS) MonthsAbbreviated() []string {
114 return nus.monthsAbbreviated[1:]
118 func (nus *nus_SS) MonthNarrow(month time.Month) string {
119 return nus.monthsNarrow[month]
123 func (nus *nus_SS) MonthsNarrow() []string {
124 return nus.monthsNarrow[1:]
128 func (nus *nus_SS) MonthWide(month time.Month) string {
129 return nus.monthsWide[month]
133 func (nus *nus_SS) MonthsWide() []string {
134 return nus.monthsWide[1:]
138 func (nus *nus_SS) WeekdayAbbreviated(weekday time.Weekday) string {
139 return nus.daysAbbreviated[weekday]
143 func (nus *nus_SS) WeekdaysAbbreviated() []string {
144 return nus.daysAbbreviated
148 func (nus *nus_SS) WeekdayNarrow(weekday time.Weekday) string {
149 return nus.daysNarrow[weekday]
153 func (nus *nus_SS) WeekdaysNarrow() []string {
154 return nus.daysNarrow
158 func (nus *nus_SS) WeekdayShort(weekday time.Weekday) string {
159 return nus.daysShort[weekday]
163 func (nus *nus_SS) WeekdaysShort() []string {
164 return nus.daysShort
168 func (nus *nus_SS) WeekdayWide(weekday time.Weekday) string {
169 return nus.daysWide[weekday]
173 func (nus *nus_SS) WeekdaysWide() []string {
174 return nus.daysWide
178 func (nus *nus_SS) Decimal() string {
179 return nus.decimal
183 func (nus *nus_SS) Group() string {
184 return nus.group
188 func (nus *nus_SS) Minus() string {
189 return nus.minus
193 func (nus *nus_SS) FmtNumber(num float64, v uint64) string {
204 b = append(b, nus.decimal[0])
211 b = append(b, nus.group[0])
222 b = append(b, nus.minus[0])
235 func (nus *nus_SS) FmtPercent(num float64, v uint64) string {
243 b = append(b, nus.decimal[0])
251 b = append(b, nus.minus[0])
259 b = append(b, nus.percent...)
265 func (nus *nus_SS) FmtCurrency(num float64, v uint64, currency currency.Type) string {
268 symbol := nus.currencies[currency]
277 b = append(b, nus.decimal[0])
284 b = append(b, nus.group[0])
299 b = append(b, nus.minus[0])
310 b = append(b, nus.decimal...)
323 func (nus *nus_SS) FmtAccounting(num float64, v uint64, currency currency.Type) string {
326 symbol := nus.currencies[currency]
335 b = append(b, nus.decimal[0])
342 b = append(b, nus.group[0])
358 b = append(b, nus.currencyNegativePrefix[0])
376 b = append(b, nus.decimal...)
385 b = append(b, nus.currencyNegativeSuffix...)
392 func (nus *nus_SS) FmtDateShort(t time.Time) string {
417 func (nus *nus_SS) FmtDateMedium(t time.Time) string {
423 b = append(b, nus.monthsAbbreviated[t.Month()]...)
436 func (nus *nus_SS) FmtDateLong(t time.Time) string {
442 b = append(b, nus.monthsWide[t.Month()]...)
455 func (nus *nus_SS) FmtDateFull(t time.Time) string {
459 b = append(b, nus.daysWide[t.Weekday()]...)
463 b = append(b, nus.monthsWide[t.Month()]...)
476 func (nus *nus_SS) FmtTimeShort(t time.Time) string {
487 b = append(b, nus.timeSeparator...)
497 b = append(b, nus.periodsAbbreviated[0]...)
499 b = append(b, nus.periodsAbbreviated[1]...)
506 func (nus *nus_SS) FmtTimeMedium(t time.Time) string {
517 b = append(b, nus.timeSeparator...)
524 b = append(b, nus.timeSeparator...)
534 b = append(b, nus.periodsAbbreviated[0]...)
536 b = append(b, nus.periodsAbbreviated[1]...)
543 func (nus *nus_SS) FmtTimeLong(t time.Time) string {
559 b = append(b, nus.timeSeparator...)
566 b = append(b, nus.timeSeparator...)
576 b = append(b, nus.periodsAbbreviated[0]...)
578 b = append(b, nus.periodsAbbreviated[1]...)
585 func (nus *nus_SS) FmtTimeFull(t time.Time) string {
591 if btz, ok := nus.timezones[tz]; ok {
606 b = append(b, nus.timeSeparator...)
613 b = append(b, nus.timeSeparator...)
623 b = append(b, nus.periodsAbbreviated[0]...)
625 b = append(b, nus.periodsAbbreviated[1]...)