en_US.js 455 字节
Newer Older
M
MG12 已提交
1 2 3 4 5 6
import objectAssign from 'object-assign';
import GregorianCalendarLocale from 'gregorian-calendar/lib/locale/en_US';
import TimepickerLocale from 'rc-time-picker/lib/locale/en_US';

// 统一合并为完整的 Locale
let locale = objectAssign({}, GregorianCalendarLocale);
A
afc163 已提交
7 8 9
locale.lang = objectAssign({
  placeholder: 'Select a time'
}, TimepickerLocale);
M
MG12 已提交
10 11 12 13 14

// All settings at:
// https://github.com/ant-design/ant-design/issues/424

export default locale;