pickadate
Version:
The composable date & time picker.
52 lines (48 loc) • 845 B
JavaScript
// @flow
// Simplified Chinese
import type { Translation } from 'pickadate/types'
const translation: Translation = {
firstDayOfWeek: 1,
template: 'YYYY 年 MM 月 DD 日',
templateHookWords: {
MMM: [
'一',
'二',
'三',
'四',
'五',
'六',
'七',
'八',
'九',
'十',
'十一',
'十二',
],
MMMM: [
'一月',
'二月',
'三月',
'四月',
'五月',
'六月',
'七月',
'八月',
'九月',
'十月',
'十一月',
'十二月',
],
DDD: ['日', '一', '二', '三', '四', '五', '六'],
DDDD: [
'星期日',
'星期一',
'星期二',
'星期三',
'星期四',
'星期五',
'星期六',
],
},
}
export default translation