Enabled vietnamese (#7772)

* Enabled vietnamese

* Fixed tests

* Fix tests (again)
This commit is contained in:
Xander Lenstra
2022-09-15 15:02:14 +02:00
committed by GitHub
parent 5ae9b221fc
commit 8fd3b3194e
2 changed files with 5893 additions and 1140 deletions

View File

@ -157,11 +157,9 @@ class Translations : LinkedHashMap<String, TranslationEntry>(){
languages.remove("template")
languages.remove("completionPercentages")
languages.remove("Thai") // Until we figure out what to do with it
languages.remove("Vietnamese") // Until we figure out what to do with it
languages.remove("Thai") // Spacing looks horrible, so disable until we figure out what to do with it
return languages
.filter { Gdx.files.internal("jsons/translations/$it.properties").exists() }
return languages.filter { Gdx.files.internal("jsons/translations/$it.properties").exists() }
}
/** Ensure _all_ languages are loaded, used by [TranslationFileWriter] and `TranslationTests` */