docs: upload, alert, tooltip - translations of remaining demos (#3035)

* upload - translations of two remaining demos

* alert & tooltip - remaining demo translations

* Prompt typo
This commit is contained in:
Marius Ileana 2016-09-14 04:52:14 +03:00 committed by Benjy Cui
parent 7459be26aa
commit 39a11f00a0
5 changed files with 31 additions and 23 deletions

View File

@ -17,31 +17,31 @@ Decent icon make information more clear and more friendly.
import { Alert } from 'antd';
ReactDOM.render(<div>
<Alert message="成功提示的文案" type="success" showIcon />
<Alert message="消息提示的文案" type="info" showIcon />
<Alert message="警告提示的文案" type="warning" showIcon />
<Alert message="错误提示的文案" type="error" showIcon />
<Alert message="Copywriting Success Tips" type="success" showIcon />
<Alert message="Copywriting Informational Notes" type="info" showIcon />
<Alert message="Copywriting Warning" type="warning" showIcon />
<Alert message="Copywriting Error" type="error" showIcon />
<Alert
message="成功提示的文案"
description="成功提示的辅助性文字介绍成功提示的辅助性文字介绍成功提示的辅助性文字介绍成功提示的辅助性文字介绍"
message="Copywriting success tips"
description="Detailed description and advices about successful copywriting."
type="success"
showIcon
/>
<Alert
message="消息提示的文案"
description="消息提示的辅助性文字介绍消息提示的辅助性文字介绍消息提示的辅助性文字介绍"
message="Copywriting Informational Notes"
description="Additional description and informations about copywriting."
type="info"
showIcon
/>
<Alert
message="警告提示的文案"
description="警告提示的辅助性文字介绍警告提示的辅助性文字介绍"
message="Copywriting Warning"
description="This is a warning notice about copywriting."
type="warning"
showIcon
/>
<Alert
message="错误提示的文案"
description="错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍"
message="Copywriting Error"
description="This is an error message about copywriting."
type="error"
showIcon
/>

View File

@ -11,7 +11,7 @@ title:
## en-US
There are 4 kinds of Alert: `success`, `info`, `warning`, `error`.
There are 4 types of Alert: `success`, `info`, `warning`, `error`.
````jsx
import { Alert } from 'antd';

View File

@ -1,20 +1,28 @@
---
order: 2
title: 箭头指向
title:
zh-CN: 箭头指向
en-US: Arrow pointing at the center
---
## zh-CN
设置了 `arrowPointAtCenter` 后,箭头将指向目标元素的中心。
## en-US
By specifying `arrowPointAtCenter` prop, the arrow will point to the center of the target element.
````jsx
import { Tooltip, Button } from 'antd';
ReactDOM.render(
<div>
<Tooltip placement="topLeft" title="提示文字 提示文字">
<Button>默认对齐元素边缘</Button>
<Tooltip placement="topLeft" title="Prompt Text">
<Button>Tooltip default pointing alignment</Button>
</Tooltip>
<Tooltip placement="topLeft" title="提示文字 提示文字" arrowPointAtCenter>
<Button>箭头指向目标元素的中心</Button>
<Tooltip placement="topLeft" title="Prompt Text" arrowPointAtCenter>
<Button>Tooltip central alignment</Button>
</Tooltip>
</div>
, mountNode);

View File

@ -27,9 +27,9 @@ const props = {
console.log(info.file, info.fileList);
}
if (info.file.status === 'done') {
message.success(`${info.file.name} 上传成功。`);
message.success(`${info.file.name} file uploaded successfully`);
} else if (info.file.status === 'error') {
message.error(`${info.file.name} 上传失败。`);
message.error(`${info.file.name} file upload failed.`);
}
},
};
@ -37,7 +37,7 @@ const props = {
ReactDOM.render(
<Upload {...props}>
<Button type="ghost">
<Icon type="upload" /> 点击上传
<Icon type="upload" /> Click to Upload
</Button>
</Upload>
, mountNode);

View File

@ -27,9 +27,9 @@ const props = {
console.log(info.file, info.fileList);
}
if (info.file.status === 'done') {
message.success(`${info.file.name} 上传成功。`);
message.success(`${info.file.name} file uploaded successfully.`);
} else if (info.file.status === 'error') {
message.error(`${info.file.name} 上传失败。`);
message.error(`${info.file.name} file upload failed.`);
}
},
};