@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) • 971 B
JavaScript
module.exports = {
"name": "zh_HK",
"day": {
"abbrev": [
"日",
"一",
"二",
"三",
"四",
"五",
"六"
],
"full": [
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六"
]
},
"month": {
"abbrev": [
"1月",
"2月",
"3月",
"4月",
"5月",
"6月",
"7月",
"8月",
"9月",
"10月",
"11月",
"12月"
],
"full": [
"一月",
"二月",
"三月",
"四月",
"五月",
"六月",
"七月",
"八月",
"九月",
"十月",
"十一月",
"十二月"
]
},
"meridiem": [
"上午",
"下午"
],
"date": "%Y年%m月%d日 %A",
"time24": "%I時%M分%S秒 %Z",
"dateTime": "%Y年%m月%d日 %A %H:%M:%S",
"time12": "%p %I:%M:%S",
"full": "%a %b %e %H:%M:%S %Z %Y"
}