From 63835f19e39accb67959eeaee08fca6d2e355d82 Mon Sep 17 00:00:00 2001 From: Dominique Padiou <5765435+dpad85@users.noreply.github.com> Date: Fri, 23 Aug 2024 14:54:40 +0200 Subject: [PATCH] Fix string resource --- .../phoenix/android/initwallet/restore/RestoreWalletView.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phoenix-android/src/main/kotlin/fr/acinq/phoenix/android/initwallet/restore/RestoreWalletView.kt b/phoenix-android/src/main/kotlin/fr/acinq/phoenix/android/initwallet/restore/RestoreWalletView.kt index 56a391582..fd1f5d177 100644 --- a/phoenix-android/src/main/kotlin/fr/acinq/phoenix/android/initwallet/restore/RestoreWalletView.kt +++ b/phoenix-android/src/main/kotlin/fr/acinq/phoenix/android/initwallet/restore/RestoreWalletView.kt @@ -143,7 +143,7 @@ private fun DisclaimerView( Text(stringResource(R.string.restore_disclaimer_message)) } Checkbox( - text = stringResource(R.string.restore_disclaimer_checkbox), + text = stringResource(R.string.utils_ack), checked = hasCheckedWarning, onCheckedChange = { hasCheckedWarning = it }, )