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,968 lines (1,961 loc) • 644 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": "hu"
},
"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 (((n == 1) || (n == 5)) ? 'one' : 'other'); })"
},
"names": {
"cardinal": ["one", "other"],
"ordinal": ["one", "other"]
}
},
"TimespanFormatter": {
"patterns": {
"ago": {
"second": {
"default": {
"one": "{0} second ago",
"other": "{0} másodperccel ezelőtt"
}
},
"minute": {
"default": {
"one": "{0} minute ago",
"other": "{0} perccel ezelőtt"
}
},
"hour": {
"default": {
"one": "{0} hour ago",
"other": "{0} órával ezelőtt"
}
},
"day": {
"default": {
"one": "{0} day ago",
"other": "{0} napja"
}
},
"week": {
"default": {
"one": "{0} week ago",
"other": "{0} héttel ezelőtt"
}
},
"month": {
"default": {
"one": "{0} month ago",
"other": "{0} hónappal ezelőtt"
}
},
"year": {
"default": {
"one": "{0} year ago",
"other": "{0} évvel ezelőtt"
}
}
},
"until": {
"second": {
"default": {
"one": "In {0} second",
"other": "{0} másodperc múlva"
}
},
"minute": {
"default": {
"one": "In {0} minute",
"other": "{0} perc múlva"
}
},
"hour": {
"default": {
"one": "In {0} hour",
"other": "{0} óra múlva"
}
},
"day": {
"default": {
"one": "In {0} day",
"other": "{0} nap múlva"
}
},
"week": {
"default": {
"one": "In {0} week",
"other": "{0} hét múlva"
}
},
"month": {
"default": {
"one": "In {0} month",
"other": "{0} hónap múlva"
}
},
"year": {
"default": {
"one": "In {0} year",
"other": "{0} év múlva"
}
}
},
"none": {
"second": {
"default": {
"one": "{0} second",
"other": "{0} másodperc"
},
"short": {
"one": "{0} sec",
"other": "{0} mp"
},
"abbreviated": {
"one": "{0}mp",
"other": "{0}mp"
}
},
"minute": {
"default": {
"one": "{0} minute",
"other": "{0} perc"
},
"short": {
"one": "{0} min",
"other": "{0} p"
},
"abbreviated": {
"one": "{0}p",
"other": "{0}p"
}
},
"hour": {
"default": {
"one": "{0} hour",
"other": "{0} óra"
},
"short": {
"one": "{0} hr",
"other": "{0} ó"
},
"abbreviated": {
"one": "{0}ó",
"other": "{0}ó"
}
},
"day": {
"default": {
"one": "{0} day",
"other": "{0} nap"
},
"short": {
"one": "{0} day",
"other": "{0} nap"
},
"abbreviated": {
"one": "{0}n",
"other": "{0}n"
}
},
"week": {
"default": {
"one": "{0} week",
"other": "{0} hét"
},
"short": {
"one": "{0} wk",
"other": "{0} hét"
}
},
"month": {
"default": {
"one": "{0} month",
"other": "{0} hónap"
},
"short": {
"one": "{0} mth",
"other": "{0} hónap"
}
},
"year": {
"default": {
"one": "{0} year",
"other": "{0} év"
},
"short": {
"one": "{0} yr",
"other": "{0} év"
}
}
}
}
},
"DateTimeFormatter": {
"tokens": {
"date_time": {
"default": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"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"
}
],
"full": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMMM",
"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": "MMMM",
"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": "MMM",
"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"
}
],
"short": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "dd",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "H",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"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"
}, {
"value": ".",
"type": "plaintext"
}
],
"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"
}, {
"value": ".",
"type": "plaintext"
}
],
"H": [
{
"value": "H",
"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": "M",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "d",
"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": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"MMMd": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"Md": [
{
"value": "M",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"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"
}
],
"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"
}, {
"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": "MM",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "dd",
"type": "pattern"
}, {
"value": "., ",
"type": "plaintext"
}, {
"value": "E",
"type": "pattern"
}
],
"yMMM": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"yMMMEd": [
{
"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"
}
],
"yMMMM": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}
],
"yMMMd": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"yMd": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "dd",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"yQQQ": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "QQQ",
"type": "pattern"
}
],
"yQQQQ": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"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"
}
],
"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": "H",
"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": "M. d., E",
"type": "plaintext"
}
],
"MMM": [
{
"value": "LLL",
"type": "plaintext"
}
],
"MMMEd": [
{
"value": "MMM d., E",
"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": "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"
}
],
"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": "y. M.",
"type": "plaintext"
}
],
"yMEd": [
{
"value": "y. MM. dd., E",
"type": "plaintext"
}
],
"yMMM": [
{
"value": "y. MMM",
"type": "plaintext"
}
],
"yMMMEd": [
{
"value": "y. MMM d., E",
"type": "plaintext"
}
],
"yMMMM": [
{
"value": "y. MMMM",
"type": "plaintext"
}
],
"yMMMd": [
{
"value": "y. MMM d.",
"type": "plaintext"
}
],
"yMd": [
{
"value": "y. MM. dd.",
"type": "plaintext"
}
],
"yQQQ": [
{
"value": "y. QQQ",
"type": "plaintext"
}
],
"yQQQQ": [
{
"value": "y. QQQQ",
"type": "plaintext"
}
]
}
},
"date": {
"default": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"full": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMMM",
"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": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"medium": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"short": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "dd",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"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"
}, {
"value": ".",
"type": "plaintext"
}
],
"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"
}, {
"value": ".",
"type": "plaintext"
}
],
"H": [
{
"value": "H",
"type": "plaintext"
}
],
"Hm": [
{
"value": "H:mm",
"type": "plaintext"
}
],
"Hms": [
{
"value": "H:mm:ss",
"type": "plaintext"
}
],
"M": [
{
"value": "L",
"type": "pattern"
}
],
"MEd": [
{
"value": "M",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "d",
"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": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"MMMd": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"Md": [
{
"value": "M",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"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"
}
],
"mmss": [
{
"value": "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": "MM",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "dd",
"type": "pattern"
}, {
"value": "., ",
"type": "plaintext"
}, {
"value": "E",
"type": "pattern"
}
],
"yMMM": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"yMMMEd": [
{
"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"
}
],
"yMMMM": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}
],
"yMMMd": [
{
"value": "y",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"yMd": [
{
"value": "y",