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,988 lines (1,981 loc) 648 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": "ja" }, "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": "MM", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "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": "H", "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": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "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" } ], "medium": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "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": "MM", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "dd", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "pattern" } ], "EEEEd": [ { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "EEEE", "type": "pattern" } ], "EHm": [ { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " (", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "EHms": [ { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " (", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "Ed": [ { "value": "d", "type": "pattern" }, { "value": "日(", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "Ehm": [ { "value": "a", "type": "pattern" }, { "value": "K", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " (", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "Ehms": [ { "value": "a", "type": "pattern" }, { "value": "K", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " (", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "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" } ], "GyMMMEEEEd": [ { "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": "EEEE", "type": "pattern" } ], "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" }, { "value": ")", "type": "plaintext" } ], "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": "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": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "MEEEEd": [ { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "EEEE", "type": "pattern" } ], "MEd": [ { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "(", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "MMM": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "MMMEEEEd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "EEEE", "type": "pattern" } ], "MMMEd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日(", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "MMMd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "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": "K", "type": "pattern" }, { "value": "時", "type": "plaintext" } ], "hm": [ { "value": "a", "type": "pattern" }, { "value": "K", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "hms": [ { "value": "a", "type": "pattern" }, { "value": "K", "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" } ], "yMEEEEd": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "EEEE", "type": "pattern" } ], "yMEd": [ { "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" }, { "value": ")", "type": "plaintext" } ], "yMM": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "MM", "type": "pattern" } ], "yMMM": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext" }, { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "yMMMEEEEd": [ { "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" } ], "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" }, { "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": "QQQ", "type": "pattern" } ], "yQQQQ": [ { "value": "y", "type": "pattern" }, { "value": "QQQQ", "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" } ], "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" } ], "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" } ], "EEEEd": [ { "value": "d日EEEE", "type": "plaintext" } ], "EHm": [ { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " (E)", "type": "plaintext" } ], "EHms": [ { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " (E)", "type": "plaintext" } ], "Ed": [ { "value": "d日(E)", "type": "plaintext" } ], "Ehm": [ { "value": "a", "type": "pattern" }, { "value": "K", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": " (E)", "type": "plaintext" } ], "Ehms": [ { "value": "a", "type": "pattern" }, { "value": "K", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" }, { "value": " (E)", "type": "plaintext" } ], "Gy": [ { "value": "Gy年", "type": "plaintext" } ], "GyMMM": [ { "value": "Gy年M月", "type": "plaintext" } ], "GyMMMEEEEd": [ { "value": "Gy年M月d日EEEE", "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": "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": "M月", "type": "plaintext" } ], "MEEEEd": [ { "value": "M/dEEEE", "type": "plaintext" } ], "MEd": [ { "value": "M/d(E)", "type": "plaintext" } ], "MMM": [ { "value": "M月", "type": "plaintext" } ], "MMMEEEEd": [ { "value": "M月d日EEEE", "type": "plaintext" } ], "MMMEd": [ { "value": "M月d日(E)", "type": "plaintext" } ], "MMMd": [ { "value": "M月d日", "type": "plaintext" } ], "Md": [ { "value": "M/d", "type": "plaintext" } ], "d": [ { "value": "d日", "type": "plaintext" } ], "h": [ { "value": "a", "type": "pattern" }, { "value": "K", "type": "pattern" }, { "value": "時", "type": "plaintext" } ], "hm": [ { "value": "a", "type": "pattern" }, { "value": "K", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" } ], "hms": [ { "value": "a", "type": "pattern" }, { "value": "K", "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" } ], "yMEEEEd": [ { "value": "y/M/dEEEE", "type": "plaintext" } ], "yMEd": [ { "value": "y/M/d(E)", "type": "plaintext" } ], "yMM": [ { "value": "y/MM", "type": "plaintext" } ], "yMMM": [ { "value": "y年M月", "type": "plaintext" } ], "yMMMEEEEd": [ { "value": "y年M月d日EEEE", "type": "plaintext" } ], "yMMMEd": [ { "value": "y年M月d日(E)", "type": "plaintext" } ], "yMMMd": [ { "value": "y年M月d日", "type": "plaintext" } ], "yMd": [ { "value": "y/M/d", "type": "plaintext" } ], "yQQQ": [ { "value": "y/QQQ", "type": "plaintext" } ], "yQQQQ": [ { "value": "yQQQQ", "type": "plaintext" } ] } }, "date": { "default": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "dd", "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" } ], "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": "MM", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "dd", "type": "pattern" } ], "short": [ { "value": "y", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "dd", "type": "pattern" } ], "additional": { "E": [ { "value": "ccc", "type": "pattern" } ], "EEEEd": [ { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "EEEE", "type": "pattern" } ], "EHm": [ { "value": "H:mm (", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "EHms": [ { "value": "H:mm:ss (", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "Ed": [ { "value": "d", "type": "pattern" }, { "value": "日(", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "Ehm": [ { "value": "aK:mm (", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "Ehms": [ { "value": "aK:mm:ss (", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "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" } ], "GyMMMEEEEd": [ { "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": "EEEE", "type": "pattern" } ], "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" }, { "value": ")", "type": "plaintext" } ], "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": "H:mm", "type": "plaintext" } ], "Hms": [ { "value": "H:mm:ss", "type": "plaintext" } ], "M": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "MEEEEd": [ { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "EEEE", "type": "pattern" } ], "MEd": [ { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "(", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "MMM": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" } ], "MMMEEEEd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" }, { "value": "EEEE", "type": "pattern" } ], "MMMEd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日(", "type": "plaintext" }, { "value": "E", "type": "pattern" }, { "value": ")", "type": "plaintext" } ], "MMMd": [ { "value": "M", "type": "pattern" }, { "value": "月", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "Md": [ { "value": "M", "type": "pattern" }, { "value": "/", "type": "plaintext" }, { "value": "d", "type": "pattern" } ], "d": [ { "value": "d", "type": "pattern" }, { "value": "日", "type": "plaintext" } ], "h": [ { "value": "aK時", "type": "plaintext" } ], "hm": [ { "value": "aK:mm", "type": "plaintext" } ], "hms": [ { "value": "aK:mm:ss", "type": "plaintext" } ], "ms": [ { "value": "mm:ss", "type": "plaintext" } ], "y": [ { "value": "y", "type": "pattern" }, { "value": "年", "type": "plaintext"