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,933 lines (1,927 loc) 663 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": "hr" }, "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 ((((v == 0 \u0026\u0026 ((i % 10 \u003e= 2) \u0026\u0026 (i % 10 \u003c= 4))) \u0026\u0026 !((i % 100 \u003e= 12) \u0026\u0026 (i % 100 \u003c= 14))) || (((f % 10 \u003e= 2) \u0026\u0026 (f % 10 \u003c= 4)) \u0026\u0026 !((f % 100 \u003e= 12) \u0026\u0026 (f % 100 \u003c= 14)))) ? 'few' : ((((v == 0 \u0026\u0026 i % 10 == 1) \u0026\u0026 i % 100 != 11) || (f % 10 == 1 \u0026\u0026 f % 100 != 11)) ? '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": ["few", "one", "other"], "ordinal": ["other"] } }, "TimespanFormatter": { "patterns": { "ago": { "second": { "default": { "few": "prije {0} sekunde", "one": "prije {0} sekundu", "other": "prije {0} sekundi" } }, "minute": { "default": { "few": "prije {0} minute", "one": "prije {0} minutu", "other": "prije {0} minuta" } }, "hour": { "default": { "few": "prije {0} sata", "one": "prije {0} sat", "other": "prije {0} sati" } }, "day": { "default": { "few": "prije {0} dana", "one": "prije {0} dan", "other": "prije {0} dana" } }, "week": { "default": { "few": "prije {0} tjedna", "one": "prije {0} tjedan", "other": "prije ovoliko tjedana: {0}" } }, "month": { "default": { "few": "prije {0} mjeseca", "one": "prije {0} mjesec", "other": "prije ovoliko mjeseci: {0}" } }, "year": { "default": { "few": "prije {0} godine", "one": "prije {0} godinu", "other": "prije ovoliko godina: {0}" } } }, "until": { "second": { "default": { "few": "za {0} sekunde", "one": "za {0} sekundu", "other": "za {0} sekundi" } }, "minute": { "default": { "few": "za {0} minute", "one": "za {0} minutu", "other": "za {0} minuta" } }, "hour": { "default": { "few": "za {0} sata", "one": "za {0} sat", "other": "za {0} sati" } }, "day": { "default": { "few": "za {0} dana", "one": "za {0} dan", "other": "za {0} dana" } }, "week": { "default": { "few": "za {0} tjedna", "one": "za {0} tjedan", "other": "za sljedeći broj tjedana: {0}" } }, "month": { "default": { "few": "za {0} mjeseca", "one": "za {0} mjesec", "other": "za sljedeći broj mjeseci: {0}" } }, "year": { "default": { "few": "za {0} godine", "one": "za {0} godinu", "other": "za {0} godina" } } }, "none": { "second": { "default": { "few": "{0} sekunde", "one": "{0} sekunda", "other": "{0} sekunda" }, "short": { "few": "{0} s", "one": "{0} s", "other": "{0} s" }, "abbreviated": { "few": "{0}s", "one": "{0}s", "other": "{0}s" } }, "minute": { "default": { "few": "{0} minute", "one": "{0} minuta", "other": "{0} minuta" }, "short": { "few": "{0} min", "one": "{0} min", "other": "{0} min" } }, "hour": { "default": { "few": "{0} sata", "one": "{0} sat", "other": "{0} sata" }, "short": { "few": "{0} h", "one": "{0} h", "other": "{0} h" } }, "day": { "default": { "few": "{0} dana", "one": "{0} dan", "other": "{0} dan" }, "short": { "few": "{0} dana", "one": "{0} dan", "other": "{0} dan" } }, "week": { "default": { "few": "{0} tjedna", "one": "{0} tjedan", "other": "{0} tjedan" }, "short": { "few": "{0} tj.", "one": "{0} tj.", "other": "{0} tj." } }, "month": { "default": { "few": "{0} mjeseca", "one": "{0} mjesec", "other": "{0} mjesec" }, "short": { "few": "{0} mj.", "one": "{0} mj.", "other": "{0} mj." } }, "year": { "default": { "few": "{0} godine", "one": "{0} godina", "other": "{0} godina" }, "short": { "few": "{0} g.", "one": "{0} g.", "other": "{0} g." } } } } }, "DateTimeFormatter": { "tokens": { "date_time": { "default": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": " ", "type": "plaintext" }, { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "full": [ { "value": "EEEE", "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": " ", "type": "plaintext" }, { "value": "'u'", "type": "plaintext" }, { "value": " ", "type": "plaintext" }, { "value": "HH", "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": " ", "type": "plaintext" }, { "value": "'u'", "type": "plaintext" }, { "value": " ", "type": "plaintext" }, { "value": "HH", "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": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": " ", "type": "plaintext" }, { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "short": [ { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": " ", "type": "plaintext" }, { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "pattern" } ], "EHm": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "EHms": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "HH", "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": "HH", "type": "pattern" } ], "Hm": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "Hms": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "M": [ { "value": "L", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "MEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "MMM": [ { "value": "LLL", "type": "pattern" } ], "MMMEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" } ], "MMMMEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" } ], "MMMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" } ], "MMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" } ], "MMdd": [ { "value": "dd", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "Md": [ { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "d": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "h": [ { "value": "h", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "hm": [ { "value": "hh", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "hms": [ { "value": "hh", "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": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "y": [ { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "yM": [ { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "yMEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "yMM": [ { "value": "MM", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "yMMM": [ { "value": "LLL", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "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" }, { "value": ".", "type": "plaintext" } ], "yMMMM": [ { "value": "LLLL", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "yMMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "yMd": [ { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "yQQQ": [ { "value": "QQQ", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "yQQQQ": [ { "value": "QQQQ", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ] } }, "time": { "default": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "full": [ { "value": "HH", "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": "HH", "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": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "short": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "plaintext" } ], "EHm": [ { "value": "E ", "type": "plaintext" }, { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "EHms": [ { "value": "E ", "type": "plaintext" }, { "value": "HH", "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": "HH", "type": "pattern" } ], "Hm": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "Hms": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "M": [ { "value": "L.", "type": "plaintext" } ], "MEd": [ { "value": "E, dd.MM.", "type": "plaintext" } ], "MMM": [ { "value": "LLL", "type": "plaintext" } ], "MMMEd": [ { "value": "E, d. MMM", "type": "plaintext" } ], "MMMMEd": [ { "value": "E, d. MMMM", "type": "plaintext" } ], "MMMMd": [ { "value": "d. MMMM", "type": "plaintext" } ], "MMMd": [ { "value": "d. MMM", "type": "plaintext" } ], "MMdd": [ { "value": "dd. MM.", "type": "plaintext" } ], "Md": [ { "value": "dd.MM.", "type": "plaintext" } ], "d": [ { "value": "d.", "type": "plaintext" } ], "h": [ { "value": "h", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "hm": [ { "value": "hh", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "hms": [ { "value": "hh", "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": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "y": [ { "value": "y.", "type": "plaintext" } ], "yM": [ { "value": "MM.y.", "type": "plaintext" } ], "yMEd": [ { "value": "E, dd.MM.y.", "type": "plaintext" } ], "yMM": [ { "value": "MM. y.", "type": "plaintext" } ], "yMMM": [ { "value": "LLL y.", "type": "plaintext" } ], "yMMMEd": [ { "value": "E, d. MMM y.", "type": "plaintext" } ], "yMMMM": [ { "value": "LLLL y.", "type": "plaintext" } ], "yMMMd": [ { "value": "d. MMM y.", "type": "plaintext" } ], "yMd": [ { "value": "dd.MM.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": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "full": [ { "value": "EEEE", "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" } ], "long": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "medium": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "short": [ { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "additional": { "E": [ { "value": "ccc", "type": "pattern" } ], "EHm": [ { "value": "E", "type": "pattern" }, { "value": " HH:mm", "type": "plaintext" } ], "EHms": [ { "value": "E", "type": "pattern" }, { "value": " HH: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": "HH", "type": "plaintext" } ], "Hm": [ { "value": "HH:mm", "type": "plaintext" } ], "Hms": [ { "value": "HH:mm:ss", "type": "plaintext" } ], "M": [ { "value": "L", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "MEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "MMM": [ { "value": "LLL", "type": "pattern" } ], "MMMEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" } ], "MMMMEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" } ], "MMMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" } ], "MMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" } ], "MMdd": [ { "value": "dd", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "Md": [ { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".",