You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/date-picker/locale/en_US.js

16 lines
419 B
JavaScript

import GregorianCalendarLocale from 'gregorian-calendar/lib/locale/en_US';
import CalendarLocale from 'rc-calendar/lib/locale/en_US';
// 统一合并为完整的 Locale
let locale = { ...GregorianCalendarLocale };
locale.lang = {
placeholder: 'Select date',
timePlaceholder: 'Select time',
...CalendarLocale,
};
// All settings at:
// https://github.com/ant-design/ant-design/issues/424
export default locale;