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

View File

@ -39,9 +39,21 @@ android {
buildTypes { buildTypes {
release { release {
// Don't add local save files and fonts to release, obviously
aaptOptions {
ignoreAssetsPattern "!SaveFiles:!fonts"
}
minifyEnabled false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 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() 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 { companion object {
lateinit var Current: UnCivGame lateinit var Current: UnCivGame
} }