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,977 lines (1,971 loc) 643 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": "tr" }, "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 (n == 1 ? '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} second ago", "other": "{0} saniye önce" } }, "minute": { "default": { "one": "{0} minute ago", "other": "{0} dakika önce" } }, "hour": { "default": { "one": "{0} hour ago", "other": "{0} saat önce" } }, "day": { "default": { "one": "{0} day ago", "other": "{0} gün önce" } }, "week": { "default": { "one": "{0} week ago", "other": "{0} hafta önce" } }, "month": { "default": { "one": "{0} month ago", "other": "{0} ay önce" } }, "year": { "default": { "one": "{0} year ago", "other": "{0} yıl önce" } } }, "until": { "second": { "default": { "one": "In {0} second", "other": "{0} saniye sonra" } }, "minute": { "default": { "one": "In {0} minute", "other": "{0} dakika sonra" } }, "hour": { "default": { "one": "In {0} hour", "other": "{0} saat sonra" } }, "day": { "default": { "one": "In {0} day", "other": "{0} gün sonra" } }, "week": { "default": { "one": "In {0} week", "other": "{0} hafta sonra" } }, "month": { "default": { "one": "In {0} month", "other": "{0} ay sonra" } }, "year": { "default": { "one": "In {0} year", "other": "{0} yıl sonra" } } }, "none": { "second": { "default": { "one": "{0} second", "other": "{0} saniye" }, "short": { "one": "{0} sec", "other": "{0} sn." }, "abbreviated": { "one": "{0} sn", "other": "{0} sn" } }, "minute": { "default": { "one": "{0} minute", "other": "{0} dakika" }, "short": { "one": "{0} min", "other": "{0} dk." }, "abbreviated": { "one": "{0} dk", "other": "{0} dk" } }, "hour": { "default": { "one": "{0} hour", "other": "{0} saat" }, "short": { "one": "{0} hr", "other": "{0} sa." }, "abbreviated": { "one": "{0} sa", "other": "{0} sa" } }, "day": { "default": { "one": "{0} day", "other": "{0} gün" }, "short": { "one": "{0} day", "other": "{0} gün" }, "abbreviated": { "one": "{0} gün", "other": "{0} gün" } }, "week": { "default": { "one": "{0} week", "other": "{0} hafta" }, "short": { "one": "{0} wk", "other": "{0} hf." } }, "month": { "default": { "one": "{0} month", "other": "{0} ay" }, "short": { "one": "{0} mth", "other": "{0} ay" } }, "year": { "default": { "one": "{0} year", "other": "{0} yıl" }, "short": { "one": "{0} yr", "other": "{0} yıl" } } } } }, "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": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "full": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "EEEE", "type": "pattern" }, { "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": "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": "HH", "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": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "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": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "Ehm": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "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": "a", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "Gy": [ { "value": "G", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "GyMMM": [ { "value": "G", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "GyMMMEd": [ { "value": "G", "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": "E", "type": "pattern" } ], "GyMMMd": [ { "value": "G", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "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" } ], "MEd": [ { "value": "dd", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "MMM": [ { "value": "LLL", "type": "pattern" } ], "MMMEd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "MMMMEd": [ { "value": "dd", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "MMMMd": [ { "value": "dd", "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": "a", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "h", "type": "pattern" } ], "hm": [ { "value": "a", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "hms": [ { "value": "a", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "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": "MM", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMEd": [ { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "yMM": [ { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMM": [ { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMEd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "yMMMM": [ { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMd": [ { "value": "dd", "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": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "QQQ", "type": "pattern" } ], "yQQQQ": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "QQQQ", "type": "pattern" } ] } }, "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": "d E", "type": "plaintext" } ], "Ehm": [ { "value": "E ", "type": "plaintext" }, { "value": "a", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "Ehms": [ { "value": "E ", "type": "plaintext" }, { "value": "a", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "Gy": [ { "value": "G y", "type": "plaintext" } ], "GyMMM": [ { "value": "G MMM y", "type": "plaintext" } ], "GyMMMEd": [ { "value": "G d MMM y E", "type": "plaintext" } ], "GyMMMd": [ { "value": "G dd MMM y", "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": "dd/MM E", "type": "plaintext" } ], "MMM": [ { "value": "LLL", "type": "plaintext" } ], "MMMEd": [ { "value": "d MMMM E", "type": "plaintext" } ], "MMMMEd": [ { "value": "dd MMMM E", "type": "plaintext" } ], "MMMMd": [ { "value": "dd MMMM", "type": "plaintext" } ], "MMMd": [ { "value": "d MMM", "type": "plaintext" } ], "Md": [ { "value": "dd/MM", "type": "plaintext" } ], "d": [ { "value": "d", "type": "plaintext" } ], "h": [ { "value": "a", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "h", "type": "pattern" } ], "hm": [ { "value": "a", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "hms": [ { "value": "a", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "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": "MM/y", "type": "plaintext" } ], "yMEd": [ { "value": "dd.MM.y E", "type": "plaintext" } ], "yMM": [ { "value": "MM.y", "type": "plaintext" } ], "yMMM": [ { "value": "MMM y", "type": "plaintext" } ], "yMMMEd": [ { "value": "d MMM y E", "type": "plaintext" } ], "yMMMM": [ { "value": "MMMM y", "type": "plaintext" } ], "yMMMd": [ { "value": "dd MMM y", "type": "plaintext" } ], "yMd": [ { "value": "dd.MM.y", "type": "plaintext" } ], "yQQQ": [ { "value": "y/QQQ", "type": "plaintext" } ], "yQQQQ": [ { "value": "y/QQQQ", "type": "plaintext" } ] } }, "date": { "default": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "full": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "EEEE", "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": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "short": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "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": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "Ehm": [ { "value": "E", "type": "pattern" }, { "value": " a h:mm", "type": "plaintext" } ], "Ehms": [ { "value": "E", "type": "pattern" }, { "value": " a h:mm:ss", "type": "plaintext" } ], "Gy": [ { "value": "G", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "GyMMM": [ { "value": "G", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "GyMMMEd": [ { "value": "G", "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": "E", "type": "pattern" } ], "GyMMMd": [ { "value": "G", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "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" } ], "MEd": [ { "value": "dd", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "MMM": [ { "value": "LLL", "type": "pattern" } ], "MMMEd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "MMMMEd": [ { "value": "dd", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "MMMMd": [ { "value": "dd", "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": "a h", "type": "plaintext" } ], "hm": [ { "value": "a h:mm", "type": "plaintext" } ], "hms": [ { "value": "a h:mm:ss", "type": "plaintext" } ], "mmss": [ { "value": "mm:ss", "type": "plaintext" } ], "ms": [ { "value": "mm:ss", "type": "plaintext" } ], "y": [ { "value": "y", "type": "pattern" } ], "yM": [ { "value": "MM", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMEd": [ { "value": "dd", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "yMM": [ { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMM": [ { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMEd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "yMMMM": [ { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMd": [ { "value": "dd", "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":