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,912 lines (1,906 loc) • 651 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": "lv"
},
"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 % 10 == 1 \u0026\u0026 n % 100 != 11) || ((v == 2 \u0026\u0026 f % 10 == 1) \u0026\u0026 f % 100 != 11)) || (v != 2 \u0026\u0026 f % 10 == 1)) ? 'one' : (((n % 10 == 0 || ((n % 100 \u003e= 11) \u0026\u0026 (n % 100 \u003c= 19))) || (v == 2 \u0026\u0026 ((f % 100 \u003e= 11) \u0026\u0026 (f % 100 \u003c= 19)))) ? 'zero' : '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", "zero"],
"ordinal": ["other"]
}
},
"TimespanFormatter": {
"patterns": {
"ago": {
"second": {
"default": {
"one": "Pirms {0} sekundes",
"zero": "Pirms {0} sekundēm",
"other": "Pirms {0} sekundēm"
}
},
"minute": {
"default": {
"one": "Pirms {0} minūtes",
"zero": "Pirms {0} minūtēm",
"other": "Pirms {0} minūtēm"
}
},
"hour": {
"default": {
"one": "Pirms {0} stundas",
"zero": "Pirms {0} stundām",
"other": "Pirms {0} stundām"
}
},
"day": {
"default": {
"one": "Pirms {0} dienas",
"zero": "Pirms {0} dienām",
"other": "Pirms {0} dienām"
}
},
"week": {
"default": {
"one": "Pirms {0} nedēļas",
"zero": "Pirms {0} nedēļām",
"other": "Pirms {0} nedēļām"
}
},
"month": {
"default": {
"one": "Pirms {0} mēneša",
"zero": "Pirms {0} mēnešiem",
"other": "Pirms {0} mēnešiem"
}
},
"year": {
"default": {
"one": "Pirms {0} gada",
"zero": "Pirms {0} gadiem",
"other": "Pirms {0} gadiem"
}
}
},
"until": {
"second": {
"default": {
"one": "Pēc {0} sekundes",
"zero": "Pēc {0} sekundēm",
"other": "Pēc {0} sekundēm"
}
},
"minute": {
"default": {
"one": "Pēc {0} minūtes",
"zero": "Pēc {0} minūtēm",
"other": "Pēc {0} minūtēm"
}
},
"hour": {
"default": {
"one": "Pēc {0} stundas",
"zero": "Pēc {0} stundām",
"other": "Pēc {0} stundām"
}
},
"day": {
"default": {
"one": "Pēc {0} dienas",
"zero": "Pēc {0} dienām",
"other": "Pēc {0} dienām"
}
},
"week": {
"default": {
"one": "Pēc {0} nedēļas",
"zero": "Pēc {0} nedēļām",
"other": "Pēc {0} nedēļām"
}
},
"month": {
"default": {
"one": "Pēc {0} mēneša",
"zero": "Pēc {0} mēnešiem",
"other": "Pēc {0} mēnešiem"
}
},
"year": {
"default": {
"one": "Pēc {0} gada",
"zero": "Pēc {0} gadiem",
"other": "Pēc {0} gadiem"
}
}
},
"none": {
"second": {
"default": {
"one": "{0} sekunde",
"zero": "{0} sekundes",
"other": "{0} sekundes"
},
"short": {
"one": "{0} s",
"zero": "{0} s",
"other": "{0} s"
},
"abbreviated": {
"one": "{0}s",
"zero": "{0}s",
"other": "{0}s"
}
},
"minute": {
"default": {
"one": "{0} minūte",
"zero": "{0} minūtes",
"other": "{0} minūtes"
},
"short": {
"one": "{0} min",
"zero": "{0} min",
"other": "{0} min"
},
"abbreviated": {
"one": "{0}m",
"zero": "{0}m",
"other": "{0}m"
}
},
"hour": {
"default": {
"one": "{0} stunda",
"zero": "{0} stundas",
"other": "{0} stundas"
},
"short": {
"one": "{0} h",
"zero": "{0} h",
"other": "{0} h"
},
"abbreviated": {
"one": "{0}h",
"zero": "{0}h",
"other": "{0}h"
}
},
"day": {
"default": {
"one": "{0} diennakts",
"zero": "{0} diennaktis",
"other": "{0} diennaktis"
},
"short": {
"one": "{0} diena",
"zero": "{0} dienas",
"other": "{0} dienas"
},
"abbreviated": {
"one": "{0}d",
"zero": "{0}d",
"other": "{0}d"
}
},
"week": {
"default": {
"one": "{0} nedēļa",
"zero": "{0} nedēļas",
"other": "{0} nedēļas"
},
"short": {
"one": "{0} ned.",
"zero": "{0} ned.",
"other": "{0} ned."
}
},
"month": {
"default": {
"one": "{0} mēnesis",
"zero": "{0} mēneši",
"other": "{0} mēneši"
},
"short": {
"one": "{0} mēn.",
"zero": "{0} mēn.",
"other": "{0} mēn."
}
},
"year": {
"default": {
"one": "{0} gads",
"zero": "{0} gadi",
"other": "{0} gadi"
},
"short": {
"one": "{0} g.",
"zero": "{0} g.",
"other": "{0} g."
}
}
}
}
},
"DateTimeFormatter": {
"tokens": {
"date_time": {
"default": [
{
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'gada' ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "HH",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "ss",
"type": "pattern"
}
],
"full": [
{
"value": "EEEE",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'gada' ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"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": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'gada' ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"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": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'gada' ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "HH",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "ss",
"type": "pattern"
}
],
"short": [
{
"value": "dd",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "yy",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "HH",
"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": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"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"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ".",
"type": "plaintext"
}
],
"GyMMM": [
{
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"GyMMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"GyMMMd": [
{
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"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": "dd",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"MMM": [
{
"value": "LLL",
"type": "pattern"
}
],
"MMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "d",
"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"
}
],
"Md": [
{
"value": "dd",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "MM",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"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"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ".",
"type": "plaintext"
}
],
"yM": [
{
"value": "MM",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"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"
}, {
"value": ".",
"type": "plaintext"
}
],
"yMMM": [
{
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"yMMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"yMMMM": [
{
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}
],
"yMMMd": [
{
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"yMd": [
{
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"yQQQ": [
{
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "QQQ",
"type": "pattern"
}
],
"yQQQQ": [
{
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "QQQQ",
"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, d.",
"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"
}, {
"value": "'g'",
"type": "plaintext"
}, {
"value": ".",
"type": "plaintext"
}
],
"GyMMM": [
{
"value": "G y. ",
"type": "plaintext"
}, {
"value": "'g'",
"type": "plaintext"
}, {
"value": ". MMM",
"type": "plaintext"
}
],
"GyMMMEd": [
{
"value": "E, G y. ",
"type": "plaintext"
}, {
"value": "'g'",
"type": "plaintext"
}, {
"value": ". d. MMM",
"type": "plaintext"
}
],
"GyMMMd": [
{
"value": "G y. ",
"type": "plaintext"
}, {
"value": "'g'",
"type": "plaintext"
}, {
"value": ". d. MMM",
"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, dd.MM.",
"type": "plaintext"
}
],
"MMM": [
{
"value": "LLL",
"type": "plaintext"
}
],
"MMMEd": [
{
"value": "E, d. MMM",
"type": "plaintext"
}
],
"MMMMEd": [
{
"value": "E, d. MMMM",
"type": "plaintext"
}
],
"MMMMd": [
{
"value": "d. MMMM",
"type": "plaintext"
}
],
"MMMd": [
{
"value": "d. MMM",
"type": "plaintext"
}
],
"Md": [
{
"value": "dd.MM.",
"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"
}, {
"value": "'g'",
"type": "plaintext"
}, {
"value": ".",
"type": "plaintext"
}
],
"yM": [
{
"value": "MM.y.",
"type": "plaintext"
}
],
"yMEd": [
{
"value": "E, d.M.y.",
"type": "plaintext"
}
],
"yMMM": [
{
"value": "y. ",
"type": "plaintext"
}, {
"value": "'g'",
"type": "plaintext"
}, {
"value": ". MMM",
"type": "plaintext"
}
],
"yMMMEd": [
{
"value": "E, y. ",
"type": "plaintext"
}, {
"value": "'g'",
"type": "plaintext"
}, {
"value": ". d. MMM",
"type": "plaintext"
}
],
"yMMMM": [
{
"value": "y. ",
"type": "plaintext"
}, {
"value": "'g'",
"type": "plaintext"
}, {
"value": ". MMMM",
"type": "plaintext"
}
],
"yMMMd": [
{
"value": "y. ",
"type": "plaintext"
}, {
"value": "'g'",
"type": "plaintext"
}, {
"value": ". d. MMM",
"type": "plaintext"
}
],
"yMd": [
{
"value": "d.M.y.",
"type": "plaintext"
}
],
"yQQQ": [
{
"value": "y. ",
"type": "plaintext"
}, {
"value": "'g'",
"type": "plaintext"
}, {
"value": ". QQQ",
"type": "plaintext"
}
],
"yQQQQ": [
{
"value": "y. ",
"type": "plaintext"
}, {
"value": "'g'",
"type": "plaintext"
}, {
"value": ". QQQQ",
"type": "plaintext"
}
]
}
},
"date": {
"default": [
{
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'gada' ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"full": [
{
"value": "EEEE",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'gada' ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}
],
"long": [
{
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'gada' ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMMM",
"type": "pattern"
}
],
"medium": [
{
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'gada' ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"short": [
{
"value": "dd",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "MM",
"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": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}
],
"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"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ".",
"type": "plaintext"
}
],
"GyMMM": [
{
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"GyMMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"GyMMMd": [
{
"value": "G",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": " 'g'",
"type": "plaintext"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": ". ",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"H": [
{
"value":