diff --git a/android/assets/jsons/Nations.json b/android/assets/jsons/Nations.json index c349e0618f..a17588702f 100644 --- a/android/assets/jsons/Nations.json +++ b/android/assets/jsons/Nations.json @@ -893,6 +893,8 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"You fiend! History shall remember this!" + outerColor:[0, 0, 0], innerColor:[185,132,66], @@ -906,6 +908,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"And so the flower of Florence falls to barbaric hands..." outerColor:[0, 0, 0], innerColor:[62,197,252], @@ -920,6 +923,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"We shall have our revenge." outerColor:[0, 0, 0], innerColor:[211, 220, 103], @@ -934,6 +938,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"They will write songs of this.... pray that they shall be in your favor." outerColor:[0, 0, 0], innerColor:[194,97,255], @@ -947,6 +952,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"Hah! A fine victory." outerColor:[0, 0, 0], innerColor:[211,180,113], @@ -961,6 +967,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"We never fully trusted you from the start." outerColor:[0, 0, 0], innerColor:[255,97,255], @@ -975,6 +982,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"Why must you do such a thing?" outerColor:[0, 0, 0], innerColor:[255,69,0], @@ -989,6 +997,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"How barbaric. Those who live by the sword shall perish by the sword." outerColor:[0, 0, 0], innerColor:[45,255,86], @@ -1003,6 +1012,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"If our legacy continues, you will never have truly won." outerColor:[0, 0, 0], innerColor:[18,178,210], @@ -1016,6 +1026,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"I guess you weren't here for the sprouts after all..." outerColor:[0, 0, 0], innerColor:[153,255,51], @@ -1029,6 +1040,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"Unacceptable!" outerColor:[0, 0, 0], innerColor:[153,0,76], @@ -1042,6 +1054,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"What a fine battle! Sidon is willing to serve you!" outerColor:[0, 0, 0], innerColor:[250,128,114], @@ -1055,6 +1068,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"How could we fall to the likes of you?!" outerColor:[0, 0, 0], innerColor:[102,0,51], @@ -1068,6 +1082,7 @@ declaringWar:"You leave us no choice. War it must be.", attacked:"Very well, this shall not be forgotten.", afterPeace:"May peace forever bless our lands.", + defeated:"There is no dishonor in losing to a worthier foe." outerColor:[0, 0, 0], innerColor:[0,102,102], diff --git a/android/build.gradle b/android/build.gradle index 9011b690f9..03f9c5d5d1 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -21,8 +21,8 @@ android { applicationId "com.unciv.app" minSdkVersion 14 targetSdkVersion 28 - versionCode 281 - versionName "2.19.0" + versionCode 282 + versionName "2.19.1" } // Had to add this crap for Travis to build, it wanted to sign the app diff --git a/core/src/com/unciv/ui/NewGameScreen.kt b/core/src/com/unciv/ui/NewGameScreen.kt index 60f5f30fcf..4df712651b 100644 --- a/core/src/com/unciv/ui/NewGameScreen.kt +++ b/core/src/com/unciv/ui/NewGameScreen.kt @@ -95,8 +95,8 @@ class NewGameScreen: PickerScreen(){ } catch (exception:Exception){ val popup = PopupTable(this) - popup.addGoodSizedLabel("It looks like we can't make a map with the parameters you requested!").row() - popup.addGoodSizedLabel("Maybe you put too many players into too small a map?").row() + popup.addGoodSizedLabel("It looks like we can't make a map with the parameters you requested!".tr()).row() + popup.addGoodSizedLabel("Maybe you put too many players into too small a map?".tr()).row() popup.open() } }