ant-design/components/modal/demo/locale.md

72 lines
1.3 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 6
title:
2016-08-11 11:41:06 +08:00
zh-CN: 国际化
en-US: Internationalization
2016-03-31 09:40:55 +08:00
---
2016-08-11 11:41:06 +08:00
## zh-CN
设置 `okText``cancelText` 以自定义按钮文字。
2016-08-11 11:41:06 +08:00
## en-US
To customize the text of the buttons, you need to set `okText` and `cancelText` props.
```tsx
2019-12-25 21:28:06 +08:00
import { ExclamationCircleOutlined } from '@ant-design/icons';
2022-05-23 14:37:16 +08:00
import { Button, Modal, Space } from 'antd';
import React, { useState } from 'react';
const LocalizedModal = () => {
const [open, setOpen] = useState(false);
2018-06-27 15:55:04 +08:00
const showModal = () => {
setOpen(true);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
const hideModal = () => {
setOpen(false);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
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',
2019-12-25 21:28:06 +08:00
icon: <ExclamationCircleOutlined />,
content: 'Bla bla ...',
okText: '确认',
cancelText: '取消',
});
};
const App: React.FC = () => (
<Space>
<LocalizedModal />
<Button onClick={confirm}>Confirm</Button>
</Space>
);
export default App;
2019-05-07 14:57:32 +08:00
```