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,983 lines (1,976 loc) • 639 kB
JavaScript
/*
// 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": "vi"
},
"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 (n == 1 ? 'one' : 'other'); })"
},
"names": {
"cardinal": ["other"],
"ordinal": ["one", "other"]
}
},
"TimespanFormatter": {
"patterns": {
"ago": {
"second": {
"default": {
"other": "{0} giây trước"
}
},
"minute": {
"default": {
"other": "{0} phút trước"
}
},
"hour": {
"default": {
"other": "{0} giờ trước"
}
},
"day": {
"default": {
"other": "{0} ngày trước"
}
},
"week": {
"default": {
"other": "{0} tuần trước"
}
},
"month": {
"default": {
"other": "{0} tháng trước"
}
},
"year": {
"default": {
"other": "{0} năm trước"
}
}
},
"until": {
"second": {
"default": {
"other": "Trong {0} giây"
}
},
"minute": {
"default": {
"other": "Trong {0} phút"
}
},
"hour": {
"default": {
"other": "Trong {0} giờ"
}
},
"day": {
"default": {
"other": "Trong {0} ngày"
}
},
"week": {
"default": {
"other": "Trong {0} tuần"
}
},
"month": {
"default": {
"other": "Trong {0} tháng"
}
},
"year": {
"default": {
"other": "Trong {0} năm"
}
}
},
"none": {
"second": {
"default": {
"other": "{0} giây"
},
"short": {
"other": "{0} s"
},
"abbreviated": {
"other": "{0} giây"
}
},
"minute": {
"default": {
"other": "{0} phút"
},
"short": {
"other": "{0} ph"
},
"abbreviated": {
"other": "{0} phút"
}
},
"hour": {
"default": {
"other": "{0} giờ"
},
"short": {
"other": "{0} g"
},
"abbreviated": {
"other": "{0} giờ"
}
},
"day": {
"default": {
"other": "{0} ngày"
},
"short": {
"other": "{0} ngày"
},
"abbreviated": {
"other": "{0} ngày"
}
},
"week": {
"default": {
"other": "{0} tuần"
},
"short": {
"other": "{0} tuần"
}
},
"month": {
"default": {
"other": "{0} tháng"
},
"short": {
"other": "{0} tháng"
}
},
"year": {
"default": {
"other": "{0} năm"
},
"short": {
"other": "{0} năm"
}
}
}
}
},
"DateTimeFormatter": {
"tokens": {
"date_time": {
"default": [
{
"value": "HH",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "ss",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "y",
"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"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "EEEE",
"type": "pattern"
}, {
"value": ", 'ngà",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": "' dd MMMM '",
"type": "plaintext"
}, {
"value": "năm' ",
"type": "plaintext"
}, {
"value": "y",
"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"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "'Ngà",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": "' dd '",
"type": "plaintext"
}, {
"value": "tháng",
"type": "plaintext"
}, {
"value": "' MM '",
"type": "plaintext"
}, {
"value": "năm' ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"medium": [
{
"value": "HH",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "ss",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"short": [
{
"value": "HH",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"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": " ",
"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": "dd",
"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": "dd",
"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": "dd",
"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": "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": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}
],
"MMM": [
{
"value": "LLL",
"type": "pattern"
}
],
"MMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "dd",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"MMMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}
],
"MMMMd": [
{
"value": "d",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}
],
"MMMd": [
{
"value": "d",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"MMdd": [
{
"value": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}
],
"Md": [
{
"value": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "M",
"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": "M",
"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": "M",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMM": [
{
"value": "'t",
"type": "plaintext"
}, {
"value": "h",
"type": "pattern"
}, {
"value": "áng' ",
"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": "dd",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMMMM": [
{
"value": "MMMM",
"type": "pattern"
}, {
"value": " 'nă",
"type": "plaintext"
}, {
"value": "m",
"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": "d",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "M",
"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, dd",
"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, dd MMM y G",
"type": "plaintext"
}
],
"GyMMMd": [
{
"value": "dd MMM, y G",
"type": "plaintext"
}
],
"H": [
{
"value": "HH",
"type": "pattern"
}
],
"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, dd-M",
"type": "plaintext"
}
],
"MMM": [
{
"value": "LLL",
"type": "plaintext"
}
],
"MMMEd": [
{
"value": "E, dd MMM",
"type": "plaintext"
}
],
"MMMMEd": [
{
"value": "E, d MMMM",
"type": "plaintext"
}
],
"MMMMd": [
{
"value": "d MMMM",
"type": "plaintext"
}
],
"MMMd": [
{
"value": "d MMM",
"type": "plaintext"
}
],
"MMdd": [
{
"value": "dd-MM",
"type": "plaintext"
}
],
"Md": [
{
"value": "dd-M",
"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": "M/y",
"type": "plaintext"
}
],
"yMEd": [
{
"value": "E, dd-M-y",
"type": "plaintext"
}
],
"yMM": [
{
"value": "'t",
"type": "plaintext"
}, {
"value": "h",
"type": "pattern"
}, {
"value": "áng' MM, y",
"type": "plaintext"
}
],
"yMMM": [
{
"value": "MMM y",
"type": "plaintext"
}
],
"yMMMEd": [
{
"value": "E, dd MMM y",
"type": "plaintext"
}
],
"yMMMM": [
{
"value": "MMMM 'nă",
"type": "plaintext"
}, {
"value": "m",
"type": "pattern"
}, {
"value": "' y",
"type": "plaintext"
}
],
"yMMMd": [
{
"value": "dd MMM, y",
"type": "plaintext"
}
],
"yMd": [
{
"value": "d/M/y",
"type": "plaintext"
}
],
"yQQQ": [
{
"value": "QQQ y",
"type": "plaintext"
}
],
"yQQQQ": [
{
"value": "QQQQ y",
"type": "plaintext"
}
]
}
},
"date": {
"default": [
{
"value": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"full": [
{
"value": "EEEE",
"type": "pattern"
}, {
"value": ", 'ngà",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": "' dd MMMM '",
"type": "plaintext"
}, {
"value": "năm' ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"long": [
{
"value": "'Ngà",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": "' dd '",
"type": "plaintext"
}, {
"value": "tháng",
"type": "plaintext"
}, {
"value": "' MM '",
"type": "plaintext"
}, {
"value": "năm' ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"medium": [
{
"value": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "MM",
"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": "dd",
"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": "dd",
"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": "dd",
"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": "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": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}
],
"MMM": [
{
"value": "LLL",
"type": "pattern"
}
],
"MMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "dd",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"MMMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}
],
"MMMMd": [
{
"value": "d",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}
],
"MMMd": [
{
"value": "d",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"MMdd": [
{
"value": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}
],
"Md": [
{
"value": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "M",
"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": "M",
"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": "M",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMM": [
{
"value": "'tháng' ",
"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": "dd",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMMMM": [
{
"value": "MMMM",
"type": "pattern"
}, {
"value": " 'năm' ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMMMd": [
{
"value": "dd",
"type": "pattern"
}, {