Translation fixes

This commit is contained in:
Yair Morgenstern 2019-07-11 21:21:45 +03:00
parent a8b2a4471e
commit e78f408bff
3 changed files with 4 additions and 4 deletions

View File

@ -1584,7 +1584,7 @@
German:"Bevölkerung"
}
"CityStates":{
"City States":{
Italian:"Città-Stato"
}

View File

@ -342,7 +342,7 @@ class CityStats {
newBaseStatList["Buildings"] = cityInfo.cityConstructions.getStats()
newBaseStatList["Policies"] = getStatsFromPolicies(civInfo.policies.adoptedPolicies)
newBaseStatList["National ability"] = getStatsFromNationUnique()
newBaseStatList["CityStates"] = getStatsFromCityStates()
newBaseStatList["City States"] = getStatsFromCityStates()
baseStatList = newBaseStatList
}

View File

@ -191,8 +191,8 @@ class DiplomacyManager() {
trades.remove(trade)
val otherCivTrades = otherCiv().getDiplomacyManager(civInfo).trades
otherCivTrades.removeAll{ it.equals(trade.reverse()) }
civInfo.addNotification("One of our trades with [$otherCivName] has been cut short!".tr(),null, Color.GOLD)
otherCiv().addNotification("One of our trades with [${civInfo.civName}] has been cut short!".tr(),null, Color.GOLD)
civInfo.addNotification("One of our trades with [$otherCivName] has been cut short".tr(),null, Color.GOLD)
otherCiv().addNotification("One of our trades with [${civInfo.civName}] has been cut short".tr(),null, Color.GOLD)
}
}
}