--- 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 ( <>

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; ```