Clearer "owned" resource

This commit is contained in:
Yair Morgenstern 2022-04-17 14:18:16 +03:00
parent 0f70d8360d
commit 06569e6c5f
2 changed files with 2 additions and 2 deletions

View File

@ -297,7 +297,7 @@ Introduction to [nation] =
Declare war on [nation] =
Luxury resources =
Strategic resources =
Owned: [amountOwned] =
Owned by you: [amountOwned] =
# Nation picker

View File

@ -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
}