mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-14 01:39:40 +07:00
Changed "free population" in cities to "unassigned population" to be less confusing
This commit is contained in:
@ -862,7 +862,7 @@
|
|||||||
Portuguese:"Bonus de crescimento"
|
Portuguese:"Bonus de crescimento"
|
||||||
}
|
}
|
||||||
|
|
||||||
"Free population":{ // as in "Free population: 2/13
|
"Unassigned population":{ // as in "Unassigned population: 2/13
|
||||||
Italian:"Popolazione libera"
|
Italian:"Popolazione libera"
|
||||||
Russian:"Свободное население"
|
Russian:"Свободное население"
|
||||||
French:"Population libre"
|
French:"Population libre"
|
||||||
|
@ -111,7 +111,7 @@ class CityScreen(internal val city: CityInfo) : CameraStageBaseScreen() {
|
|||||||
table.defaults().pad(5f)
|
table.defaults().pad(5f)
|
||||||
table.background=ImageGetter.getBackground(Color.BLACK.cpy().apply { a=0.8f })
|
table.background=ImageGetter.getBackground(Color.BLACK.cpy().apply { a=0.8f })
|
||||||
val columns = Stats().toHashMap().size
|
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))
|
+city.population.getFreePopulation().toString() + "/" + city.population.population,skin))
|
||||||
.colspan(columns).row()
|
.colspan(columns).row()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user