Changed "free population" in cities to "unassigned population" to be less confusing

This commit is contained in:
Yair Morgenstern 2019-07-19 14:01:16 +03:00
parent 90318ef93b
commit b565489fd5
2 changed files with 2 additions and 2 deletions

View file

@ -862,7 +862,7 @@
Portuguese:"Bonus de crescimento"
}
"Free population":{ // as in "Free population: 2/13
"Unassigned population":{ // as in "Unassigned population: 2/13
Italian:"Popolazione libera"
Russian:"Свободное население"
French:"Population libre"

View file

@ -111,7 +111,7 @@ class CityScreen(internal val city: CityInfo) : CameraStageBaseScreen() {
table.defaults().pad(5f)
table.background=ImageGetter.getBackground(Color.BLACK.cpy().apply { a=0.8f })
val columns = Stats().toHashMap().size
table.add(Label("{Free population}:".tr()
table.add(Label("{Unassigned population}:".tr()
+city.population.getFreePopulation().toString() + "/" + city.population.population,skin))
.colspan(columns).row()