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,970 lines (1,964 loc) • 653 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": "ta"
},
"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 == 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} வினாடிக்கு முன்",
"other": "{0} வினாடிக்கு முன்"
}
},
"minute": {
"default": {
"one": "{0} நிமிடத்திற்கு முன்",
"other": "{0} நிமிடங்களுக்கு முன்"
}
},
"hour": {
"default": {
"one": "{0} மணிநேரம் முன்",
"other": "{0} மணிநேரம் முன்"
}
},
"day": {
"default": {
"one": "{0} நாளுக்கு முன்",
"other": "{0} நாட்களுக்கு முன்"
}
},
"week": {
"default": {
"one": "{0} வாரத்திற்கு முன்பு",
"other": "{0} வாரத்திற்கு முன்"
}
},
"month": {
"default": {
"one": "{0} மாதத்துக்கு முன்",
"other": "{0} மாதங்களுக்கு முன்"
}
},
"year": {
"default": {
"one": "{0} வருடத்திற்கு முன்",
"other": "{0} வருடங்களுக்கு முன்"
}
}
},
"until": {
"second": {
"default": {
"one": "{0} வினாடியில்",
"other": "{0} வினாடிகள்"
}
},
"minute": {
"default": {
"one": "{0} நிமிடத்தில்",
"other": "{0} நிமிடங்களில்"
}
},
"hour": {
"default": {
"one": "{0} மணிநேரத்தில்",
"other": "{0} மணிநேரத்தில்"
}
},
"day": {
"default": {
"one": "{0} நாளில்",
"other": "{0} நாட்களில்"
}
},
"week": {
"default": {
"one": "{0} வாரத்தில்",
"other": "{0} வாரங்களில்"
}
},
"month": {
"default": {
"one": "{0} மாதத்தில்",
"other": "{0} மாதங்களில்"
}
},
"year": {
"default": {
"one": "{0} வருடத்தில்",
"other": "{0} வருடங்களில்"
}
}
},
"none": {
"second": {
"default": {
"one": "{0} வினாடி",
"other": "{0} வினாடிகள்"
},
"short": {
"one": "{0} வினாடி",
"other": "{0} வினாடிகள்"
}
},
"minute": {
"default": {
"one": "{0} நிமிடம்",
"other": "{0} நிமிடங்கள்"
},
"short": {
"one": "{0} நிமிடம்",
"other": "{0} நிமிடங்கள்"
},
"abbreviated": {
"one": "{0}m",
"other": "{0}m"
}
},
"hour": {
"default": {
"one": "{0} மணிநேரம்",
"other": "{0} மணிநேரம்"
},
"short": {
"one": "{0} மணிநேரம்",
"other": "{0} மணிநேரம்"
},
"abbreviated": {
"one": "{0}h",
"other": "{0}h"
}
},
"day": {
"default": {
"one": "{0} நாள்",
"other": "{0} நாட்கள்"
},
"short": {
"one": "{0} நாள்",
"other": "{0} நாட்கள்"
}
},
"week": {
"default": {
"one": "{0} வாரம்",
"other": "{0} வாரங்கள்"
},
"short": {
"one": "{0} வாரம்",
"other": "{0} வாரங்கள்"
}
},
"month": {
"default": {
"one": "{0} மாதம்",
"other": "{0} மாதங்கள்"
},
"short": {
"one": "{0} மாதம்",
"other": "{0} மாதங்கள்"
}
},
"year": {
"default": {
"one": "{0} வருடம்",
"other": "{0} வருடங்கள்"
},
"short": {
"one": "{0} வருடம்",
"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": "h",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "ss",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "a",
"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": "’",
"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": "a",
"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": "’",
"type": "plaintext"
}, {
"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": "a",
"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": " ",
"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"
}
],
"short": [
{
"value": "d",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "yy",
"type": "pattern"
}, {
"value": ",",
"type": "plaintext"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "h",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "a",
"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": "d",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "E",
"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": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"GyMMM": [
{
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"GyMMMEd": [
{
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "E",
"type": "pattern"
}
],
"GyMMMd": [
{
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"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": "L",
"type": "pattern"
}
],
"MEd": [
{
"value": "MM",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "dd",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "E",
"type": "pattern"
}
],
"MMM": [
{
"value": "LLL",
"type": "pattern"
}
],
"MMMEd": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "E",
"type": "pattern"
}
],
"MMMMd": [
{
"value": "d",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}
],
"MMMd": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"MMdd": [
{
"value": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}
],
"Md": [
{
"value": "d",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}
],
"d": [
{
"value": "d",
"type": "pattern"
}
],
"h": [
{
"value": "a",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "h",
"type": "pattern"
}
],
"hm": [
{
"value": "a",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "h",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}
],
"hms": [
{
"value": "a",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"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"
}
],
"yM": [
{
"value": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMM": [
{
"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"
}
],
"yMMMM": [
{
"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": "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": "h",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "ss",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "a",
"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": "a",
"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": "a",
"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"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "a",
"type": "pattern"
}
],
"short": [
{
"value": "h",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "a",
"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": "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": "G y",
"type": "plaintext"
}
],
"GyMMM": [
{
"value": "G y MMM",
"type": "plaintext"
}
],
"GyMMMEd": [
{
"value": "G y MMM d, E",
"type": "plaintext"
}
],
"GyMMMd": [
{
"value": "G y MMM d",
"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": "L",
"type": "plaintext"
}
],
"MEd": [
{
"value": "MM-dd, E",
"type": "plaintext"
}
],
"MMM": [
{
"value": "LLL",
"type": "plaintext"
}
],
"MMMEd": [
{
"value": "MMM d, E",
"type": "plaintext"
}
],
"MMMMd": [
{
"value": "d MMMM",
"type": "plaintext"
}
],
"MMMd": [
{
"value": "MMM d",
"type": "plaintext"
}
],
"MMdd": [
{
"value": "dd-MM",
"type": "plaintext"
}
],
"Md": [
{
"value": "d/M",
"type": "plaintext"
}
],
"d": [
{
"value": "d",
"type": "plaintext"
}
],
"h": [
{
"value": "a",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "h",
"type": "pattern"
}
],
"hm": [
{
"value": "a",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "h",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}
],
"hms": [
{
"value": "a",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"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": "M/y",
"type": "plaintext"
}
],
"yMEd": [
{
"value": "E, d/M/y",
"type": "plaintext"
}
],
"yMM": [
{
"value": "MM-y",
"type": "plaintext"
}
],
"yMMM": [
{
"value": "MMM y",
"type": "plaintext"
}
],
"yMMMEd": [
{
"value": "E, d MMM, y",
"type": "plaintext"
}
],
"yMMMM": [
{
"value": "MMMM y",
"type": "plaintext"
}
],
"yMMMd": [
{
"value": "d 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": "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": "d",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "yy",
"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": " h:mm a",
"type": "plaintext"
}
],
"Ehms": [
{
"value": "E",
"type": "pattern"
}, {
"value": " h:mm:ss a",
"type": "plaintext"
}
],
"Gy": [
{
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"GyMMM": [
{
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"GyMMMEd": [
{
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "E",
"type": "pattern"
}
],
"GyMMMd": [
{
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"H": [
{
"value": "HH",
"type": "plaintext"
}
],
"Hm": [
{
"value": "HH:mm",
"type": "plaintext"
}
],
"Hms": [
{
"value": "HH:mm:ss",
"type": "plaintext"
}
],
"M": [
{
"value": "L",
"type": "pattern"
}
],
"MEd": [
{
"value": "MM",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "dd",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "E",
"type": "pattern"
}
],
"MMM": [
{
"value": "LLL",
"type": "pattern"
}
],
"MMMEd": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "E",
"type": "pattern"
}
],
"MMMMd": [
{
"value": "d",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}
],
"MMMd": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"MMdd": [
{
"value": "dd",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}
],
"Md": [
{
"value": "d",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}
],
"d": [
{
"value": "d",
"type": "pattern"
}
],
"h": [
{
"value": "a h",
"type": "plaintext"
}
],
"hm": [
{
"value": "a h:mm",
"type": "plaintext"
}
],
"hms": [
{
"value": "a h: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": "d",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMM": [
{
"value": "MM",
"type": "pattern"
}, {
"value": "-",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMMM": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}