mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
18 lines
591 B
TypeScript
18 lines
591 B
TypeScript
import CalendarLocale from 'rc-calendar/lib/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/locale/example.json
|
|
|
|
export default locale;
|