diff --git a/android/assets/jsons/Translations/Notifications.json b/android/assets/jsons/Translations/Notifications.json index b68c6e11d9..3ab1e69226 100644 --- a/android/assets/jsons/Translations/Notifications.json +++ b/android/assets/jsons/Translations/Notifications.json @@ -151,18 +151,13 @@ Japanese:"[construction]の作業が開始されました" } - "Cannot continue work on [construction]":{ - Italian:"Impossibile costruire [construction]" //You didn't translate this, said Smashfanful - 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]の作業を続行できません" + "[cityName] cannot continue work on [construction]":{ + Italian:"[cityName] non può più costruire [construction]" } + + "One of our trades with [nation] has ended": { + Italian:"Un nostro accordo con [nation] è terminato." + }, "[cityname] has expanded its borders!":{ Italian:"[cityname] ha espanso i suoi confini!" diff --git a/android/build.gradle b/android/build.gradle index 308e5cfbe2..e9dcdab845 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -21,8 +21,8 @@ android { applicationId "com.unciv.app" minSdkVersion 14 targetSdkVersion 28 - versionCode 250 - versionName "2.17.0" + versionCode 251 + versionName "2.17.1" } // Had to add this crap for Travis to build, it wanted to sign the app diff --git a/core/src/com/unciv/logic/city/CityConstructions.kt b/core/src/com/unciv/logic/city/CityConstructions.kt index b9c12e4625..a722387c99 100644 --- a/core/src/com/unciv/logic/city/CityConstructions.kt +++ b/core/src/com/unciv/logic/city/CityConstructions.kt @@ -170,7 +170,7 @@ class CityConstructions { currentConstruction = "" if (!construction.isBuildable(this)) { // 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() } else currentConstruction = saveCurrentConstruction