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,970 loc) 644 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": true, "locale": "fa" }, "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 == 0 || 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} ثانیه پیش" } }, "minute": { "default": { "one": "{0} minute ago", "other": "{0} دقیقه پیش" } }, "hour": { "default": { "one": "{0} hour ago", "other": "{0} ساعت پیش" } }, "day": { "default": { "one": "{0} day ago", "other": "{0} روز پیش" } }, "week": { "default": { "one": "{0} week ago", "other": "{0} هفته پیش" } }, "month": { "default": { "one": "{0} month ago", "other": "{0} ماه پیش" } }, "year": { "default": { "one": "{0} year ago", "other": "{0} سال پیش" } } }, "until": { "second": { "default": { "one": "In {0} second", "other": "{0} ثانیه بعد" } }, "minute": { "default": { "one": "In {0} minute", "other": "{0} دقیقه بعد" } }, "hour": { "default": { "one": "In {0} hour", "other": "{0} ساعت بعد" } }, "day": { "default": { "one": "In {0} day", "other": "{0} روز بعد" } }, "week": { "default": { "one": "In {0} week", "other": "{0} هفته بعد" } }, "month": { "default": { "one": "In {0} month", "other": "{0} ماه بعد" } }, "year": { "default": { "one": "In {0} year", "other": "{0} سال بعد" } } }, "none": { "second": { "default": { "one": "{0} second", "other": "{0} ثانیه" }, "short": { "one": "{0} sec", "other": "{0} ثانیه" }, "abbreviated": { "one": "{0} ثانیه", "other": "{0} ثانیه" } }, "minute": { "default": { "one": "{0} minute", "other": "{0} دقیقه" }, "short": { "one": "{0} min", "other": "{0} دقیقه" }, "abbreviated": { "one": "{0} دقیقه", "other": "{0} دقیقه" } }, "hour": { "default": { "one": "{0} hour", "other": "{0} ساعت" }, "short": { "one": "{0} hr", "other": "{0} ساعت" }, "abbreviated": { "one": "{0} ساعت", "other": "{0} ساعت" } }, "day": { "default": { "one": "{0} day", "other": "{0} روز" }, "short": { "one": "{0} day", "other": "{0} روز" }, "abbreviated": { "one": "{0} روز", "other": "{0} روز" } }, "week": { "default": { "one": "{0} week", "other": "{0} هفته" }, "short": { "one": "{0} wk", "other": "{0} هفته" } }, "month": { "default": { "one": "{0} month", "other": "{0} ماه" }, "short": { "one": "{0} mth", "other": "{0} ماه" } }, "year": { "default": { "one": "{0} year", "other": "{0} سال" }, "short": { "one": "{0} yr", "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": " ", "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": "س", "type": "plaintext" }, { "value": "ا", "type": "plaintext" }, { "value": "ع", "type": "plaintext" }, { "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" }, { "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" }, { "value": " ", "type": "plaintext" }, { "value": "س", "type": "plaintext" }, { "value": "ا", "type": "plaintext" }, { "value": "ع", "type": "plaintext" }, { "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" }, { "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" }, { "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": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "،", "type": "plaintext" }, { "value": "‏", "type": "plaintext" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "pattern" } ], "EHm": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "EHms": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "Ed": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "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": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "H": [ { "value": "H", "type": "pattern" } ], "HHmmZ": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " (", "type": "plaintext" }, { "value": "Z", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "Hm": [ { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "Hms": [ { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "M": [ { "value": "L", "type": "pattern" } ], "MEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "MMM": [ { "value": "LLL", "type": "pattern" } ], "MMMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "LLL", "type": "pattern" } ], "MMMMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "LLLL", "type": "pattern" } ], "MMMMd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "LLLL", "type": "pattern" } ], "MMMd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "LLL", "type": "pattern" } ], "Md": [ { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "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" } ], "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": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "M", "type": "pattern" } ], "yMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "yMMM": [ { "value": "MMM", "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": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMMMMEEEEd": [ { "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" } ], "yMMMd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "yMd": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "yQQQ": [ { "value": "QQQQ", "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" }, { "value": ")", "type": "plaintext" } ], "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" }, { "value": ")", "type": "plaintext" } ], "medium": [ { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "short": [ { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "plaintext" } ], "EHm": [ { "value": "E ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "EHms": [ { "value": "E ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "Ed": [ { "value": "E d", "type": "plaintext" } ], "Ehm": [ { "value": "E ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "Ehms": [ { "value": "E ", "type": "plaintext" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" } ], "Gy": [ { "value": "y G", "type": "plaintext" } ], "GyMMM": [ { "value": "MMM y G", "type": "plaintext" } ], "GyMMMEd": [ { "value": "E d MMM y G", "type": "plaintext" } ], "GyMMMd": [ { "value": "d MMM y G", "type": "plaintext" } ], "H": [ { "value": "H", "type": "pattern" } ], "HHmmZ": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " (", "type": "plaintext" }, { "value": "Z", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "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 M/d", "type": "plaintext" } ], "MMM": [ { "value": "LLL", "type": "plaintext" } ], "MMMEd": [ { "value": "E d LLL", "type": "plaintext" } ], "MMMMEd": [ { "value": "E d LLLL", "type": "plaintext" } ], "MMMMd": [ { "value": "d LLLL", "type": "plaintext" } ], "MMMd": [ { "value": "d LLL", "type": "plaintext" } ], "Md": [ { "value": "M/d", "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": "y/M", "type": "plaintext" } ], "yMEd": [ { "value": "E y/M/d", "type": "plaintext" } ], "yMMM": [ { "value": "MMM y", "type": "plaintext" } ], "yMMMEd": [ { "value": "E d MMM y", "type": "plaintext" } ], "yMMMM": [ { "value": "MMMM y", "type": "plaintext" } ], "yMMMMEEEEd": [ { "value": "EEEE d MMMM y", "type": "plaintext" } ], "yMMMd": [ { "value": "d MMM y", "type": "plaintext" } ], "yMd": [ { "value": "y/M/d", "type": "plaintext" } ], "yQQQ": [ { "value": "QQQQ 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" } ], "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": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" } ], "short": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "pattern" } ], "EHm": [ { "value": "E", "type": "pattern" }, { "value": " H:mm", "type": "plaintext" } ], "EHms": [ { "value": "E", "type": "pattern" }, { "value": " H:mm:ss", "type": "plaintext" } ], "Ed": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "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": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "H": [ { "value": "H", "type": "plaintext" } ], "HHmmZ": [ { "value": "HH:mm (Z)", "type": "plaintext" } ], "Hm": [ { "value": "H:mm", "type": "plaintext" } ], "Hms": [ { "value": "H:mm:ss", "type": "plaintext" } ], "M": [ { "value": "L", "type": "pattern" } ], "MEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "MMM": [ { "value": "LLL", "type": "pattern" } ], "MMMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "LLL", "type": "pattern" } ], "MMMMEd": [ { "value": "E", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "LLLL", "type": "pattern" } ], "MMMMd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "LLLL", "type": "pattern" } ], "MMMd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "LLL", "type": "pattern" } ], "Md": [ { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "d": [ { "value": "d", "type": "pattern" } ], "h": [ { "value": "h a", "type": "plaintext" } ], "hm": [ { "value": "h:mm a", "type": "plaintext" } ], "hms": [ { "value": "h:mm:ss a", "type": "plaintext" } ], "mmss": [ { "value": "mm:ss", "type": "plaintext" } ], "ms": [ { "value": "mm:ss", "type": "plaintext" } ], "y": [ { "value": "y", "type": "pattern" } ], "yM": [ { "value": "y",