UNPKG

twitter_cldr

Version:

JavaScript implementation of the ICU (International Components for Unicode) that uses the Common Locale Data Repository to format dates, plurals, and more. Based on twitter-cldr-rb

1,967 lines (1,961 loc) 640 kB
/* // Copyright 2012 Twitter, Inc // http://www.apache.org/licenses/LICENSE-2.0 // TwitterCLDR (JavaScript) v3.3.0 // Authors: Cameron Dutro [@camertron] Kirill Lashuk [@KL_7] portions by Sven Fuchs [@svenfuchs] // Homepage: https://twitter.com // Description: Provides date, time, number, and list formatting functionality for various Twitter-supported locales in Javascript. */ /*-module-*/ /*_lib/twitter_cldr_*/ (function() { var TwitterCldrDataBundle, key, obj, root; TwitterCldrDataBundle = { "Settings": { "is_rtl": false, "locale": "fi" }, "PluralRules": { "rules": { "cardinal": "(function(num, runtime) { var n = runtime.n(num); var i = runtime.i(num); var v = runtime.v(num); var w = runtime.w(num); var f = runtime.f(num); var t = runtime.t(num); return ((i == 1 \u0026\u0026 v == 0) ? 'one' : 'other'); })", "ordinal": "(function(num, runtime) { var n = runtime.n(num); var i = runtime.i(num); var v = runtime.v(num); var w = runtime.w(num); var f = runtime.f(num); var t = runtime.t(num); return 'other'; })" }, "names": { "cardinal": ["one", "other"], "ordinal": ["other"] } }, "TimespanFormatter": { "patterns": { "ago": { "second": { "default": { "one": "{0} sekunti sitten", "other": "{0} sekuntia sitten" } }, "minute": { "default": { "one": "{0} minuutti sitten", "other": "{0} minuuttia sitten" } }, "hour": { "default": { "one": "{0} tunti sitten", "other": "{0} tuntia sitten" } }, "day": { "default": { "one": "{0} päivä sitten", "other": "{0} päivää sitten" } }, "week": { "default": { "one": "{0} viikko sitten", "other": "{0} viikkoa sitten" } }, "month": { "default": { "one": "{0} kuukausi sitten", "other": "{0} kuukautta sitten" } }, "year": { "default": { "one": "{0} vuosi sitten", "other": "{0} vuotta sitten" } } }, "until": { "second": { "default": { "one": "{0} sekunnin päästä", "other": "{0} sekunnin päästä" } }, "minute": { "default": { "one": "{0} minuutin päästä", "other": "{0} minuutin päästä" } }, "hour": { "default": { "one": "{0} tunnin päästä", "other": "{0} tunnin päästä" } }, "day": { "default": { "one": "{0} päivän päästä", "other": "{0} päivän päästä" } }, "week": { "default": { "one": "{0} viikon päästä", "other": "{0} viikon päästä" } }, "month": { "default": { "one": "{0} kuukauden päästä", "other": "{0} kuukauden päästä" } }, "year": { "default": { "one": "{0} vuoden päästä", "other": "{0} vuoden päästä" } } }, "none": { "second": { "default": { "one": "{0} sekunti", "other": "{0} sekuntia" }, "short": { "one": "{0} s", "other": "{0} s" }, "abbreviated": { "one": "{0} s", "other": "{0} s" } }, "minute": { "default": { "one": "{0} minuutti", "other": "{0} minuuttia" }, "short": { "one": "{0} min", "other": "{0} min" }, "abbreviated": { "one": "{0} min", "other": "{0} min" } }, "hour": { "default": { "one": "{0} tunti", "other": "{0} tuntia" }, "short": { "one": "{0} t", "other": "{0} t" }, "abbreviated": { "one": "{0} h", "other": "{0} h" } }, "day": { "default": { "one": "{0} päivä", "other": "{0} päivää" }, "short": { "one": "{0} pv", "other": "{0} pv" }, "abbreviated": { "one": "{0} pv", "other": "{0} pv" } }, "week": { "default": { "one": "{0} viikko", "other": "{0} viikkoa" }, "short": { "one": "{0} vk", "other": "{0} vk" } }, "month": { "default": { "one": "{0} kuukausi", "other": "{0} kuukautta" }, "short": { "one": "{0} kk", "other": "{0} kk" } }, "year": { "default": { "one": "{0} vuosi", "other": "{0} vuotta" }, "short": { "one": "{0} v", "other": "{0} v" } } } } }, "DateTimeFormatter": { "tokens": { "date_time": { "default": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "full": [ { "value": "cccc", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "zzzz", "type": "pattern" } ], "long": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "z", "type": "pattern" } ], "medium": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "short": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "pattern" } ], "EHm": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "EHms": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "Ed": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "Ehm": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "Ehms": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "Gy": [ { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMM": [ { "value": "LLL", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "H": [ { "value": "H", "type": "pattern" } ], "Hm": [ { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "Hms": [ { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "M": [ { "value": "L", "type": "pattern" } ], "MEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "MMM": [ { "value": "LLL", "type": "pattern" } ], "MMMEd": [ { "value": "ccc", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" } ], "MMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" } ], "Md": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "d": [ { "value": "d", "type": "pattern" } ], "h": [ { "value": "h", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "hm": [ { "value": "h", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "hms": [ { "value": "h", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "ms": [ { "value": "m", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "y": [ { "value": "y", "type": "pattern" } ], "yM": [ { "value": "L", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMM": [ { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMM": [ { "value": "LLL", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMM": [ { "value": "LLLL", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMMccccd": [ { "value": "cccc", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMd": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yQQQ": [ { "value": "QQQ", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yQQQQ": [ { "value": "QQQQ", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ] } }, "time": { "default": [ { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "full": [ { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "zzzz", "type": "pattern" } ], "long": [ { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "z", "type": "pattern" } ], "medium": [ { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "short": [ { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "plaintext" } ], "EHm": [ { "value": "E ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "EHms": [ { "value": "E ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "Ed": [ { "value": "E d.", "type": "plaintext" } ], "Ehm": [ { "value": "E ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "Ehms": [ { "value": "E ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "Gy": [ { "value": "y G", "type": "plaintext" } ], "GyMMM": [ { "value": "LLL y G", "type": "plaintext" } ], "GyMMMEd": [ { "value": "E d. MMM y G", "type": "plaintext" } ], "GyMMMd": [ { "value": "d. MMM y G", "type": "plaintext" } ], "H": [ { "value": "H", "type": "pattern" } ], "Hm": [ { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "Hms": [ { "value": "H", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "M": [ { "value": "L", "type": "plaintext" } ], "MEd": [ { "value": "E d.M.", "type": "plaintext" } ], "MMM": [ { "value": "LLL", "type": "plaintext" } ], "MMMEd": [ { "value": "ccc d. MMM", "type": "plaintext" } ], "MMMd": [ { "value": "d. MMM", "type": "plaintext" } ], "Md": [ { "value": "d.M.", "type": "plaintext" } ], "d": [ { "value": "d", "type": "plaintext" } ], "h": [ { "value": "h", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "hm": [ { "value": "h", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "hms": [ { "value": "h", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "ms": [ { "value": "m", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "y": [ { "value": "y", "type": "plaintext" } ], "yM": [ { "value": "L.y", "type": "plaintext" } ], "yMEd": [ { "value": "E d.M.y", "type": "plaintext" } ], "yMM": [ { "value": "M.y", "type": "plaintext" } ], "yMMM": [ { "value": "LLL y", "type": "plaintext" } ], "yMMMEd": [ { "value": "E d. MMM y", "type": "plaintext" } ], "yMMMM": [ { "value": "LLLL y", "type": "plaintext" } ], "yMMMMccccd": [ { "value": "cccc d. MMMM y", "type": "plaintext" } ], "yMMMd": [ { "value": "d. MMM y", "type": "plaintext" } ], "yMd": [ { "value": "d.M.y", "type": "plaintext" } ], "yQQQ": [ { "value": "QQQ y", "type": "plaintext" } ], "yQQQQ": [ { "value": "QQQQ y", "type": "plaintext" } ] } }, "date": { "default": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "full": [ { "value": "cccc", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "long": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "medium": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "short": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "pattern" } ], "EHm": [ { "value": "E", "type": "pattern" }, { "value": " H.mm", "type": "plaintext" } ], "EHms": [ { "value": "E", "type": "pattern" }, { "value": " H.mm.ss", "type": "plaintext" } ], "Ed": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "Ehm": [ { "value": "E", "type": "pattern" }, { "value": " h.mm a", "type": "plaintext" } ], "Ehms": [ { "value": "E", "type": "pattern" }, { "value": " h.mm.ss a", "type": "plaintext" } ], "Gy": [ { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMM": [ { "value": "LLL", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "H": [ { "value": "H", "type": "plaintext" } ], "Hm": [ { "value": "H.mm", "type": "plaintext" } ], "Hms": [ { "value": "H.mm.ss", "type": "plaintext" } ], "M": [ { "value": "L", "type": "pattern" } ], "MEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "MMM": [ { "value": "LLL", "type": "pattern" } ], "MMMEd": [ { "value": "ccc", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" } ], "MMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" } ], "Md": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "d": [ { "value": "d", "type": "pattern" } ], "h": [ { "value": "h a", "type": "plaintext" } ], "hm": [ { "value": "h.mm a", "type": "plaintext" } ], "hms": [ { "value": "h.mm.ss a", "type": "plaintext" } ], "ms": [ { "value": "m.ss", "type": "plaintext" } ], "y": [ { "value": "y", "type": "pattern" } ], "yM": [ { "value": "L", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMM": [ { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMM": [ { "value": "LLL", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMM": [ { "value": "LLLL", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMMccccd": [ { "value": "cccc", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMd": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yQQQ": [ { "value": "QQQ", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yQQQQ": [ { "value": "QQQQ", "type": "pattern" }, { "value": " "