mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
b342dbefa2
* add ja_JP translation * fix Japanese locale * fix i18n docs * update rc-pagination version * add locale test for ja_JP
17 lines
504 B
TypeScript
17 lines
504 B
TypeScript
import CalendarLocale from 'rc-calendar/lib/locale/ja_JP';
|
|
import TimePickerLocale from '../../time-picker/locale/ja_JP';
|
|
import assign from 'object-assign';
|
|
|
|
const locale = {
|
|
lang: assign({
|
|
placeholder: '日付を選択',
|
|
rangePlaceholder: ['開始日付', '終了日付'],
|
|
}, 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;
|