diff --git a/examples/docs/en-US/i18n.md b/examples/docs/en-US/i18n.md
index 7c61b87fe..a59044db0 100644
--- a/examples/docs/en-US/i18n.md
+++ b/examples/docs/en-US/i18n.md
@@ -206,6 +206,7 @@ Currently Element ships with the following languages:
Estonian (ee)
Slovenian (sl)
Arabic (ar)
+ Hebrew (he)
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/zh-CN/i18n.md b/examples/docs/zh-CN/i18n.md
index 3d27379aa..27945dfe4 100644
--- a/examples/docs/zh-CN/i18n.md
+++ b/examples/docs/zh-CN/i18n.md
@@ -218,6 +218,7 @@ ElementLocale.i18n((key, value) => i18n.t(key, value))
爱沙尼亚语(ee)
斯洛文尼亚语(sl)
阿拉伯语(ar)
+ 希伯来语(he)
如果你需要使用其他的语言,欢迎贡献 PR:只需在 [这里](https://github.com/ElemeFE/element/tree/master/src/locale/lang) 添加一个语言配置文件即可。
diff --git a/src/locale/lang/he.js b/src/locale/lang/he.js
index c0d39364c..1ca78514d 100644
--- a/src/locale/lang/he.js
+++ b/src/locale/lang/he.js
@@ -95,10 +95,10 @@ export default {
transfer: {
noMatch: 'אין נתונים מתאימים',
noData: 'ללא נתונים',
- titles: ['רשימה 1', 'רשימה 2'], // to be translated
- filterPlaceholder: 'הקלד', // to be translated
- noCheckedFormat: 'פריטים {total}', // to be translated
- hasCheckedFormat: ' אישור {checked}/{total}' // to be translated
+ titles: ['רשימה 1', 'רשימה 2'],
+ filterPlaceholder: 'הקלד',
+ noCheckedFormat: 'פריטים {total}',
+ hasCheckedFormat: ' אישור {checked}/{total}'
}
}
};