diff --git a/core/src/com/unciv/models/ruleset/Translations.kt b/core/src/com/unciv/models/ruleset/Translations.kt index 4b863f5f5d..fded1634ae 100644 --- a/core/src/com/unciv/models/ruleset/Translations.kt +++ b/core/src/com/unciv/models/ruleset/Translations.kt @@ -77,7 +77,7 @@ class TranslationFileReader(){ fun read(translationFile:String): LinkedHashMap { val translations = LinkedHashMap() val text = Gdx.files.internal(translationFile) - for(line in text.reader().readLines()){ + for(line in text.reader(Charsets.UTF_8.toString()).readLines()){ if(!line.contains(" = ")) continue val splitLine = line.split(" = ") val key = splitLine[0].replace("\\n","\n")