diff --git a/android/assets/jsons/translations/template.properties b/android/assets/jsons/translations/template.properties index 696716111e..7bc66b7edb 100644 --- a/android/assets/jsons/translations/template.properties +++ b/android/assets/jsons/translations/template.properties @@ -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 = diff --git a/core/src/com/unciv/ui/cityscreen/ConstructionInfoTable.kt b/core/src/com/unciv/ui/cityscreen/ConstructionInfoTable.kt index 24ea8efb3b..bd16b787c9 100644 --- a/core/src/com/unciv/ui/cityscreen/ConstructionInfoTable.kt +++ b/core/src/com/unciv/ui/cityscreen/ConstructionInfoTable.kt @@ -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()