diff --git a/core/res/src/main/res/values/strings.xml b/core/res/src/main/res/values/strings.xml
index 759c235612..af23d2743e 100644
--- a/core/res/src/main/res/values/strings.xml
+++ b/core/res/src/main/res/values/strings.xml
@@ -403,6 +403,7 @@
Sending
Sent
The server is not available, please try again later
+ Session expired
Share
Share Link
Show less
@@ -1212,7 +1213,9 @@
Organize tokens
Ungroup
%s support
+ Grant permission
Push Notifications are enabled but won\'t work until you allow notifications in your device settings
+ Push Notifications are enabled but won\'t work until you grant permission
Allow notifications
Product news, exclusive offers, and activity reminders.
Offers & Updates
@@ -1856,6 +1859,10 @@
Use USDC for everyday payments
Tangem Pay is temporarily unreachable
Tangem Pay
+ Send USDC Polygon to your account’s address
+ From another wallet or exchange
+ Use crypto from your wallet to top up your payment account
+ Swap from Tangem Wallet
USDC on Polygon network
Click the button below to restore access
Funds from refunded purchases won’t be returned your on-chain Polygon balance or be available for withdrawal, but will stay on your card balance for purchases
@@ -2373,6 +2380,10 @@
Special offer for Yield mode
APY x3
yield_apy_boost_block_activate
+ Activate your bonus
+ Check transaction history for details
+ Yield mode bonus paid out
+ %1$s days left to unlock your bonus
You are eligible for 30 days APY boost, T&C apply, learn more
Activate Yield Mode for the first time and get up to 3x yield for your first 30 days
First month APR bonus
diff --git a/features/tangempay/details/impl/src/main/kotlin/com/tangem/features/tangempay/model/transformers/TangemPayAddFundsUMConverter.kt b/features/tangempay/details/impl/src/main/kotlin/com/tangem/features/tangempay/model/transformers/TangemPayAddFundsUMConverter.kt
index aa2d75e414..cc715b0fa4 100644
--- a/features/tangempay/details/impl/src/main/kotlin/com/tangem/features/tangempay/model/transformers/TangemPayAddFundsUMConverter.kt
+++ b/features/tangempay/details/impl/src/main/kotlin/com/tangem/features/tangempay/model/transformers/TangemPayAddFundsUMConverter.kt
@@ -29,14 +29,14 @@ internal class TangemPayAddFundsUMConverter(
items = persistentListOf(
TangemPayAddFundsItemUM(
iconRes = R.drawable.ic_exchange_vertical_24,
- title = TextReference.Res(R.string.common_exchange),
- description = TextReference.Res(R.string.tangempay_card_details_swap_description),
+ title = TextReference.Res(R.string.tangempay_topup_swap_title),
+ description = TextReference.Res(R.string.tangempay_topup_swap_body),
onClick = { listener.onClickSwap(value) },
),
TangemPayAddFundsItemUM(
iconRes = R.drawable.ic_arrow_down_24,
- title = TextReference.Res(R.string.common_receive),
- description = TextReference.Res(R.string.tangempay_card_details_receive_description),
+ title = TextReference.Res(R.string.tangempay_topup_receive_title),
+ description = TextReference.Res(R.string.tangempay_topup_receive_body),
onClick = { listener.onClickReceive(value) },
),
),