mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
7fd093bd0a
* docs: add general components TS demo * docs: add layout components TS demo * docs: add navigation components TS demo * docs: add data entry components TS demo * chore(deps): add types for qs * docs: add data display TS demo * docs: add feedback components TS demo * docs: add other components TS demo * chore(deps): add types * docs: unified demo code style * docs: fix lint error * docs: add demo TS type * docs: fix demo TS type * test: update snapshot * docs: fix TS demo * feat: update Rate character type * docs: fix lint error * feat: update Rate character type * feat: update Rate character type
196 lines
4.1 KiB
Markdown
196 lines
4.1 KiB
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 国际化
|
|
en-US: Locale
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
此处列出 Ant Design 中需要国际化支持的组件,你可以在演示里切换语言。
|
|
|
|
## en-US
|
|
|
|
Components which need localization support are listed here, you can toggle the language in the demo.
|
|
|
|
```tsx
|
|
import React, { useState } from 'react';
|
|
import {
|
|
ConfigProvider,
|
|
Pagination,
|
|
DatePicker,
|
|
TimePicker,
|
|
Calendar,
|
|
Popconfirm,
|
|
Table,
|
|
Modal,
|
|
Button,
|
|
Select,
|
|
Transfer,
|
|
Radio,
|
|
} from 'antd';
|
|
import enUS from 'antd/lib/locale/en_US';
|
|
import zhCN from 'antd/lib/locale/zh_CN';
|
|
import moment from 'moment';
|
|
import type { RadioChangeEvent } from 'antd';
|
|
import 'moment/locale/zh-cn';
|
|
|
|
moment.locale('en');
|
|
|
|
const { Option } = Select;
|
|
const { RangePicker } = DatePicker;
|
|
|
|
const columns = [
|
|
{
|
|
title: 'Name',
|
|
dataIndex: 'name',
|
|
filters: [
|
|
{
|
|
text: 'filter1',
|
|
value: 'filter1',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Age',
|
|
dataIndex: 'age',
|
|
},
|
|
];
|
|
|
|
const Page = () => {
|
|
const [visible, setVisible] = useState(false);
|
|
|
|
const showModal = () => {
|
|
setVisible(true);
|
|
};
|
|
|
|
const hideModal = () => {
|
|
setVisible(false);
|
|
};
|
|
|
|
const info = () => {
|
|
Modal.info({
|
|
title: 'some info',
|
|
content: 'some info',
|
|
});
|
|
};
|
|
|
|
const confirm = () => {
|
|
Modal.confirm({
|
|
title: 'some info',
|
|
content: 'some info',
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className="locale-components">
|
|
<div className="example">
|
|
<Pagination defaultCurrent={1} total={50} showSizeChanger />
|
|
</div>
|
|
<div className="example">
|
|
<Select showSearch style={{ width: 200 }}>
|
|
<Option value="jack">jack</Option>
|
|
<Option value="lucy">lucy</Option>
|
|
</Select>
|
|
<DatePicker />
|
|
<TimePicker />
|
|
<RangePicker style={{ width: 200 }} />
|
|
</div>
|
|
<div className="example">
|
|
<Button type="primary" onClick={showModal}>
|
|
Show Modal
|
|
</Button>
|
|
<Button onClick={info}>Show info</Button>
|
|
<Button onClick={confirm}>Show confirm</Button>
|
|
<Popconfirm title="Question?">
|
|
<a href="#">Click to confirm</a>
|
|
</Popconfirm>
|
|
</div>
|
|
<div className="example">
|
|
<Transfer dataSource={[]} showSearch targetKeys={[]} />
|
|
</div>
|
|
<div className="site-config-provider-calendar-wrapper">
|
|
<Calendar fullscreen={false} value={moment()} />
|
|
</div>
|
|
<div className="example">
|
|
<Table dataSource={[]} columns={columns} />
|
|
</div>
|
|
<Modal title="Locale Modal" visible={visible} onCancel={hideModal}>
|
|
<p>Locale Modal</p>
|
|
</Modal>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const App: React.FC = () => {
|
|
const [locale, setLocal] = useState(enUS);
|
|
|
|
const changeLocale = (e: RadioChangeEvent) => {
|
|
const localeValue = e.target.value;
|
|
setLocal(localeValue);
|
|
if (!localeValue) {
|
|
moment.locale('en');
|
|
} else {
|
|
moment.locale('zh-cn');
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<div className="change-locale">
|
|
<span style={{ marginRight: 16 }}>Change locale of components: </span>
|
|
<Radio.Group value={locale} onChange={changeLocale}>
|
|
<Radio.Button key="en" value={enUS}>
|
|
English
|
|
</Radio.Button>
|
|
<Radio.Button key="cn" value={zhCN}>
|
|
中文
|
|
</Radio.Button>
|
|
</Radio.Group>
|
|
</div>
|
|
<ConfigProvider locale={locale}>
|
|
<Page
|
|
key={locale ? locale.locale : 'en' /* Have to refresh for production environment */}
|
|
/>
|
|
</ConfigProvider>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
```
|
|
|
|
```css
|
|
.site-config-provider-calendar-wrapper {
|
|
width: 319px;
|
|
border: 1px solid #d9d9d9;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.locale-components {
|
|
padding-top: 16px;
|
|
border-top: 1px solid #d9d9d9;
|
|
}
|
|
|
|
.code-box-demo .example {
|
|
margin: 16px 0;
|
|
}
|
|
|
|
.code-box-demo .example > * {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.change-locale {
|
|
margin-bottom: 16px;
|
|
}
|
|
```
|
|
|
|
<style>
|
|
[data-theme="dark"] .locale-components {
|
|
border-top: 1px solid #303030;
|
|
}
|
|
[data-theme="dark"] .site-config-provider-calendar-wrapper {
|
|
border: 1px solid #303030;
|
|
}
|
|
</style>
|