mirror of
https://github.com/yairm210/Unciv.git
synced 2025-09-30 15:30:43 -04:00
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:
parent
2dd32b9a2c
commit
7ee76771f5
@ -145,6 +145,8 @@
|
|||||||
Portuguese:"Automatizar"
|
Portuguese:"Automatizar"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
"Stop automation":{}
|
||||||
|
|
||||||
"Fortify":{
|
"Fortify":{
|
||||||
Italian:"Fortifica"
|
Italian:"Fortifica"
|
||||||
Russian:"Укрепить"
|
Russian:"Укрепить"
|
||||||
@ -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"
|
||||||
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user