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,943 lines (1,936 loc) • 681 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": true,
"locale": "he"
},
"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 !((n \u003e= 0) \u0026\u0026 (n \u003c= 10))) \u0026\u0026 n % 10 == 0) ? 'many' : ((i == 1 \u0026\u0026 v == 0) ? 'one' : ((i == 2 \u0026\u0026 v == 0) ? 'two' : '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": ["many", "one", "other", "two"],
"ordinal": ["other"]
}
},
"TimespanFormatter": {
"patterns": {
"ago": {
"second": {
"default": {
"many": "לפני {0} שניות",
"one": "לפני {0} שניות",
"two": "לפני {0} שניות",
"other": "לפני {0} שניות"
}
},
"minute": {
"default": {
"many": "לפני {0} דקות",
"one": "לפני {0} דקות",
"two": "לפני {0} דקות",
"other": "לפני {0} דקות"
}
},
"hour": {
"default": {
"many": "לפני {0} שעות",
"one": "לפני {0} שעות",
"two": "לפני {0} שעות",
"other": "לפני {0} שעות"
}
},
"day": {
"default": {
"many": "לפני {0} ימים",
"one": "לפני {0} ימים",
"two": "לפני {0} ימים",
"other": "לפני {0} ימים"
}
},
"week": {
"default": {
"many": "לפני {0} שבועות",
"one": "לפני {0} שבועות",
"two": "לפני {0} שבועות",
"other": "לפני {0} שבועות"
}
},
"month": {
"default": {
"many": "לפני {0} חודשים",
"one": "לפני {0} חודשים",
"two": "לפני {0} חודשים",
"other": "לפני {0} חודשים"
}
},
"year": {
"default": {
"many": "לפני {0} שנים",
"one": "לפני {0} שנים",
"two": "לפני {0} שנים",
"other": "לפני {0} שנים"
}
}
},
"until": {
"second": {
"default": {
"many": "בעוד {0} שניות",
"one": "בעוד {0} שניות",
"two": "בעוד {0} שניות",
"other": "בעוד {0} שניות"
}
},
"minute": {
"default": {
"many": "בעוד {0} דקות",
"one": "בעוד {0} דקות",
"two": "בעוד {0} דקות",
"other": "בעוד {0} דקות"
}
},
"hour": {
"default": {
"many": "בעוד {0} שעות",
"one": "בעוד {0} שעות",
"two": "בעוד {0} שעות",
"other": "בעוד {0} שעות"
}
},
"day": {
"default": {
"many": "בעוד {0} ימים",
"one": "בעוד {0} ימים",
"two": "בעוד {0} ימים",
"other": "בעוד {0} ימים"
}
},
"week": {
"default": {
"many": "בעוד {0} שבועות",
"one": "בעוד {0} שבועות",
"two": "בעוד {0} שבועות",
"other": "בעוד {0} שבועות"
}
},
"month": {
"default": {
"many": "בעוד {0} חודשים",
"one": "בעוד {0} חודשים",
"two": "בעוד {0} חודשים",
"other": "בעוד {0} חודשים"
}
},
"year": {
"default": {
"many": "בעוד {0} שנים",
"one": "בעוד {0} שנים",
"two": "בעוד {0} שנים",
"other": "בעוד {0} שנים"
}
}
},
"none": {
"second": {
"default": {
"many": "{0} שניות",
"one": "{0} שניה",
"two": "{0} שניות",
"other": "{0} שניות"
},
"short": {
"many": "{0} שנ׳",
"one": "{0} שנ׳",
"two": "{0} שנ׳",
"other": "{0} שניות"
}
},
"minute": {
"default": {
"many": "{0} דקות",
"one": "{0} דקה",
"two": "{0} דקות",
"other": "{0} דקות"
},
"short": {
"many": "{0} דק׳",
"one": "{0} דק׳",
"two": "{0} דק׳",
"other": "{0} דק׳"
}
},
"hour": {
"default": {
"many": "{0} שעות",
"one": "{0} שעה",
"two": "{0} שעות",
"other": "{0} שעות"
},
"short": {
"many": "{0} שעות",
"one": "{0} שעה",
"two": "{0} שעות",
"other": "{0} שעות"
}
},
"day": {
"default": {
"many": "{0} ימים",
"one": "{0} יום",
"two": "{0} ימים",
"other": "{0} ימים"
},
"short": {
"many": "{0} ימים",
"one": "{0} יום",
"two": "{0} ימים",
"other": "{0} ימים"
}
},
"week": {
"default": {
"many": "{0} שבועות",
"one": "{0} שבוע",
"two": "{0} שבועות",
"other": "{0} שבועות"
},
"short": {
"many": "{0} שבועות",
"one": "{0} שבוע",
"two": "{0} שבועות",
"other": "{0} שבועות"
}
},
"month": {
"default": {
"many": "{0} חודשים",
"one": "{0} חודש",
"two": "{0} חודשים",
"other": "{0} חודשים"
},
"short": {
"many": "{0} חודשים",
"one": "{0} חודש",
"two": "{0} חודשים",
"other": "{0} חודשים"
}
},
"year": {
"default": {
"many": "{0} שנים",
"one": "{0} שנה",
"two": "{0} שנים",
"other": "{0} שנים"
},
"short": {
"many": "{0} שנים",
"one": "{0} שנה",
"two": "{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": "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": "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": "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": "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": "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": "d",
"type": "pattern"
}, {
"value": " ב",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ",",
"type": "plaintext"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "HH",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "ss",
"type": "pattern"
}
],
"short": [
{
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": ",",
"type": "plaintext"
}, {
"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": "H",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"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"
}
],
"Ed": [
{
"value": "E",
"type": "pattern"
}, {
"value": " ה-",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"Ehm": [
{
"value": "E",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "h",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "a",
"type": "pattern"
}
],
"Ehms": [
{
"value": "E",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "h",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "ss",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "a",
"type": "pattern"
}
],
"Gy": [
{
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "G",
"type": "pattern"
}
],
"GyMMM": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "G",
"type": "pattern"
}
],
"GyMMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": " ב",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "G",
"type": "pattern"
}
],
"GyMMMd": [
{
"value": "d",
"type": "pattern"
}, {
"value": " ב",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "G",
"type": "pattern"
}
],
"H": [
{
"value": "HH",
"type": "pattern"
}
],
"Hm": [
{
"value": "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": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}
],
"MMM": [
{
"value": "LLL",
"type": "pattern"
}
],
"MMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": " ב",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"MMMd": [
{
"value": "d",
"type": "pattern"
}, {
"value": " ב",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"Md": [
{
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}
],
"d": [
{
"value": "d",
"type": "pattern"
}
],
"h": [
{
"value": "",
"type": "plaintext"
}, {
"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": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}
],
"yMM": [
{
"value": "M",
"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": "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": "H",
"type": "pattern"
}, {
"value": ":",
"type": "plaintext"
}, {
"value": "mm",
"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"
}
],
"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": "y G",
"type": "plaintext"
}
],
"GyMMM": [
{
"value": "MMM y G",
"type": "plaintext"
}
],
"GyMMMEd": [
{
"value": "E, d בMMM y G",
"type": "plaintext"
}
],
"GyMMMd": [
{
"value": "d בMMM y G",
"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, d.M",
"type": "plaintext"
}
],
"MMM": [
{
"value": "LLL",
"type": "plaintext"
}
],
"MMMEd": [
{
"value": "E, d בMMM",
"type": "plaintext"
}
],
"MMMd": [
{
"value": "d בMMM",
"type": "plaintext"
}
],
"Md": [
{
"value": "d.M",
"type": "plaintext"
}
],
"d": [
{
"value": "d",
"type": "plaintext"
}
],
"h": [
{
"value": "",
"type": "plaintext"
}, {
"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, d.M.y",
"type": "plaintext"
}
],
"yMM": [
{
"value": "M.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": "y",
"type": "pattern"
}
],
"additional": {
"E": [
{
"value": "ccc",
"type": "pattern"
}
],
"EHm": [
{
"value": "E",
"type": "pattern"
}, {
"value": " H:mm",
"type": "plaintext"
}
],
"EHms": [
{
"value": "E",
"type": "pattern"
}, {
"value": " H:mm:ss",
"type": "plaintext"
}
],
"Ed": [
{
"value": "E",
"type": "pattern"
}, {
"value": " ה-",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}
],
"Ehm": [
{
"value": "E",
"type": "pattern"
}, {
"value": " h:mm a",
"type": "plaintext"
}
],
"Ehms": [
{
"value": "E",
"type": "pattern"
}, {
"value": " h:mm:ss a",
"type": "plaintext"
}
],
"Gy": [
{
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "G",
"type": "pattern"
}
],
"GyMMM": [
{
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "G",
"type": "pattern"
}
],
"GyMMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": " ב",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "G",
"type": "pattern"
}
],
"GyMMMd": [
{
"value": "d",
"type": "pattern"
}, {
"value": " ב",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "y",
"type": "pattern"
}, {
"value": " ",
"type": "plaintext"
}, {
"value": "G",
"type": "pattern"
}
],
"H": [
{
"value": "HH",
"type": "plaintext"
}
],
"Hm": [
{
"value": "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": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}
],
"MMM": [
{
"value": "LLL",
"type": "pattern"
}
],
"MMMEd": [
{
"value": "E",
"type": "pattern"
}, {
"value": ", ",
"type": "plaintext"
}, {
"value": "d",
"type": "pattern"
}, {
"value": " ב",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"MMMd": [
{
"value": "d",
"type": "pattern"
}, {
"value": " ב",
"type": "plaintext"
}, {
"value": "MMM",
"type": "pattern"
}
],
"Md": [
{
"value": "d",
"type": "pattern"
}, {
"value": ".",
"type": "plaintext"
}, {
"value": "M",
"type": "pattern"
}
],
"d": [
{
"value": "d",
"type": "pattern"
}
],
"h": [
{
"value": "h a",
"type": "plaintext"
}
],
"hm": [
{
"value": "h:mm a",
"type": "plaintext"
}
],
"hms": [
{
"value": "h:mm:ss a",
"type": "plaintext"
}
],
"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": "M",
"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"