Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mg
diff options
context:
space:
mode:
authorDean Karn <Dean.Karn@metricaid.com>2016-08-22 17:37:59 +0300
committerDean Karn <Dean.Karn@metricaid.com>2016-08-22 17:37:59 +0300
commit0e068366fd7fc56de98295079e96a78d5386a8f6 (patch)
tree086f155dc5dc4a5e8d367e1dad5d7d1cb38c3065 /mg
parent8fdc8e15c96321fc79c2cf6d019b5091d6a26e76 (diff)
Add PluralsRange() function to mirror PluralsCardinal() and PluralsOrdingal()
Diffstat (limited to 'mg')
-rw-r--r--mg/mg.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/mg/mg.go b/mg/mg.go
index 39d59fa2..85ee26d6 100644
--- a/mg/mg.go
+++ b/mg/mg.go
@@ -13,6 +13,7 @@ type mg struct {
locale string
pluralsCardinal []locales.PluralRule
pluralsOrdinal []locales.PluralRule
+ pluralsRange []locales.PluralRule
decimal []byte
group []byte
minus []byte
@@ -44,6 +45,7 @@ func New() locales.Translator {
locale: "mg",
pluralsCardinal: []locales.PluralRule{2, 6},
pluralsOrdinal: nil,
+ pluralsRange: nil,
decimal: []byte{},
group: []byte{},
minus: []byte{},
@@ -60,7 +62,7 @@ func New() locales.Translator {
erasAbbreviated: [][]uint8{{0x42, 0x43}, {0x41, 0x44}},
erasNarrow: [][]uint8{[]uint8(nil), []uint8(nil)},
erasWide: [][]uint8{{0x41, 0x6c, 0x6f, 0x68, 0x61, 0x6e, 0xe2, 0x80, 0x99, 0x69, 0x20, 0x4a, 0x4b}, {0x41, 0x6f, 0x72, 0x69, 0x61, 0x6e, 0xe2, 0x80, 0x99, 0x69, 0x20, 0x4a, 0x4b}},
- timezones: map[string][]uint8{"CHAST": {0x43, 0x48, 0x41, 0x53, 0x54}, "WAT": {0x57, 0x41, 0x54}, "VET": {0x56, 0x45, 0x54}, "SAST": {0x53, 0x41, 0x53, 0x54}, "LHDT": {0x4c, 0x48, 0x44, 0x54}, "AWDT": {0x41, 0x57, 0x44, 0x54}, "ChST": {0x43, 0x68, 0x53, 0x54}, "TMST": {0x54, 0x4d, 0x53, 0x54}, "GYT": {0x47, 0x59, 0x54}, "CST": {0x43, 0x53, 0x54}, "MST": {0x4d, 0x53, 0x54}, "WITA": {0x57, 0x49, 0x54, 0x41}, "ART": {0x41, 0x52, 0x54}, "ACWDT": {0x41, 0x43, 0x57, 0x44, 0x54}, "CLST": {0x43, 0x4c, 0x53, 0x54}, "CHADT": {0x43, 0x48, 0x41, 0x44, 0x54}, "BOT": {0x42, 0x4f, 0x54}, "∅∅∅": {0xe2, 0x88, 0x85, 0xe2, 0x88, 0x85, 0xe2, 0x88, 0x85}, "ARST": {0x41, 0x52, 0x53, 0x54}, "WESZ": {0x57, 0x45, 0x53, 0x5a}, "UYT": {0x55, 0x59, 0x54}, "OESZ": {0x4f, 0x45, 0x53, 0x5a}, "AST": {0x41, 0x53, 0x54}, "ADT": {0x41, 0x44, 0x54}, "LHST": {0x4c, 0x48, 0x53, 0x54}, "AKST": {0x41, 0x4b, 0x53, 0x54}, "COST": {0x43, 0x4f, 0x53, 0x54}, "WARST": {0x57, 0x41, 0x52, 0x53, 0x54}, "AKDT": {0x41, 0x4b, 0x44, 0x54}, "WIT": {0x57, 0x49, 0x54}, "WIB": {0x57, 0x49, 0x42}, "ACST": {0x41, 0x43, 0x53, 0x54}, "WART": {0x57, 0x41, 0x52, 0x54}, "CLT": {0x43, 0x4c, 0x54}, "GFT": {0x47, 0x46, 0x54}, "COT": {0x43, 0x4f, 0x54}, "SGT": {0x53, 0x47, 0x54}, "WEZ": {0x57, 0x45, 0x5a}, "NZDT": {0x4e, 0x5a, 0x44, 0x54}, "ACDT": {0x41, 0x43, 0x44, 0x54}, "BT": {0x42, 0x54}, "HKT": {0x48, 0x4b, 0x54}, "EAT": {0x45, 0x41, 0x54}, "EDT": {0x45, 0x44, 0x54}, "CDT": {0x43, 0x44, 0x54}, "HNT": {0x48, 0x4e, 0x54}, "AEDT": {0x41, 0x45, 0x44, 0x54}, "MYT": {0x4d, 0x59, 0x54}, "OEZ": {0x4f, 0x45, 0x5a}, "ACWST": {0x41, 0x43, 0x57, 0x53, 0x54}, "IST": {0x49, 0x53, 0x54}, "EST": {0x45, 0x53, 0x54}, "JST": {0x4a, 0x53, 0x54}, "JDT": {0x4a, 0x44, 0x54}, "MDT": {0x4d, 0x44, 0x54}, "NZST": {0x4e, 0x5a, 0x53, 0x54}, "TMT": {0x54, 0x4d, 0x54}, "ECT": {0x45, 0x43, 0x54}, "CAT": {0x43, 0x41, 0x54}, "HAT": {0x48, 0x41, 0x54}, "MEZ": {0x4d, 0x45, 0x5a}, "AWST": {0x41, 0x57, 0x53, 0x54}, "AEST": {0x41, 0x45, 0x53, 0x54}, "HADT": {0x48, 0x41, 0x44, 0x54}, "GMT": {0x47, 0x4d, 0x54}, "MESZ": {0x4d, 0x45, 0x53, 0x5a}, "WAST": {0x57, 0x41, 0x53, 0x54}, "PDT": {0x50, 0x44, 0x54}, "SRT": {0x53, 0x52, 0x54}, "HKST": {0x48, 0x4b, 0x53, 0x54}, "PST": {0x50, 0x53, 0x54}, "HAST": {0x48, 0x41, 0x53, 0x54}, "UYST": {0x55, 0x59, 0x53, 0x54}},
+ timezones: map[string][]uint8{"TMST": {0x54, 0x4d, 0x53, 0x54}, "ARST": {0x41, 0x52, 0x53, 0x54}, "JDT": {0x4a, 0x44, 0x54}, "GFT": {0x47, 0x46, 0x54}, "HKST": {0x48, 0x4b, 0x53, 0x54}, "WIB": {0x57, 0x49, 0x42}, "CDT": {0x43, 0x44, 0x54}, "SGT": {0x53, 0x47, 0x54}, "BOT": {0x42, 0x4f, 0x54}, "AST": {0x41, 0x53, 0x54}, "AKDT": {0x41, 0x4b, 0x44, 0x54}, "MEZ": {0x4d, 0x45, 0x5a}, "EST": {0x45, 0x53, 0x54}, "ChST": {0x43, 0x68, 0x53, 0x54}, "MYT": {0x4d, 0x59, 0x54}, "SRT": {0x53, 0x52, 0x54}, "SAST": {0x53, 0x41, 0x53, 0x54}, "CAT": {0x43, 0x41, 0x54}, "GMT": {0x47, 0x4d, 0x54}, "UYT": {0x55, 0x59, 0x54}, "WESZ": {0x57, 0x45, 0x53, 0x5a}, "ACWDT": {0x41, 0x43, 0x57, 0x44, 0x54}, "HKT": {0x48, 0x4b, 0x54}, "MST": {0x4d, 0x53, 0x54}, "LHST": {0x4c, 0x48, 0x53, 0x54}, "CHAST": {0x43, 0x48, 0x41, 0x53, 0x54}, "IST": {0x49, 0x53, 0x54}, "AEDT": {0x41, 0x45, 0x44, 0x54}, "WAT": {0x57, 0x41, 0x54}, "COST": {0x43, 0x4f, 0x53, 0x54}, "TMT": {0x54, 0x4d, 0x54}, "JST": {0x4a, 0x53, 0x54}, "UYST": {0x55, 0x59, 0x53, 0x54}, "∅∅∅": {0xe2, 0x88, 0x85, 0xe2, 0x88, 0x85, 0xe2, 0x88, 0x85}, "EDT": {0x45, 0x44, 0x54}, "VET": {0x56, 0x45, 0x54}, "ART": {0x41, 0x52, 0x54}, "WEZ": {0x57, 0x45, 0x5a}, "ACWST": {0x41, 0x43, 0x57, 0x53, 0x54}, "WART": {0x57, 0x41, 0x52, 0x54}, "CLST": {0x43, 0x4c, 0x53, 0x54}, "AKST": {0x41, 0x4b, 0x53, 0x54}, "NZDT": {0x4e, 0x5a, 0x44, 0x54}, "HNT": {0x48, 0x4e, 0x54}, "HAT": {0x48, 0x41, 0x54}, "WARST": {0x57, 0x41, 0x52, 0x53, 0x54}, "WAST": {0x57, 0x41, 0x53, 0x54}, "AEST": {0x41, 0x45, 0x53, 0x54}, "COT": {0x43, 0x4f, 0x54}, "WITA": {0x57, 0x49, 0x54, 0x41}, "EAT": {0x45, 0x41, 0x54}, "HAST": {0x48, 0x41, 0x53, 0x54}, "PDT": {0x50, 0x44, 0x54}, "ACST": {0x41, 0x43, 0x53, 0x54}, "CST": {0x43, 0x53, 0x54}, "MESZ": {0x4d, 0x45, 0x53, 0x5a}, "HADT": {0x48, 0x41, 0x44, 0x54}, "ADT": {0x41, 0x44, 0x54}, "NZST": {0x4e, 0x5a, 0x53, 0x54}, "ECT": {0x45, 0x43, 0x54}, "AWST": {0x41, 0x57, 0x53, 0x54}, "OEZ": {0x4f, 0x45, 0x5a}, "BT": {0x42, 0x54}, "ACDT": {0x41, 0x43, 0x44, 0x54}, "OESZ": {0x4f, 0x45, 0x53, 0x5a}, "CLT": {0x43, 0x4c, 0x54}, "WIT": {0x57, 0x49, 0x54}, "CHADT": {0x43, 0x48, 0x41, 0x44, 0x54}, "MDT": {0x4d, 0x44, 0x54}, "PST": {0x50, 0x53, 0x54}, "LHDT": {0x4c, 0x48, 0x44, 0x54}, "AWDT": {0x41, 0x57, 0x44, 0x54}, "GYT": {0x47, 0x59, 0x54}},
}
}
@@ -79,6 +81,11 @@ func (mg *mg) PluralsOrdinal() []locales.PluralRule {
return mg.pluralsOrdinal
}
+// PluralsRange returns the list of range plural rules associated with 'mg'
+func (mg *mg) PluralsRange() []locales.PluralRule {
+ return mg.pluralsRange
+}
+
// CardinalPluralRule returns the cardinal PluralRule given 'num' and digits/precision of 'v' for 'mg'
func (mg *mg) CardinalPluralRule(num float64, v uint64) locales.PluralRule {