mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
05fd5a6825
* Add locale ca_ES (Catalan) * Add locale ca_ES (Catalan). Modify global locale in local-provider.
18 lines
538 B
TypeScript
18 lines
538 B
TypeScript
import CalendarLocale from 'rc-calendar/lib/locale/ca_ES';
|
|
import TimePickerLocale from '../../time-picker/locale/ca_ES';
|
|
import assign from 'object-assign';
|
|
|
|
// 统一合并为完整的 Locale
|
|
const locale = {
|
|
lang: assign({
|
|
placeholder: 'Seleccionar data',
|
|
rangePlaceholder: ['Data inicial', 'Data final'],
|
|
}, 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;
|