diff --git a/core/res/src/main/res/values/strings.xml b/core/res/src/main/res/values/strings.xml index 222d92855d..39efffd2f0 100644 --- a/core/res/src/main/res/values/strings.xml +++ b/core/res/src/main/res/values/strings.xml @@ -1845,12 +1845,13 @@ Refresh Start migration Copy + To keep access to your funds, start the migration according to the official Clore guidelines. Message signing is not supported for this network Unable to sign message. Please try again. According to Clore’s official documentation, all coins received before December 21 will be migrated to Clore (ERC-20 token); coins received after that date will not. A transfer solution is coming — stay tuned. Message Open Claim portal - To keep access to your funds, start the migration according to the official Clore guidelines. + To continue using your Clore tokens, you must complete the token migration according to the information on the Claim Portal. Clore Network Migration Sign Signature diff --git a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/state/components/TokenDetailsNotification.kt b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/state/components/TokenDetailsNotification.kt index b8a992221f..feb6279306 100644 --- a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/state/components/TokenDetailsNotification.kt +++ b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/state/components/TokenDetailsNotification.kt @@ -262,7 +262,7 @@ internal sealed class TokenDetailsNotification(val config: NotificationConfig) { private val onMigrationClick: () -> Unit, ) : Warning( title = resourceReference(id = R.string.warning_clore_migration_title), - subtitle = resourceReference(id = R.string.warning_clore_migration_sheet_description), + subtitle = resourceReference(id = R.string.warning_clore_migration_description), buttonsState = NotificationConfig.ButtonsState.SecondaryButtonConfig( text = resourceReference(id = R.string.warning_clore_migration_button), onClick = onMigrationClick, diff --git a/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/state/model/WalletNotification.kt b/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/state/model/WalletNotification.kt index b0563ac622..5d67cf05e5 100644 --- a/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/state/model/WalletNotification.kt +++ b/features/wallet/impl/src/main/java/com/tangem/feature/wallet/presentation/wallet/state/model/WalletNotification.kt @@ -420,7 +420,7 @@ sealed class WalletNotification(val config: NotificationConfig) { ) : WalletNotification( config = NotificationConfig( title = resourceReference(com.tangem.core.res.R.string.warning_clore_migration_title), - subtitle = resourceReference(com.tangem.core.res.R.string.warning_clore_migration_sheet_description), + subtitle = resourceReference(com.tangem.core.res.R.string.warning_clore_migration_description), iconResId = R.drawable.img_attention_20, buttonsState = NotificationConfig.ButtonsState.SecondaryButtonConfig( text = resourceReference(com.tangem.core.res.R.string.warning_clore_migration_button),