Fatal Twelve

Fatal Twelve

Not enough ratings
简体中文选项漏翻修复
By 北白川团子
修复部分选项未被翻译的问题
   
Award
Favorite
Favorited
Unfavorite
操作方法
将下方内容复制到一个新建文本文档中,并修改其文件名为cnfix.rpy,注意务必删除原.txt扩展名(不理解的话可搜索关键词“扩展名”)。
init python early hide: import Queue olds_cht = Queue.Queue() original = renpy.translation.add_string_translation def add_string_translation(language, old, new, newloc): if language == 'chinese': olds_cht.put(old) if language == 'simpch': old = olds_cht.get() original(language, old, new, newloc) renpy.translation.add_string_translation = add_string_translation
然后在steam库中右键游戏,管理-浏览本地文件,将文件cnfix.rpy移动到其中的game文件夹里。
问题原因(如果你好奇)
制作组暴力繁体转简体,把用于匹配的日文原文中的汉字也转成了简体,导致无法匹配上。