UNPKG

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,950 lines (1,944 loc) 657 kB
/* // 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": "bg" }, "PluralRules": { "rules": { "cardinal": "(function(num, runtime) { var n = runtime.n(num); var i = runtime.i(num); var v = runtime.v(num); var w = runtime.w(num); var f = runtime.f(num); var t = runtime.t(num); return (n == 1 ? 'one' : 'other'); })", "ordinal": "(function(num, runtime) { var n = runtime.n(num); var i = runtime.i(num); var v = runtime.v(num); var w = runtime.w(num); var f = runtime.f(num); var t = runtime.t(num); return 'other'; })" }, "names": { "cardinal": ["one", "other"], "ordinal": ["other"] } }, "TimespanFormatter": { "patterns": { "ago": { "second": { "default": { "one": "Преди {0} секунда", "other": "Преди {0} секунди" } }, "minute": { "default": { "one": "Преди {0} минута", "other": "Преди {0} минути" } }, "hour": { "default": { "one": "Преди {0} час", "other": "Преди {0} часа" } }, "day": { "default": { "one": "Преди {0} ден", "other": "Преди {0} дни" } }, "week": { "default": { "one": "Преди {0} седмица", "other": "Преди {0} седмици" } }, "month": { "default": { "one": "Преди {0} месец", "other": "Преди {0} месеца" } }, "year": { "default": { "one": "Преди {0} година", "other": "Преди {0} години" } } }, "until": { "second": { "default": { "one": "След {0} секунда", "other": "След {0} секунди" } }, "minute": { "default": { "one": "След {0} минута", "other": "След {0} минути" } }, "hour": { "default": { "one": "След {0} час", "other": "След {0} часа" } }, "day": { "default": { "one": "След {0} дни", "other": "След {0} дни" } }, "week": { "default": { "one": "След {0} седмица", "other": "След {0} седмици" } }, "month": { "default": { "one": "След {0} месец", "other": "След {0} месеца" } }, "year": { "default": { "one": "След {0} година", "other": "След {0} години" } } }, "none": { "second": { "default": { "one": "{0} секунда", "other": "{0} секунди" }, "short": { "one": "{0} сек", "other": "{0} сек" }, "abbreviated": { "one": "{0}сек", "other": "{0}сек" } }, "minute": { "default": { "one": "{0} минута", "other": "{0} минути" }, "short": { "one": "{0} мин", "other": "{0} мин" }, "abbreviated": { "one": "{0}мин", "other": "{0}мин" } }, "hour": { "default": { "one": "{0} час", "other": "{0} часа" }, "short": { "one": "{0} ч", "other": "{0} ч" }, "abbreviated": { "one": "{0}ч", "other": "{0}ч" } }, "day": { "default": { "one": "{0} ден", "other": "{0} дена" }, "short": { "one": "{0} дн.", "other": "{0} дн." }, "abbreviated": { "one": "{0}дни", "other": "{0}дни" } }, "week": { "default": { "one": "{0} седмица", "other": "{0} седмици" }, "short": { "one": "{0} седм.", "other": "{0} седм." } }, "month": { "default": { "one": "{0} месец", "other": "{0} месеца" }, "short": { "one": "{0} мес.", "other": "{0} мес." } }, "year": { "default": { "one": "{0} година", "other": "{0} години" }, "short": { "one": "{0} год.", "other": "{0} год." } } } } }, "DateTimeFormatter": { "tokens": { "date_time": { "default": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" }, { "value": ",", "type": "plaintext" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "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": "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": "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": "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": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" }, { "value": ",", "type": "plaintext" }, { "value": " ", "type": "plaintext" }, { "value": "H", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "mm", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "short": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "yy", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" }, { "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": "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": "MM", "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": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'. ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMM": [ { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'. ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMMEd": [ { "value": "E", "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": "G", "type": "pattern" } ], "GyMMMMd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMMM", "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": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'. ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "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": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" } ], "MMM": [ { "value": "MM", "type": "pattern" } ], "MMMEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" } ], "MMMM": [ { "value": "LLLL", "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" } ], "MMMMdd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" } ], "MMMd": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" } ], "Md": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "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": "m", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "y": [ { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "yM": [ { "value": "M", "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": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "yMMM": [ { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "yMMMEd": [ { "value": "E", "type": "pattern" }, { "value": ", ", "type": "plaintext" }, { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "yMMMM": [ { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "yMMMMEd": [ { "value": "E", "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" } ], "yMMMMd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "yMMMd": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "yMd": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "yQQQ": [ { "value": "QQQ", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "yQQQQ": [ { "value": "QQQQ", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ] } }, "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": "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": "MM.y 'г'. G", "type": "plaintext" } ], "GyMMMEd": [ { "value": "E, d.MM.y 'г'. G", "type": "plaintext" } ], "GyMMMM": [ { "value": "MMMM y 'г'. G", "type": "plaintext" } ], "GyMMMMEd": [ { "value": "E, d MMMM y 'г'. G", "type": "plaintext" } ], "GyMMMMd": [ { "value": "d MMMM y 'г'. G", "type": "plaintext" } ], "GyMMMd": [ { "value": "d.MM.y 'г'. G", "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": "E, d.MM", "type": "plaintext" } ], "MMM": [ { "value": "MM", "type": "plaintext" } ], "MMMEd": [ { "value": "E, d.MM", "type": "plaintext" } ], "MMMM": [ { "value": "LLLL", "type": "plaintext" } ], "MMMMEd": [ { "value": "E, d MMMM", "type": "plaintext" } ], "MMMMd": [ { "value": "d MMMM", "type": "plaintext" } ], "MMMMdd": [ { "value": "d MMMM", "type": "plaintext" } ], "MMMd": [ { "value": "d.MM", "type": "plaintext" } ], "Md": [ { "value": "d.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" } ], "ms": [ { "value": "m", "type": "pattern" }, { "value": ":", "type": "plaintext" }, { "value": "ss", "type": "pattern" } ], "y": [ { "value": "y 'г'.", "type": "plaintext" } ], "yM": [ { "value": "M.y 'г'.", "type": "plaintext" } ], "yMEd": [ { "value": "E, d.MM.y 'г'.", "type": "plaintext" } ], "yMMM": [ { "value": "MM.y 'г'.", "type": "plaintext" } ], "yMMMEd": [ { "value": "E, d.MM.y 'г'.", "type": "plaintext" } ], "yMMMM": [ { "value": "MMMM y 'г'.", "type": "plaintext" } ], "yMMMMEd": [ { "value": "E, d MMMM y 'г'.", "type": "plaintext" } ], "yMMMMd": [ { "value": "d MMMM y 'г'.", "type": "plaintext" } ], "yMMMd": [ { "value": "d.MM.y 'г'.", "type": "plaintext" } ], "yMd": [ { "value": "d.MM.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": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "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" } ], "long": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "medium": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'.", "type": "plaintext" } ], "short": [ { "value": "d", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "yy", "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": ", 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": "MM", "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": "MM", "type": "pattern" }, { "value": ".", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'. ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMM": [ { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'. ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMMEd": [ { "value": "E", "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": "G", "type": "pattern" } ], "GyMMMMd": [ { "value": "d", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "MMMM", "type": "pattern" }, { "value": " ", "type": "plaintext" }, { "value": "y", "type": "pattern" }, { "value": " 'г'. ", "type": "plaintext" }, { "value": "G", "type": "pattern" } ], "GyMMMd": [ { "value": "d", "type": "patte