From 9cd6f36f1f8f15be053be749b3663d072e3739d7 Mon Sep 17 00:00:00 2001 From: Leopoldthecoder Date: Tue, 6 Dec 2016 16:05:38 +0800 Subject: [PATCH] add translation team members. --- README.md | 13 +++++++++++++ examples/docs/en-US/i18n.md | 5 +++++ examples/docs/en-US/message-box.md | 1 + examples/docs/zh-CN/i18n.md | 5 +++++ examples/docs/zh-CN/message-box.md | 1 + 5 files changed, 25 insertions(+) diff --git a/README.md b/README.md index 77186f60..8ff37541 100644 --- a/README.md +++ b/README.md @@ -66,5 +66,18 @@ We have collected some [frequently asked questions](https://github.com/ElemeFE/e ## Contribution Please make sure to read the [Contributing Guide](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.md) before making a pull request. +## Special Thanks +English documentation is brought to you by SwiftGG Translation Team. Our special thanks go to these fellows: +- [raychenfj](https://github.com/raychenfj) +- [kevin](http://thekevin.cn/) +- [曾小涛](https://github.com/zengxiaotao) +- [湾仔王二](https://github.com/wanzaiwanger) +- [BlooDLine](http://www.ibloodline.com/) +- [陈铭嘉](https://chenmingjia.github.io/) +- [千叶知风](http://mpc6.com/) +- [梁杰](http://numbbbbb.com) +- [Changing](https://github.com/sunzhuo11) +- [mmoaay](https://github.com/mmoaay) + ## LICENSE MIT diff --git a/examples/docs/en-US/i18n.md b/examples/docs/en-US/i18n.md index 8b9ce43f..6ff82140 100644 --- a/examples/docs/en-US/i18n.md +++ b/examples/docs/en-US/i18n.md @@ -51,6 +51,11 @@ Currently Element ships with the following languages:
  • Italian (it)
  • Korean (ko)
  • Japanese (ja)
  • +
  • Dutch (nl)
  • +
  • Vietnamese (vi)
  • +
  • Russian (ru-RU)
  • +
  • Turkish (tr-TR)
  • +
  • Brazilian Portuguese (pt-br)
  • If your target language is not included, you are more than welcome to contribute: just add another language config [here](https://github.com/ElemeFE/element/tree/master/src/locale/lang) and create a pull request. diff --git a/examples/docs/en-US/message-box.md b/examples/docs/en-US/message-box.md index c774b2d2..ffa908af 100644 --- a/examples/docs/en-US/message-box.md +++ b/examples/docs/en-US/message-box.md @@ -245,6 +245,7 @@ The corresponding methods are: `MessageBox`, `MessageBox.alert`, `MessageBox.con | title | title of the MessageBox | string | — | — | | message | content of the MessageBox | string | — | — | | type | message type, used for icon display | string | success/info/
    warning/error | — | +| callback | MessageBox closing callback if you don't prefer Promise | function(action), where action can be 'confirm' or 'cancel' | — | — | | lockScroll | whether to lock body scroll when MessageBox prompts | boolean | — | true | | showCancelButton | whether to show a cancel button | boolean | — | false (true when called with confirm and prompt) | | showConfirmButton | whether to show a confirm button | boolean | — | true | diff --git a/examples/docs/zh-CN/i18n.md b/examples/docs/zh-CN/i18n.md index ce3ad15e..6a47166b 100644 --- a/examples/docs/zh-CN/i18n.md +++ b/examples/docs/zh-CN/i18n.md @@ -63,6 +63,11 @@ Vue.component(Select.name, Select)
  • 意大利语(it)
  • 韩语(ko)
  • 日语(ja)
  • +
  • 荷兰语(nl)
  • +
  • 越南语(vi)
  • +
  • 俄语(ru-RU)
  • +
  • 土耳其语(tr-TR)
  • +
  • 巴西葡萄牙语(pt-br)
  • 如果你需要使用其他的语言,欢迎贡献 PR:只需在 [这里](https://github.com/ElemeFE/element/tree/master/src/locale/lang) 添加一个语言配置文件即可。 diff --git a/examples/docs/zh-CN/message-box.md b/examples/docs/zh-CN/message-box.md index 476c8762..93f187c2 100644 --- a/examples/docs/zh-CN/message-box.md +++ b/examples/docs/zh-CN/message-box.md @@ -242,6 +242,7 @@ import { MessageBox } from 'element-ui'; | title | MessageBox 标题 | string | — | — | | message | MessageBox 消息正文内容 | string | — | — | | type | 消息类型,用于显示图标 | string | success/info/
    warning/error | — | +| callback | 若不使用 Promise,可以使用此参数指定 MessageBox 关闭后的回调 | function(action),action 的值为'confirm'或'cancel' | — | — | | lockScroll | 是否在 MessageBox 出现时将 body 滚动锁定 | boolean | — | true | | showCancelButton | 是否显示取消按钮 | boolean | — | false(以 confirm 和 prompt 方式调用时为 true) | | showConfirmButton | 是否显示确定按钮 | boolean | — | true |