mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
3d8cd0b451
* feat: switch visible to open for Modal * test: depcated check * docs: site api update Co-authored-by: 二货机器人 <smith3816@gmail.com>
72 lines
1.3 KiB
Markdown
72 lines
1.3 KiB
Markdown
---
|
|
order: 6
|
|
title:
|
|
zh-CN: 国际化
|
|
en-US: Internationalization
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
设置 `okText` 与 `cancelText` 以自定义按钮文字。
|
|
|
|
## en-US
|
|
|
|
To customize the text of the buttons, you need to set `okText` and `cancelText` props.
|
|
|
|
```tsx
|
|
import { ExclamationCircleOutlined } from '@ant-design/icons';
|
|
import { Button, Modal, Space } from 'antd';
|
|
import React, { useState } from 'react';
|
|
|
|
const LocalizedModal = () => {
|
|
const [open, setOpen] = useState(false);
|
|
|
|
const showModal = () => {
|
|
setOpen(true);
|
|
};
|
|
|
|
const hideModal = () => {
|
|
setOpen(false);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Button type="primary" onClick={showModal}>
|
|
Modal
|
|
</Button>
|
|
<Modal
|
|
title="Modal"
|
|
open={open}
|
|
onOk={hideModal}
|
|
onCancel={hideModal}
|
|
okText="确认"
|
|
cancelText="取消"
|
|
>
|
|
<p>Bla bla ...</p>
|
|
<p>Bla bla ...</p>
|
|
<p>Bla bla ...</p>
|
|
</Modal>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const confirm = () => {
|
|
Modal.confirm({
|
|
title: 'Confirm',
|
|
icon: <ExclamationCircleOutlined />,
|
|
content: 'Bla bla ...',
|
|
okText: '确认',
|
|
cancelText: '取消',
|
|
});
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<Space>
|
|
<LocalizedModal />
|
|
<Button onClick={confirm}>Confirm</Button>
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|
|
```
|