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,960 lines (1,953 loc) • 630 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": "fil"
},
"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 ((((v == 0 \u0026\u0026 ((i == 1) || (i == 2) || (i == 3))) || (v == 0 \u0026\u0026 ((i % 10 != 4) \u0026\u0026 (i % 10 != 6) \u0026\u0026 (i % 10 != 9)))) || (v != 0 \u0026\u0026 ((f % 10 != 4) \u0026\u0026 (f % 10 != 6) \u0026\u0026 (f % 10 != 9)))) ? '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 (n == 1 ? 'one' : 'other'); })"
},
"names": {
"cardinal": ["one", "other"],
"ordinal": ["one", "other"]
}
},
"TimespanFormatter": {
"patterns": {
"ago": {
"second": {
"default": {
"one": "Nakalipas na {0} segundo",
"other": "Nakalipas na {0} (na) segundo"
}
},
"minute": {
"default": {
"one": "Nakalipas na {0} minuto",
"other": "Nakalipas na {0} (na) minuto"
}
},
"hour": {
"default": {
"one": "Nakalipas na {0} oras",
"other": "Nakalipas na {0} (na) oras"
}
},
"day": {
"default": {
"one": "Nakalipas na {0} araw",
"other": "Nakalipas na {0} (na) araw"
}
},
"week": {
"default": {
"one": "Nakalipas na {0} na linggo",
"other": "Nakalipas na {0} (na) linggo"
}
},
"month": {
"default": {
"one": "Nakalipas na {0} buwan",
"other": "Nakalipas na {0} (na) buwan"
}
},
"year": {
"default": {
"one": "Nakalipas na {0} taon",
"other": "Nakalipas na {0} (na) taon"
}
}
},
"until": {
"second": {
"default": {
"one": "Sa {0} segundo",
"other": "Sa {0} (na) segundo"
}
},
"minute": {
"default": {
"one": "Sa {0} minuto",
"other": "Sa {0} (na) minuto"
}
},
"hour": {
"default": {
"one": "Sa {0} oras",
"other": "Sa {0} (na) oras"
}
},
"day": {
"default": {
"one": "Sa {0} araw",
"other": "Sa {0} (na) araw"
}
},
"week": {
"default": {
"one": "Sa {0} linggo",
"other": "Sa {0} (na) linggo"
}
},
"month": {
"default": {
"one": "Sa {0} buwan",
"other": "Sa {0} (na) buwan"
}
},
"year": {
"default": {
"one": "Sa {0} taon",
"other": "Sa {0} (na) taon"
}
}
},
"none": {
"second": {
"default": {
"one": "{0} segundo",
"other": "{0} segundo"
},
"short": {
"one": "{0} seg",
"other": "{0} seg"
},
"abbreviated": {
"one": "{0}s",
"other": "{0}s"
}
},
"minute": {
"default": {
"one": "{0} minuto",
"other": "{0} minuto"
},
"short": {
"one": "{0} min",
"other": "{0} min"
},
"abbreviated": {
"one": "{0}m",
"other": "{0}m"
}
},
"hour": {
"default": {
"one": "{0} oras",
"other": "{0} oras"
},
"short": {
"one": "{0} or",
"other": "{0} or"
},
"abbreviated": {
"one": "{0}h",
"other": "{0}h"
}
},
"day": {
"default": {
"one": "{0} araw",
"other": "{0} araw"
},
"short": {
"one": "{0} arw",
"other": "{0} arw"
},
"abbreviated": {
"one": "{0}a",
"other": "{0}a"
}
},
"week": {
"default": {
"one": "{0} linggo",
"other": "{0} linggo"
},
"short": {
"one": "{0} ling",
"other": "{0} ling"
}
},
"month": {
"default": {
"one": "{0} buwan",
"other": "{0} buwan"
},
"short": {
"one": "{0} buw",
"other": "{0} buw"
}
},
"year": {
"default": {
"one": "{0} taon",
"other": "{0} taon"
},
"short": {
"one": "{0} ta",
"other": "{0} ta"
}
}
}
}
},
"DateTimeFormatter": {
"tokens": {
"date_time": {
"default": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"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": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "'nang'",
"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": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "'nang'",
"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": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"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": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "d",
"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": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"MMM": [
{
"value": "LLL",
"type": "pattern"
}
],
"MMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"MMMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"MMMMd": [
{
"value": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"MMMd": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"Md": [
{
"value": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "d",
"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": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "d",
"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": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMMMM": [
{
"value": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMMMd": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMd": [
{
"value": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "d",
"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": "E, M/d",
"type": "plaintext"
}
],
"MMM": [
{
"value": "LLL",
"type": "plaintext"
}
],
"MMMEd": [
{
"value": "E, MMM d",
"type": "plaintext"
}
],
"MMMMEd": [
{
"value": "E, MMMM d",
"type": "plaintext"
}
],
"MMMMd": [
{
"value": "MMMM d",
"type": "plaintext"
}
],
"MMMd": [
{
"value": "MMM d",
"type": "plaintext"
}
],
"Md": [
{
"value": "M/d",
"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": "M/y",
"type": "plaintext"
}
],
"yMEd": [
{
"value": "E, M/d/y",
"type": "plaintext"
}
],
"yMM": [
{
"value": "MM/y",
"type": "plaintext"
}
],
"yMMM": [
{
"value": "MMM y",
"type": "plaintext"
}
],
"yMMMEd": [
{
"value": "E, MMM d, y",
"type": "plaintext"
}
],
"yMMMM": [
{
"value": "MMMM y",
"type": "plaintext"
}
],
"yMMMd": [
{
"value": "MMM d, y",
"type": "plaintext"
}
],
"yMd": [
{
"value": "M/d/y",
"type": "plaintext"
}
],
"yQQQ": [
{
"value": "QQQ y",
"type": "plaintext"
}
],
"yQQQQ": [
{
"value": "QQQQ y",
"type": "plaintext"
}
]
}
},
"date": {
"default": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"full": [
{
"value": "EEEE",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"long": [
{
"value": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"medium": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"short": [
{
"value": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "d",
"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": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"MMM": [
{
"value": "LLL",
"type": "pattern"
}
],
"MMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"MMMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"MMMMd": [
{
"value": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"MMMd": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"Md": [
{
"value": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "d",
"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": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}, {
"value": "/",
"type": "plaintext"
}, {
"value": "d",
"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": [