|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
×
用ren‘py生成翻译文件翻译后发现翻译的文字全变成口口了
在screens.rpy文件添加了如下代码
vbox:
style_prefix "check"
label _("Skip")
textbutton _("Unseen Text") action Preference("skip", "toggle")
textbutton _("After Choices") action Preference("after choices", "toggle")
textbutton _("Transitions") action InvertSelected(Preference("transitions", "toggle"))
vbox:
style_prefix "radio"
label _("Language")
# Real languages should go alphabetical order by English name.
textbutton _("English") text_font "DejaVuSans.ttf" action Language(None)
textbutton _("CHS") text_font "STXINGKA.ttf" action Language("SimplifiedChinese")
然后切换成中午chs的时候全部文字变成口口口 已经把字体文件放入game文件夹里了 那里出错了么 求助
|
|