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.
20 lines
501 B
20 lines
501 B
5 years ago
|
import CalendarLocale from '../../vc-calendar/src/locale/ms_MY';
|
||
|
import TimePickerLocale from '../../time-picker/locale/ms_MY';
|
||
|
|
||
|
// Merge into a locale object
|
||
|
const locale = {
|
||
|
lang: {
|
||
|
placeholder: 'Pilih tarikh',
|
||
|
rangePlaceholder: ['Tarikh mula', 'Tarikh akhir'],
|
||
|
...CalendarLocale,
|
||
|
},
|
||
|
timePickerLocale: {
|
||
|
...TimePickerLocale,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
// All settings at:
|
||
|
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json
|
||
|
|
||
|
export default locale;
|