mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-24 22:59:34 +07:00
Translate "Sell" in city screen (#8297)
This commit is contained in:
@ -1063,6 +1063,7 @@ In resistance for another [numberOfTurns] turns =
|
||||
We Love The King Day for another [numberOfTurns] turns =
|
||||
Demanding [resource] =
|
||||
Sell for [sellAmount] gold =
|
||||
Sell =
|
||||
Are you sure you want to sell this [building]? =
|
||||
Free =
|
||||
[greatPerson] points =
|
||||
|
@ -95,7 +95,7 @@ class ConstructionInfoTable(val cityScreen: CityScreen): Table() {
|
||||
if (construction is Building && cityConstructions.isBuilt(construction.name)
|
||||
&& construction.isSellable()) {
|
||||
val sellAmount = cityScreen.city.getGoldForSellingBuilding(construction.name)
|
||||
val sellText = "Sell [$sellAmount] " + Fonts.gold
|
||||
val sellText = "{Sell} [$sellAmount] " + Fonts.gold
|
||||
val sellBuildingButton = sellText.toTextButton()
|
||||
row()
|
||||
add(sellBuildingButton).padTop(5f).colspan(2).center()
|
||||
|
Reference in New Issue
Block a user