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,920 lines (1,914 loc) 665 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": "uk" }, "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))) ? 'few' : ((((v == 0 \u0026\u0026 i % 10 == 0) || (v == 0 \u0026\u0026 ((i % 10 \u003e= 5) \u0026\u0026 (i % 10 \u003c= 9)))) || (v == 0 \u0026\u0026 ((i % 100 \u003e= 11) \u0026\u0026 (i % 100 \u003c= 14)))) ? 'many' : (((v == 0 \u0026\u0026 i % 10 == 1) \u0026\u0026 i % 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 ((n % 10 == 3 \u0026\u0026 n % 100 != 13) ? 'few' : 'other'); })" }, "names": { "cardinal": ["few", "many", "one", "other"], "ordinal": ["few", "other"] } }, "TimespanFormatter": { "patterns": { "ago": { "second": { "default": { "few": "{0} секунди тому", "many": "{0} секунд тому", "one": "{0} секунду тому", "other": "{0} секунди тому" } }, "minute": { "default": { "few": "{0} хвилини тому", "many": "{0} хвилин тому", "one": "{0} хвилину тому", "other": "{0} хвилини тому" } }, "hour": { "default": { "few": "{0} години тому", "many": "{0} годин тому", "one": "{0} годину тому", "other": "{0} години тому" } }, "day": { "default": { "few": "{0} дні тому", "many": "{0} днів тому", "one": "{0} день тому", "other": "{0} дня тому" } }, "week": { "default": { "few": "{0} тижні тому", "many": "{0} тижнів тому", "one": "{0} тиждень тому", "other": "{0} тижня тому" } }, "month": { "default": { "few": "{0} місяці тому", "many": "{0} місяців тому", "one": "{0} місяць тому", "other": "{0} місяця тому" } }, "year": { "default": { "few": "{0} роки тому", "many": "{0} років тому", "one": "{0} рік тому", "other": "{0} року тому" } } }, "until": { "second": { "default": { "few": "Через {0} секунди", "many": "Через {0} секунд", "one": "Через {0} секунду", "other": "Через {0} секунди" } }, "minute": { "default": { "few": "Через {0} хвилини", "many": "Через {0} хвилин", "one": "Через {0} хвилину", "other": "Через {0} хвилини" } }, "hour": { "default": { "few": "Через {0} години", "many": "Через {0} годин", "one": "Через {0} годину", "other": "Через {0} години" } }, "day": { "default": { "few": "Через {0} дні", "many": "Через {0} днів", "one": "Через {0} день", "other": "Через {0} дня" } }, "week": { "default": { "few": "Через {0} тижні", "many": "Через {0} тижнів", "one": "Через {0} тиждень", "other": "Через {0} тижня" } }, "month": { "default": { "few": "Через {0} місяці", "many": "Через {0} місяців", "one": "Через {0} місяць", "other": "Через {0} місяця" } }, "year": { "default": { "few": "Через {0} роки", "many": "Через {0} років", "one": "Через {0} рік", "other": "Через {0} року" } } }, "none": { "second": { "default": { "few": "{0} секунди", "many": "{0} секунд", "one": "{0} секунда", "other": "{0} секунди" }, "short": { "few": "{0} сек.", "many": "{0} сек.", "one": "{0} сек.", "other": "{0} сек." }, "abbreviated": { "few": "{0}с", "many": "{0}с", "one": "{0}с", "other": "{0}с" } }, "minute": { "default": { "few": "{0} хвилини", "many": "{0} хвилин", "one": "{0} хвилина", "other": "{0} хвилини" }, "short": { "few": "{0} хв.", "many": "{0} хв.", "one": "{0} хв.", "other": "{0} хв." }, "abbreviated": { "few": "{0} хв.", "many": "{0} хв.", "one": "{0} хв.", "other": "{0} хв." } }, "hour": { "default": { "few": "{0} години", "many": "{0} годин", "one": "{0} година", "other": "{0} години" }, "short": { "few": "{0} год.", "many": "{0} год.", "one": "{0} год.", "other": "{0} год." }, "abbreviated": { "few": "{0} год.", "many": "{0} год.", "one": "{0} год.", "other": "{0} год." } }, "day": { "default": { "few": "{0} дні", "many": "{0} днів", "one": "{0} день", "other": "{0} дня" }, "short": { "few": "{0} дні", "many": "{0} днів", "one": "{0} день", "other": "{0} дня" }, "abbreviated": { "few": "{0} дн.", "many": "{0} дн.", "one": "{0} дн.", "other": "{0} дн." } }, "week": { "default": { "few": "{0} тижні", "many": "{0} тижнів", "one": "{0} тиждень", "other": "{0} тижня" }, "short": { "few": "{0} тиж.", "many": "{0} тиж.", "one": "{0} тиж.", "other": "{0} тиж." } }, "month": { "default": { "few": "{0} місяці", "many": "{0} місяців", "one": "{0} місяць", "other": "{0} місяця" }, "short": { "few": "{0} міс.", "many": "{0} міс.", "one": "{0} міс.", "other": "{0} міс." } }, "year": { "default": { "few": "{0} роки", "many": "{0} років", "one": "{0} рік", "other": "{0} року" }, "short": { "few": "{0} р.", "many": "{0} р.", "one": "{0} р.", "other": "{0} р." } } } } }, "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": "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": "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": "yy", "type": "pattern" }, { "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" } ], "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" } ], "HHmm": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "HHmmss": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "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" } ], "MEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" } ], "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" } ], "Md": [ { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" } ], "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": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "y": [ { "value": "y", "type": "pattern" } ], "yM": [ { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "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" } ], "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" } ], "yMMMd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMd": [ { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "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" }, { "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" } ], "HHmm": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "HHmmss": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "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" } ], "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": "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": "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" } ], "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": "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" } ], "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" } ], "HHmm": [ { "value": "HH:mm", "type": "plaintext" } ], "HHmmss": [ { "value": "HH:mm:ss", "type": "plaintext" } ], "Hm": [ { "value": "HH:mm", "type": "plaintext" } ], "Hms": [ { "value": "HH:mm:ss", "type": "plaintext" } ], "M": [ { "value": "L", "type": "pattern" } ], "MEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" } ], "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" } ], "Md": [ { "value": "dd", "type": "pattern" }, { "value":