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,940 lines (1,934 loc) 653 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": "ga" }, "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 \u003e= 3) \u0026\u0026 (n \u003c= 6)) ? 'few' : (((n \u003e= 7) \u0026\u0026 (n \u003c= 10)) ? 'many' : (n == 1 ? 'one' : (n == 2 ? 'two' : '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", "two"], "ordinal": ["other"] } }, "TimespanFormatter": { "patterns": { "ago": { "second": { "default": { "few": "{0} second ago", "many": "{0} second ago", "one": "{0} second ago", "two": "{0} second ago", "other": "{0} seconds ago" } }, "minute": { "default": { "few": "{0} minute ago", "many": "{0} minute ago", "one": "{0} minute ago", "two": "{0} minute ago", "other": "{0} minutes ago" } }, "hour": { "default": { "few": "{0} hour ago", "many": "{0} hour ago", "one": "{0} hour ago", "two": "{0} hour ago", "other": "{0} hours ago" } }, "day": { "default": { "few": "{0} day ago", "many": "{0} day ago", "one": "{0} day ago", "two": "{0} day ago", "other": "{0} days ago" } }, "week": { "default": { "few": "{0} week ago", "many": "{0} week ago", "one": "{0} week ago", "two": "{0} week ago", "other": "{0} weeks ago" } }, "month": { "default": { "few": "{0} month ago", "many": "{0} month ago", "one": "{0} month ago", "two": "{0} month ago", "other": "{0} months ago" } }, "year": { "default": { "few": "{0} year ago", "many": "{0} year ago", "one": "{0} year ago", "two": "{0} year ago", "other": "{0} years ago" } } }, "until": { "second": { "default": { "few": "In {0} second", "many": "In {0} second", "one": "In {0} second", "two": "In {0} second", "other": "In {0} seconds" } }, "minute": { "default": { "few": "In {0} minute", "many": "In {0} minute", "one": "In {0} minute", "two": "In {0} minute", "other": "In {0} minutes" } }, "hour": { "default": { "few": "In {0} hour", "many": "In {0} hour", "one": "In {0} hour", "two": "In {0} hour", "other": "In {0} hours" } }, "day": { "default": { "few": "In {0} day", "many": "In {0} day", "one": "In {0} day", "two": "In {0} day", "other": "In {0} days" } }, "week": { "default": { "few": "In {0} week", "many": "In {0} week", "one": "In {0} week", "two": "In {0} week", "other": "In {0} weeks" } }, "month": { "default": { "few": "In {0} month", "many": "In {0} month", "one": "In {0} month", "two": "In {0} month", "other": "In {0} months" } }, "year": { "default": { "few": "In {0} year", "many": "In {0} year", "one": "In {0} year", "two": "In {0} year", "other": "In {0} years" } } }, "none": { "second": { "default": { "few": "{0} second", "many": "{0} second", "one": "{0} second", "two": "{0} second", "other": "{0} seconds" }, "short": { "few": "{0} sec", "many": "{0} sec", "one": "{0} sec", "two": "{0} sec", "other": "{0} secs" }, "abbreviated": { "few": "{0}s", "many": "{0}s", "one": "{0}s", "two": "{0}s", "other": "{0}s" } }, "minute": { "default": { "few": "{0} minute", "many": "{0} minute", "one": "{0} minute", "two": "{0} minute", "other": "{0} minutes" }, "short": { "few": "{0} min", "many": "{0} min", "one": "{0} min", "two": "{0} min", "other": "{0} mins" }, "abbreviated": { "few": "{0}m", "many": "{0}m", "one": "{0}m", "two": "{0}m", "other": "{0}m" } }, "hour": { "default": { "few": "{0} hour", "many": "{0} hour", "one": "{0} hour", "two": "{0} hour", "other": "{0} hours" }, "short": { "few": "{0} hr", "many": "{0} hr", "one": "{0} hr", "two": "{0} hr", "other": "{0} hrs" } }, "day": { "default": { "few": "{0} day", "many": "{0} day", "one": "{0} day", "two": "{0} day", "other": "{0} days" }, "short": { "few": "{0} day", "many": "{0} day", "one": "{0} day", "two": "{0} day", "other": "{0} days" }, "abbreviated": { "few": "{0}d", "many": "{0}d", "one": "{0}d", "two": "{0}d", "other": "{0}d" } }, "week": { "default": { "few": "{0} week", "many": "{0} week", "one": "{0} week", "two": "{0} week", "other": "{0} weeks" }, "short": { "few": "{0} wk", "many": "{0} wk", "one": "{0} wk", "two": "{0} wk", "other": "{0} wks" } }, "month": { "default": { "few": "{0} month", "many": "{0} month", "one": "{0} month", "two": "{0} month", "other": "{0} months" }, "short": { "few": "{0} mth", "many": "{0} mth", "one": "{0} mth", "two": "{0} mth", "other": "{0} mths" } }, "year": { "default": { "few": "{0} year", "many": "{0} year", "one": "{0} year", "two": "{0} year", "other": "{0} years" }, "short": { "few": "{0} yr", "many": "{0} yr", "one": "{0} yr", "two": "{0} yr", "other": "{0} yrs" } } } } }, "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": "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": "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": "dd", "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": "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": "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": "LL", "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" } ], "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": "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" } ], "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" } ] } }, "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": "MMM y G", "type": "plaintext" } ], "GyMMMEd": [ { "value": "E d MMM y G", "type": "plaintext" } ], "GyMMMd": [ { "value": "d MMM y G", "type": "plaintext" } ], "H": [ { "value": "HH", "type": "pattern" } ], "Hm": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "Hms": [ { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "M": [ { "value": "LL", "type": "plaintext" } ], "MEd": [ { "value": "E dd/MM", "type": "plaintext" } ], "MMM": [ { "value": "LLL", "type": "plaintext" } ], "MMMEd": [ { "value": "E d MMM", "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": "MMM y", "type": "plaintext" } ], "yMMMEd": [ { "value": "E d MMM 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" } ], "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": "dd", "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": "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": "HH", "type": "plaintext" } ], "Hm": [ { "value": "HH:mm", "type": "plaintext" } ], "Hms": [ { "value": "HH:mm:ss", "type": "plaintext" } ], "M": [ { "value": "LL", "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" } ], "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 a", "type": "plaintext" } ], "hm": [ { "value": "h:mm a", "type": "plaintext" } ], "hms": [ { "value": "h:mm:ss a", "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": "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": "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" } ], "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" } ] } } } }, "BreakIterator": { "tailoring_resource_data": { "en": { "en": { "segments": { "SentenceBreak"