From 06569e6c5fe62abde758dadb323c2c57b142a75b Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Sun, 17 Apr 2022 14:18:16 +0300 Subject: [PATCH] Clearer "owned" resource --- android/assets/jsons/translations/template.properties | 2 +- core/src/com/unciv/ui/worldscreen/TradePopup.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/android/assets/jsons/translations/template.properties b/android/assets/jsons/translations/template.properties index 6e71773b3b..4b6e2aadcc 100644 --- a/android/assets/jsons/translations/template.properties +++ b/android/assets/jsons/translations/template.properties @@ -297,7 +297,7 @@ Introduction to [nation] = Declare war on [nation] = Luxury resources = Strategic resources = -Owned: [amountOwned] = +Owned by you: [amountOwned] = # Nation picker diff --git a/core/src/com/unciv/ui/worldscreen/TradePopup.kt b/core/src/com/unciv/ui/worldscreen/TradePopup.kt index f78f8ed235..79e7b1068e 100644 --- a/core/src/com/unciv/ui/worldscreen/TradePopup.kt +++ b/core/src/com/unciv/ui/worldscreen/TradePopup.kt @@ -54,7 +54,7 @@ class TradePopup(worldScreen: WorldScreen): Popup(worldScreen){ fun getOfferText(offer:TradeOffer): String { var tradeText = offer.getOfferText() if (offer.type == TradeType.Luxury_Resource || offer.type == TradeType.Strategic_Resource) - tradeText += "\n" + "Owned: [${ourResources[offer.name]}]".tr() + tradeText += "\n" + "Owned by you: [${ourResources[offer.name]}]".tr() return tradeText }