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,936 lines (1,929 loc) 655 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": "sk" }, "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 \u003e= 2) \u0026\u0026 (i \u003c= 4)) \u0026\u0026 v == 0) ? 'few' : (v != 0 ? 'many' : ((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": ["few", "many", "one", "other"], "ordinal": ["other"] } }, "TimespanFormatter": { "patterns": { "ago": { "second": { "default": { "few": "Pred {0} sekundami", "many": "Pred {0} sekundami", "one": "Pred {0} sekundou", "other": "Pred {0} sekundami" } }, "minute": { "default": { "few": "Pred {0} minútami", "many": "Pred {0} minútami", "one": "Pred {0} minútou", "other": "Pred {0} minútami" } }, "hour": { "default": { "few": "Pred {0} hodinami", "many": "Pred {0} hodinami", "one": "Pred {0} hodinou", "other": "Pred {0} hodinami" } }, "day": { "default": { "few": "Pred {0} dňami", "many": "Pred {0} dňami", "one": "Pred {0} dňom", "other": "Pred {0} dňami" } }, "week": { "default": { "few": "Pred {0} týždňami", "many": "Pred {0} týždňami", "one": "Pred {0} týždňom", "other": "Pred {0} týždňami" } }, "month": { "default": { "few": "Pred {0} mesiacmi", "many": "Pred {0} mesiacmi", "one": "Pred {0} mesiacom", "other": "Pred {0} mesiacmi" } }, "year": { "default": { "few": "Pred {0} rokmi", "many": "Pred {0} rokmi", "one": "Pred {0} rokom", "other": "Pred {0} rokmi" } } }, "until": { "second": { "default": { "few": "O {0} sekundy", "many": "O {0} sekundy", "one": "O {0} sekundu", "other": "O {0} sekúnd" } }, "minute": { "default": { "few": "O {0} minúty", "many": "O {0} minúty", "one": "O {0} minútu", "other": "O {0} minút" } }, "hour": { "default": { "few": "O {0} hodiny", "many": "O {0} hodiny", "one": "O {0} hodinu", "other": "O {0} hodín" } }, "day": { "default": { "few": "O {0} dni", "many": "O {0} dni", "one": "{0} deň", "other": "O {0} dní" } }, "week": { "default": { "few": "O {0} týždne", "many": "O {0} týždne", "one": "O {0} týždeň", "other": "O {0} týždňov" } }, "month": { "default": { "few": "O {0} mesiace", "many": "O {0} mesiace", "one": "O {0} mesiac", "other": "O {0} mesiacov" } }, "year": { "default": { "few": "O {0} roky", "many": "O {0} roky", "one": "O {0} rok", "other": "O {0} rokov" } } }, "none": { "second": { "default": { "few": "{0} sekundy", "many": "{0} sekundy", "one": "{0} sekunda", "other": "{0} sekúnd" }, "short": { "few": "{0} s", "many": "{0} s", "one": "{0} s", "other": "{0} s" }, "abbreviated": { "few": "{0} s.", "many": "{0} s.", "one": "{0} s.", "other": "{0} s." } }, "minute": { "default": { "few": "{0} minúty", "many": "{0} minúty", "one": "{0} minúta", "other": "{0} minút" }, "short": { "few": "{0} min", "many": "{0} min", "one": "{0} min", "other": "{0} min" }, "abbreviated": { "few": "{0} min", "many": "{0} min", "one": "{0} min", "other": "{0} min" } }, "hour": { "default": { "few": "{0} hodiny", "many": "{0} hodiny", "one": "{0} hodina", "other": "{0} hodín" }, "short": { "few": "{0} h", "many": "{0} h", "one": "{0} h", "other": "{0} h" }, "abbreviated": { "few": "{0} hod.", "many": "{0} hod.", "one": "{0} hod.", "other": "{0} hod." } }, "day": { "default": { "few": "{0} dni", "many": "{0} dni", "one": "{0} deň", "other": "{0} dní" }, "short": { "few": "{0} d.", "many": "{0} d.", "one": "{0} d.", "other": "{0} d." }, "abbreviated": { "few": "{0}d", "many": "{0}d", "one": "{0}d", "other": "{0}d" } }, "week": { "default": { "few": "{0} týždne", "many": "{0} týždne", "one": "{0} týždeň", "other": "{0} týždňov" }, "short": { "few": "{0} týžd.", "many": "{0} týžd.", "one": "{0} týžd.", "other": "{0} týžd." } }, "month": { "default": { "few": "{0} mesiace", "many": "{0} mesiace", "one": "{0} mesiac", "other": "{0} mesiacov" }, "short": { "few": "{0} mes.", "many": "{0} mes.", "one": "{0} mes.", "other": "{0} mes." } }, "year": { "default": { "few": "{0} roky", "many": "{0} roky", "one": "{0} rok", "other": "{0} rokov" }, "short": { "few": "{0} r.", "many": "{0} r.", "one": "{0} r.", "other": "{0} r." } } } } }, "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": " ", "type": "plaintext" }, { "value": "H", "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": "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": " ", "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": " ", "type": "plaintext" }, { "value": "H", "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": "yy", "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": "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": "LLLL", "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": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "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": "M", "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" }, { "value": ".", "type": "plaintext" } ], "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": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "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": "M", "type": "pattern" } ], "Md": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "M", "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": "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" } ], "mmss": [ { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "ms": [ { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "y": [ { "value": "y", "type": "pattern" } ], "yM": [ { "value": "M", "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" } ], "yMMM": [ { "value": "LLLL", "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": "M", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMM": [ { "value": "LLLL", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMMd": [ { "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": "M", "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": "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": "LLLL y G", "type": "plaintext" } ], "GyMMMEd": [ { "value": "E, d. MMMM y G", "type": "plaintext" } ], "GyMMMMd": [ { "value": "d. MMMM y G", "type": "plaintext" } ], "GyMMMd": [ { "value": "d. M. 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": "E, d. M.", "type": "plaintext" } ], "MMMMEd": [ { "value": "E, d. MMMM", "type": "plaintext" } ], "MMMMd": [ { "value": "d. MMMM", "type": "plaintext" } ], "MMMd": [ { "value": "d. M", "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" } ], "mmss": [ { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "ms": [ { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "y": [ { "value": "y", "type": "plaintext" } ], "yM": [ { "value": "M/y", "type": "plaintext" } ], "yMEd": [ { "value": "E d. M. y", "type": "plaintext" } ], "yMMM": [ { "value": "LLLL y", "type": "plaintext" } ], "yMMMEd": [ { "value": "E d. M. y", "type": "plaintext" } ], "yMMMM": [ { "value": "LLLL y", "type": "plaintext" } ], "yMMMMd": [ { "value": "d. MMMM y", "type": "plaintext" } ], "yMMMd": [ { "value": "d. M. 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": "EEEE", "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": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "yy", "type": "pattern" } ], "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": "LLLL", "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": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMMd": [ { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "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": "M", "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" }, { "value": ".", "type": "plaintext" } ], "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": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": ".", "type": "plaintext" } ], "MMMMEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ". ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" } ],