@instructure/timezone
Version:
Small, elegant, Olson educated, timezone aware date math and `strftime` date formatting in pure JavaScript with no dependendcies for Node.js and the browser. Timezone uses the Olson/IANA timezone database. Timezone is aware of every clock transition in th
63 lines (62 loc) • 877 B
JavaScript
module.exports = {
"name": "de_DE",
"day": {
"abbrev": [
"So",
"Mo",
"Di",
"Mi",
"Do",
"Fr",
"Sa"
],
"full": [
"Sonntag",
"Montag",
"Dienstag",
"Mittwoch",
"Donnerstag",
"Freitag",
"Samstag"
]
},
"month": {
"abbrev": [
"Jan",
"Feb",
"Mär",
"Apr",
"Mai",
"Jun",
"Jul",
"Aug",
"Sep",
"Okt",
"Nov",
"Dez"
],
"full": [
"Januar",
"Februar",
"März",
"April",
"Mai",
"Juni",
"Juli",
"August",
"September",
"Oktober",
"November",
"Dezember"
]
},
"meridiem": [
"",
""
],
"date": "%d.%m.%Y",
"time24": "%T",
"dateTime": "%a %d %b %Y %T %Z",
"time12": "",
"full": "%a %-d. %b %H:%M:%S %Z %Y"
}