---
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 [visible, setVisible] = useState(false);
const showModal = () => {
setVisible(true);
};
const hideModal = () => {
setVisible(false);
};
return (
<>
Bla bla ...
Bla bla ...
Bla bla ...
>
);
};
const confirm = () => {
Modal.confirm({
title: 'Confirm',
icon: ,
content: 'Bla bla ...',
okText: '确认',
cancelText: '取消',
});
};
const App: React.FC = () => (
);
export default App;
```