Added some missing translations

aab/apk now doesn't einclude local debug files
Maybe solved resume problem on Chrome OS (see issue 322), needs to be checked
This commit is contained in:
Yair Morgenstern 2018-12-10 14:09:01 +02:00
parent 2dd32b9a2c
commit 7ee76771f5
3 changed files with 28 additions and 0 deletions

View File

@ -144,6 +144,8 @@
Simplified_Chinese:"自动工作"
Portuguese:"Automatizar"
}
"Stop automation":{}
"Fortify":{
Italian:"Fortifica"
@ -2715,6 +2717,8 @@
Portuguese:"Quem sabe o que o futuro reserva?"
}
// Tech uniques
"Improves movement speed on roads":{
Italian:"Migliora la velocità sulle strade"
Russian:"Ускоряет скорость передвижения по дорогам"
@ -2758,6 +2762,12 @@
Simplified_Chinese:"使城市生产转化为金钱"
Portuguese:"Habilita a conversão da produção das cidades para ouro"
}
"Enables embarkation for land units":{}
"Enables embarked units to enter ocean tiles":{}
"Increases embarked movement +1":{
Italian:"+1 movimento delle unità imbarcate"
French:"Améliore le déplacement en embarcation +1"
@ -4011,6 +4021,7 @@
Simplified_Chinese:"只能建在沿海城市"
Portuguese:"Só pode ser construido em cidades costeiras"
}
"+1 food from Ocean and Coast tiles":{}
"The Great Lighthouse":{
Italian:"Grande Faro"

View File

@ -39,9 +39,21 @@ android {
buildTypes {
release {
// Don't add local save files and fonts to release, obviously
aaptOptions {
ignoreAssetsPattern "!SaveFiles:!fonts"
}
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
// Don't add local save files and fonts to release, obviously
aaptOptions {
ignoreAssetsPattern "!SaveFiles:!fonts"
}
}
}
}

View File

@ -82,6 +82,11 @@ class UnCivGame : Game() {
setWorldScreen()
}
// Maybe this will solve the resume error on chrome OS, issue 322? Worth a shot
override fun resize(width: Int, height: Int) {
resume()
}
companion object {
lateinit var Current: UnCivGame
}