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

25 lines
414 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title:
zh-CN: 国际化
en-US: Internationalization
2016-03-31 09:40:55 +08:00
---
2015-11-24 11:21:37 +08:00
## zh-CN
2015-11-24 11:21:37 +08:00
设置 `okText` `cancelText` 以自定义按钮文字。
## en-US
Set `okText` and `cancelText` props to customise the buttons' labels.
2015-11-24 11:21:37 +08:00
````jsx
import { Popconfirm } from 'antd';
ReactDOM.render(
<Popconfirm title="Are you sure" okText="Yes" cancelText="No">
2015-11-26 12:07:27 +08:00
<a href="#">Delete</a>
2015-11-24 11:21:37 +08:00
</Popconfirm>
, mountNode);
2015-11-24 11:21:37 +08:00
````