Update wording from "Enter recovery key" to "Use recovery key"

This commit is contained in:
Benoit Marty 2026-03-16 17:19:49 +01:00
parent 2141795d59
commit faa97ff2f1
4 changed files with 5 additions and 6 deletions

View file

@ -125,7 +125,7 @@ private fun ChooseSelfVerificationModeButtons(
if (state.buttonsState.data.canEnterRecoveryKey) {
Button(
modifier = Modifier.fillMaxWidth(),
text = stringResource(R.string.screen_session_verification_enter_recovery_key),
text = stringResource(R.string.screen_identity_confirmation_use_recovery_key),
onClick = onUseRecoveryKey,
)
}

View file

@ -60,7 +60,7 @@ class ChooseSessionVerificationModeViewTest {
aChooseSelfVerificationModeState(AsyncData.Success(aButtonsState(canEnterRecoveryKey = true))),
onEnterRecoveryKey = callback,
)
rule.clickOn(R.string.screen_session_verification_enter_recovery_key)
rule.clickOn(R.string.screen_identity_confirmation_use_recovery_key)
}
}