From 5ef2873135ee9b04cf1cd0bcb2e12d98680ea52d Mon Sep 17 00:00:00 2001 From: Tangem Date: Wed, 28 Feb 2024 16:31:12 +0500 Subject: [PATCH] Updated on 2026-08-14 --- core/res/src/main/res/values-ru/strings.xml | 1 + core/res/src/main/res/values/strings.xml | 1 + .../src/main/java/com/tangem/feature/swap/ui/StateBuilder.kt | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/core/res/src/main/res/values-ru/strings.xml b/core/res/src/main/res/values-ru/strings.xml index 62e755b2c6..5cd4aa90a1 100644 --- a/core/res/src/main/res/values-ru/strings.xml +++ b/core/res/src/main/res/values-ru/strings.xml @@ -544,6 +544,7 @@ Комиссии В сумму включено: \n• комиссия провайдера сервиса\n• комиссия сети за отправку %s от биржи обратно на адрес пользователя В сумму включена комиссия провайдера сервиса. + Сумма отправки будет уменьшена для покрытия выбранного уровня комиссии Недостаточно средств для оплаты комиссии на вашем %1$s кошельке для создания транзакции. Сначала пополните свой %2$s кошелек. Транзакция в процессе… Подождите diff --git a/core/res/src/main/res/values/strings.xml b/core/res/src/main/res/values/strings.xml index 50a26c94a7..a089602733 100644 --- a/core/res/src/main/res/values/strings.xml +++ b/core/res/src/main/res/values/strings.xml @@ -561,6 +561,7 @@ Fees The amount includes:\n• service provider\'s fee\n• network fee for sending %s from the exchange back to the user\'s address. The amount includes the service provider\'s fee. + Sending amount will be reduced to cover the selected fee level Insufficient funds in your %1$s wallet to cover fees. Top up your %2$s wallet first. Transaction in progress... Waiting diff --git a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/StateBuilder.kt b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/StateBuilder.kt index 84aba17a86..b10f504d1e 100644 --- a/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/StateBuilder.kt +++ b/features/swap/presentation/src/main/java/com/tangem/feature/swap/ui/StateBuilder.kt @@ -1241,7 +1241,7 @@ internal class StateBuilder( private fun createNetworkFeeCoverageNotificationConfig(): NotificationConfig { return NotificationConfig( title = resourceReference(R.string.send_network_fee_warning_title), - subtitle = resourceReference(R.string.send_network_fee_warning_content), + subtitle = resourceReference(R.string.swapping_network_fee_warning_content), iconResId = R.drawable.img_attention_20, ) }