add stuff for simplified chinese translation

This commit is contained in:
2025-06-07 14:00:53 +02:00
parent fe35140a54
commit e0f946a3b9
9 changed files with 17 additions and 7 deletions

View File

@ -1,7 +1,7 @@
// script.js // script.js
// language and mode management // language and mode management
let languages = ["en", "de", "fr", "es", "pt-br", "fa"] let languages = ["en", "de", "fr", "es", "pt-br", "fa", "zh"]
let rtlLanguages = ["fa"] let rtlLanguages = ["fa"]
let currentLanguage = localStorage.getItem("language") let currentLanguage = localStorage.getItem("language")
if (!currentLanguage) { if (!currentLanguage) {

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 MiB

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 MiB

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

@ -59,15 +59,24 @@
"sort-by": "排序方式", "sort-by": "排序方式",
"sort-by-comfort": "便捷性", "sort-by-comfort": "便捷性",
"sort-by-best-privacy": "最佳隐私性", "sort-by-best-privacy": "最佳隐私性",
"atomic-swaps": "原子交换",
"centralized-exchanges": "中心化交易所", "centralized-exchanges": "中心化交易所",
"decentralized-exchanges": "去中心化交易所", "decentralized-exchanges": "去中心化交易所",
"no-kyc-services": "无KYC服务",
"kyc-light": "轻量级KYC",
"glossary": "术语表", "glossary": "术语表",
"know-your-customer": "客户身份识别KYC指企业对客户进行身份识别以实施监控", "glossary-term-kyc": "KYC",
"dont-know-your-customer": "免客户身份识别DKYC企业无需对客户进行身份识别", "glossary-desc-kyc": "Know Your CustomerKYC公司对客户进行身份验证以监控其活动",
"know-your-customer-light": "轻量级客户身份识别KYCL指企业无需对客户进行额外身份识别", "glossary-term-no-kyc": "无KYC服务",
"fiat": "法定货币,如欧元、美元、瑞士法郎等", "glossary-desc-no-kyc": "Don't Know Your CustomerNo KYC指公司不进行客户身份验证",
"cex": "中心化交易所CEX由企业运营且客户需验证身份的交易所", "glossary-term-kyc-light": "KYC轻量级",
"dex": "去中心化交易所DEX由用户网络运营且客户无需验证身份的交易所", "glossary-desc-kyc-light": "轻量级KYC指公司不进行额外的客户身份验证",
"glossary-term-fiat": "法币",
"glossary-desc-fiat": "法定货币,指由政府发行的货币,如美元、欧元等",
"glossary-term-cex": "CEX",
"glossary-desc-cex": "中心化交易所,指由单一实体运营的交易平台,用户需要进行身份验证",
"glossary-term-dex": "DEX",
"glossary-desc-dex": "去中心化交易所,指无需中央控制的交易平台,用户可以直接进行点对点交易",
"copyright": "门罗币社区项目<br />一个由门罗币社区发起、服务于社区的独立非商业项目。" "copyright": "门罗币社区项目<br />一个由门罗币社区发起、服务于社区的独立非商业项目。"
} }
} }

View File

@ -28,6 +28,7 @@
<option value="es">Español</option> <option value="es">Español</option>
<option value="pt-br">Português Brasileiro</option> <option value="pt-br">Português Brasileiro</option>
<option value="fa">فارسی</option> <option value="fa">فارسی</option>
<option value="zh">中文</option>
</select> </select>
</div> </div>