RPMTW Platform

RPMTW Platform

259k Downloads

有時自動翻譯功能會將中文的物品名稱翻譯成英文

SiongSng opened this issue · 2 comments

commented

臨時解決方案:
請試試看把自動機器翻譯那功能關掉,先用手動,然後到 %temp% 找到 com.rpmtw.rpmtw_platform_mod 這資料夾刪除,然後重開遊戲。若問題沒有解決,則表示您系統的語系不是「繁體中文(台灣)」,或是地區設定不是在「台灣」,所以就會這樣。

commented

經查證,此問題應該已經在 5698188 被修復,只是尚未發布

commented

此問題在部分情況下仍存在,猜測是在這部分沒正確辨識語言

fun getSystem(): GameLanguage {
val locale = Locale.getDefault()
val countryCode = locale.country
val languageCode = locale.language
return findLanguage(countryCode) ?: findLanguage(languageCode) ?: English
}