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

2,003 lines (1,996 loc) 658 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": "zh" }, "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 '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": ["other"], "ordinal": ["other"] } }, "TimespanFormatter": { "patterns": { "ago": { "second": { "default": { "other": "{0}秒钟前" } }, "minute": { "default": { "other": "{0}分钟前" } }, "hour": { "default": { "other": "{0}小时前" } }, "day": { "default": { "other": "{0}天前" } }, "week": { "default": { "other": "{0}周前" } }, "month": { "default": { "other": "{0}个月前" } }, "year": { "default": { "other": "{0}年前" } } }, "until": { "second": { "default": { "other": "{0}秒钟后" } }, "minute": { "default": { "other": "{0}分钟后" } }, "hour": { "default": { "other": "{0}小时后" } }, "day": { "default": { "other": "{0}天后" } }, "week": { "default": { "other": "{0}周后" } }, "month": { "default": { "other": "{0}个月后" } }, "year": { "default": { "other": "{0}年后" } } }, "none": { "second": { "default": { "other": "{0}秒钟" }, "short": { "other": "{0}秒" }, "abbreviated": { "other": "{0}秒" } }, "minute": { "default": { "other": "{0}分钟" }, "short": { "other": "{0}分" }, "abbreviated": { "other": "{0}分" } }, "hour": { "default": { "other": "{0}小时" }, "short": { "other": "{0}小时" }, "abbreviated": { "other": "{0}时" } }, "day": { "default": { "other": "{0}天" }, "short": { "other": "{0}天" }, "abbreviated": { "other": "{0}天" } }, "week": { "default": { "other": "{0}周" }, "short": { "other": "{0}周" } }, "month": { "default": { "other": "{0}个月" }, "short": { "other": "{0}个月" } }, "year": { "default": { "other": "{0}年" }, "short": { "other": "{0}年" } } } } }, "DateTimeFormatter": { "tokens": { "date_time": { "default": [ { "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": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "full": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "EEEE", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "zzzz", "type": "pattern" }, { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "long": [ { "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": "z", "type": "pattern" }, { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "medium": [ { "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": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "short": [ { "value": "yy", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "pattern" } ], "EHm": [ { "value": "E", "type": "pattern" }, { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "EHms": [ { "value": "E", "type": "pattern" }, { "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": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "Ehms": [ { "value": "E", "type": "pattern" }, { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "Gy": [ { "value": "G", "type": "pattern" }, { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" } ], "GyMMM": [ { "value": "G", "type": "pattern" }, { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "GyMMMEd": [ { "value": "G", "type": "pattern" }, { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "GyMMMd": [ { "value": "G", "type": "pattern" }, { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "H": [ { "value": "H", "type": "pattern" }, { "value": "时", "type": "plaintext" } ], "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": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "MEd": [ { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "E", "type": "pattern" } ], "MMM": [ { "value": "LLL", "type": "pattern" } ], "MMMEd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "MMMMdd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "MMMd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "MMdd": [ { "value": "MM", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "dd", "type": "pattern" } ], "Md": [ { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "d": [ { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "h": [ { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": "时", "type": "plaintext" } ], "hm": [ { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "hms": [ { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "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" }, { "value": "年", "type": "plaintext" } ], "yM": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "yMEd": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "E", "type": "pattern" } ], "yMM": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "yMMM": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "yMMMEd": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "yMMMM": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "yMMMd": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "yMd": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "yQQQ": [ { "value": "y", "type": "pattern" }, { "value": "年第", "type": "plaintext" }, { "value": "Q", "type": "pattern" }, { "value": "季度", "type": "plaintext" } ], "yQQQQ": [ { "value": "y", "type": "pattern" }, { "value": "年第", "type": "plaintext" }, { "value": "Q", "type": "pattern" }, { "value": "季度", "type": "plaintext" } ] } }, "time": { "default": [ { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "full": [ { "value": "zzzz", "type": "pattern" }, { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "long": [ { "value": "z", "type": "pattern" }, { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "medium": [ { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "short": [ { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "plaintext" } ], "EHm": [ { "value": "E", "type": "plaintext" }, { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "EHms": [ { "value": "E", "type": "plaintext" }, { "value": "HH", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "Ed": [ { "value": "d日E", "type": "plaintext" } ], "Ehm": [ { "value": "E", "type": "plaintext" }, { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "Ehms": [ { "value": "E", "type": "plaintext" }, { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "Gy": [ { "value": "Gy年", "type": "plaintext" } ], "GyMMM": [ { "value": "Gy年M月", "type": "plaintext" } ], "GyMMMEd": [ { "value": "Gy年M月d日E", "type": "plaintext" } ], "GyMMMd": [ { "value": "Gy年M月d日", "type": "plaintext" } ], "H": [ { "value": "H", "type": "pattern" }, { "value": "时", "type": "plaintext" } ], "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": "M月", "type": "plaintext" } ], "MEd": [ { "value": "M/dE", "type": "plaintext" } ], "MMM": [ { "value": "LLL", "type": "plaintext" } ], "MMMEd": [ { "value": "M月d日E", "type": "plaintext" } ], "MMMMdd": [ { "value": "M月dd日", "type": "plaintext" } ], "MMMd": [ { "value": "M月d日", "type": "plaintext" } ], "MMdd": [ { "value": "MM/dd", "type": "plaintext" } ], "Md": [ { "value": "M/d", "type": "plaintext" } ], "d": [ { "value": "d日", "type": "plaintext" } ], "h": [ { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": "时", "type": "plaintext" } ], "hm": [ { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "hms": [ { "value": "a", "type": "pattern" }, { "value": "h", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "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": "y/M/dE", "type": "plaintext" } ], "yMM": [ { "value": "y年M月", "type": "plaintext" } ], "yMMM": [ { "value": "y年M月", "type": "plaintext" } ], "yMMMEd": [ { "value": "y年M月d日E", "type": "plaintext" } ], "yMMMM": [ { "value": "y年M月", "type": "plaintext" } ], "yMMMd": [ { "value": "y年M月d日", "type": "plaintext" } ], "yMd": [ { "value": "y/M/d", "type": "plaintext" } ], "yQQQ": [ { "value": "y年第Q季度", "type": "plaintext" } ], "yQQQQ": [ { "value": "y年第Q季度", "type": "plaintext" } ] } }, "date": { "default": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "full": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "EEEE", "type": "pattern" } ], "long": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "medium": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "short": [ { "value": "yy", "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": "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": "ah:mm", "type": "plaintext" } ], "Ehms": [ { "value": "E", "type": "pattern" }, { "value": "ah:mm:ss", "type": "plaintext" } ], "Gy": [ { "value": "G", "type": "pattern" }, { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" } ], "GyMMM": [ { "value": "G", "type": "pattern" }, { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "GyMMMEd": [ { "value": "G", "type": "pattern" }, { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "GyMMMd": [ { "value": "G", "type": "pattern" }, { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "H": [ { "value": "H时", "type": "plaintext" } ], "Hm": [ { "value": "HH:mm", "type": "plaintext" } ], "Hms": [ { "value": "HH:mm:ss", "type": "plaintext" } ], "M": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "MEd": [ { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "E", "type": "pattern" } ], "MMM": [ { "value": "LLL", "type": "pattern" } ], "MMMEd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "MMMMdd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "MMMd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "MMdd": [ { "value": "MM", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "dd", "type": "pattern" } ], "Md": [ { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "d": [ { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "h": [ { "value": "ah时", "type": "plaintext" } ], "hm": [ { "value": "ah:mm", "type": "plaintext" } ], "hms": [ { "value": "ah:mm:ss", "type": "plaintext" } ], "ms": [ { "value": "mm:ss", "type": "plaintext" } ], "y": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" } ], "yM": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "yMEd": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "E", "type": "pattern" } ], "yMM": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "yMMM": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "yMMMEd": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "E", "type": "pattern" } ], "yMMMM": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "yMMMd": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "yMd": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "yQQQ": [ { "value": "y", "type": "pattern" }, { "value": "年第", "type": "plaintext" }, { "value": "Q", "type": "pattern" }, { "value": "季度", "type": "plaintext" } ], "yQQQQ": [ { "value": "y", "type": "pattern" }, { "value": "年第", "type": "plaintext" }, { "value": "Q", "type": "pattern" }, { "value": "季度", "type": "plaintext" } ] } } } }, "BreakIterator": { "tailoring_resource_data": { "en": { "en": { "segments": { "SentenceBreak": { "rules": [ { "id": 9,