mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
7696c1cd05
* add Estonian translations * add other translations except pagination for Estonian * add to tests * linting fixes * remove comments
18 lines
541 B
TypeScript
18 lines
541 B
TypeScript
import CalendarLocale from 'rc-calendar/lib/locale/et_EE';
|
|
import TimePickerLocale from '../../time-picker/locale/et_EE';
|
|
import assign from 'object-assign';
|
|
|
|
// 统一合并为完整的 Locale
|
|
const locale = {
|
|
lang: assign({
|
|
placeholder: 'Vali kuupäev',
|
|
rangePlaceholder: ['Algus kuupäev', 'Lõpu kuupäev'],
|
|
}, 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;
|