You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
order: 1
|
|
|
|
title:
|
|
|
|
zh-CN: 国际化
|
|
|
|
en-US: Localization
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
用 `LocaleProvider` 包裹你的应用,并引用对应的语言包。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Wrap your app with `LocaleProvider`, and apply the corresponding language package.
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Pagination, LocaleProvider } from 'antd';
|
|
|
|
import enUS from 'antd/lib/locale-provider/en_US';
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Pagination defaultCurrent={1} total={50} showSizeChanger />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<LocaleProvider locale={enUS}>
|
|
|
|
<App />
|
|
|
|
</LocaleProvider>
|
|
|
|
, mountNode);
|
|
|
|
````
|