Minor translation changes
This commit is contained in:
parent
16d8c16dfe
commit
b068e6f88f
3 changed files with 9 additions and 14 deletions
|
@ -151,18 +151,13 @@
|
||||||
Japanese:"[construction]の作業が開始されました"
|
Japanese:"[construction]の作業が開始されました"
|
||||||
}
|
}
|
||||||
|
|
||||||
"Cannot continue work on [construction]":{
|
"[cityName] cannot continue work on [construction]":{
|
||||||
Italian:"Impossibile costruire [construction]" //You didn't translate this, said Smashfanful
|
Italian:"[cityName] non può più costruire [construction]"
|
||||||
Russian:"Не удается продолжить работу над [construction]"
|
|
||||||
French:"Impossible de continuer à travailler sur [construction]"
|
|
||||||
Romanian:"Nu se poate continua munca pentru [construction]"
|
|
||||||
German:"Arbeit an/am [construction] konnte nicht fortgeführt werden"
|
|
||||||
Dutch:"Er kan niet meer veder gewerkt worden aan [construction]"
|
|
||||||
Spanish:"Imposible continuar trabajo en [construction]"
|
|
||||||
Simplified_Chinese:"无法继续建造[construction]"
|
|
||||||
Portuguese:"Não é possivel continuar os trabalhos em [construction]"
|
|
||||||
Japanese:"[construction]の作業を続行できません"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
"One of our trades with [nation] has ended": {
|
||||||
|
Italian:"Un nostro accordo con [nation] è terminato."
|
||||||
|
},
|
||||||
|
|
||||||
"[cityname] has expanded its borders!":{
|
"[cityname] has expanded its borders!":{
|
||||||
Italian:"[cityname] ha espanso i suoi confini!"
|
Italian:"[cityname] ha espanso i suoi confini!"
|
||||||
|
|
|
@ -21,8 +21,8 @@ android {
|
||||||
applicationId "com.unciv.app"
|
applicationId "com.unciv.app"
|
||||||
minSdkVersion 14
|
minSdkVersion 14
|
||||||
targetSdkVersion 28
|
targetSdkVersion 28
|
||||||
versionCode 250
|
versionCode 251
|
||||||
versionName "2.17.0"
|
versionName "2.17.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
// Had to add this crap for Travis to build, it wanted to sign the app
|
// Had to add this crap for Travis to build, it wanted to sign the app
|
||||||
|
|
|
@ -170,7 +170,7 @@ class CityConstructions {
|
||||||
currentConstruction = ""
|
currentConstruction = ""
|
||||||
if (!construction.isBuildable(this)) {
|
if (!construction.isBuildable(this)) {
|
||||||
// We can't build this building anymore! (Wonder has been built / resource is gone / etc.)
|
// We can't build this building anymore! (Wonder has been built / resource is gone / etc.)
|
||||||
cityInfo.civInfo.addNotification("[${cityInfo.name}] Cannot continue work on [$saveCurrentConstruction]", cityInfo.location, Color.BROWN)
|
cityInfo.civInfo.addNotification("[${cityInfo.name}] cannot continue work on [$saveCurrentConstruction]", cityInfo.location, Color.BROWN)
|
||||||
chooseNextConstruction()
|
chooseNextConstruction()
|
||||||
} else
|
} else
|
||||||
currentConstruction = saveCurrentConstruction
|
currentConstruction = saveCurrentConstruction
|
||||||
|
|
Loading…
Reference in a new issue