You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
620 B
22 lines
620 B
import CalendarLocale from '../../vc-calendar/src/locale/th_TH';
|
|
import TimePickerLocale from '../../time-picker/locale/th_TH';
|
|
import assign from 'object-assign';
|
|
|
|
// Merge into a locale object
|
|
const locale = {
|
|
lang: assign(
|
|
{
|
|
placeholder: 'เลือกวันที่',
|
|
rangePlaceholder: ['วันเริ่มต้น', 'วันสิ้นสุด'],
|
|
},
|
|
CalendarLocale,
|
|
),
|
|
timePickerLocale: assign({}, TimePickerLocale),
|
|
};
|
|
|
|
// All settings at:
|
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/lo
|
|
// cale/example.json
|
|
|
|
export default locale;
|