@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": "nl_BE",
"day": {
"abbrev": [
"zo",
"ma",
"di",
"wo",
"do",
"vr",
"za"
],
"full": [
"zondag",
"maandag",
"dinsdag",
"woensdag",
"donderdag",
"vrijdag",
"zaterdag"
]
},
"month": {
"abbrev": [
"jan",
"feb",
"mrt",
"apr",
"mei",
"jun",
"jul",
"aug",
"sep",
"okt",
"nov",
"dec"
],
"full": [
"januari",
"februari",
"maart",
"april",
"mei",
"juni",
"juli",
"augustus",
"september",
"oktober",
"november",
"december"
]
},
"meridiem": [
"",
""
],
"date": "%d-%m-%y",
"time24": "%T",
"dateTime": "%a %d %b %Y %T %Z",
"time12": "",
"full": "%a %b %e %H:%M:%S %Z %Y"
}