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/demo/locale.md

29 lines
555 B
Markdown

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
order: 10
title:
zh-CN: 国际化
en-US: Locale
---
## zh-CN
通过 `locale` 配置时区、语言等, 默认支持 `en_US``zh_CN`。
## en-US
Use locale to set the properties like time zone, language and etc. en_US, zh_CN are supported by default.
````jsx
import { DatePicker } from 'antd';
import enUS from 'antd/lib/date-picker/locale/en_US';
const customLocale = {
timezoneOffset: 0 * 60,
firstDayOfWeek: 0,
minimalDaysInFirstWeek: 1,
};
ReactDOM.render(<DatePicker locale={{ ...enUS, ...customLocale }} />, mountNode);
````