Update missing password manager dialog copy.

Updates the copy of the dialog that shows when attempting to save a backup key, but there is no credential manager configured on the device that supports saving passwords.
This commit is contained in:
jeffrey-signal
2025-06-03 10:32:51 -04:00
committed by Cody Henthorne
parent d6dd2cc633
commit 17bfb118d8
2 changed files with 3 additions and 5 deletions

View File

@@ -218,7 +218,7 @@ fun MessageBackupsKeyRecordScreen(
Dialogs.SimpleMessageDialog(
title = stringResource(R.string.MessageBackupsKeyRecordScreen__missing_password_manager_title),
message = stringResource(R.string.MessageBackupsKeyRecordScreen__missing_password_manager_message),
dismiss = stringResource(R.string.MessageBackupsKeyRecordScreen__dismiss),
dismiss = stringResource(android.R.string.ok),
onDismiss = { onSaveToPasswordManagerComplete(CredentialManagerResult.UserCanceled) }
)
}