Localization for Simplified Chinese (zh-CN) (#6)

* Localization for zh_CN

* Rename zh_CN to zh-CN

* Remove default language

* Remove characters written by accident

* Fix translation

* Fix 'block_state_property'
This commit is contained in:
SPGoding
2019-08-09 21:55:22 +08:00
committed by Misode
parent f0ad5433bc
commit 5ada662b29
2 changed files with 287 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
const lngs = [
['en', 'English']
['en', 'English'],
['zh-CN', '简体中文']
]
lngs.forEach(v => $('#lngList').append(`<a class="dropdown-item" onclick="changeLng('${v[0]}')">${v[1]}</a>`))