-
Notifications
You must be signed in to change notification settings - Fork 13
Multilingual Script Support: Chinese
Mark Hughes edited this page Aug 30, 2017
·
6 revisions
我们已经完成了中文Wiki的翻译,如果你是中国用户,可以在这里查看:点击这里.
Translation by: mcmaxcn
只要是Java Unicode支持的字符,LegacyFaction都可以支持,你可以在这个网站里找到一个完整的值的列表:
https://docs.oracle.com/javase/8/docs/api/java/lang/Character.UnicodeScript.html
打开你的config.json文件,找到enabledScriptSupport这一段.LegacyFactions默认已经添加了一些变量:
"enabledScriptSupport": {
"BALINESE": false,
"KHMER": false,
"ARABIC": false,
"HAN": false
},
如果要允许巴黎语字符,你需要把默认的值false改成true.再举个例子,如果要允许阿拉伯字符有需要把默认的值false改成true,就像这样:
"enabledScriptSupport": {
"BALINESE": false,
"KHMER": false,
"ARABIC": true,
"HAN": false
},
如果你想要的脚本类型没有列出来,很简单,只要把”BALINESE”换成你想要的脚本类型.举个例子,如果你想用希腊语:
"enabledScriptSupport": {
"GREEK": true,
"KHMER": false,
"ARABIC": false,
"HAN": false
},
改好了之后你可以输入这个指令重新载入设置
/f reload
📚 Looking for documentation? You're in the right place. Start with the items on the right of the page.
🐞 Found a bug? Please open a GitHub Issue.
🆘 Need help? Jump on our discord channel - we'll do our best to help 😄
⭐️ If you like LegacyFactions please leave a review and let others know!