Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -426,9 +426,12 @@ private fun VaultDialogs(
title = stringResource(
id = BitwardenString.enable_browser_autofill_to_keep_filling_passwords,
),
message = pluralStringResource(
id = BitwardenPlurals.your_browser_recently_updated_how_autofill_works,
count = dialogState.browserCount,
message = stringResource(
id = if (dialogState.browserCount > 1) {
BitwardenString.your_browser_recently_updated_how_autofill_works_plural
} else {
BitwardenString.your_browser_recently_updated_how_autofill_works_singular
},
),
confirmButtonText = stringResource(id = BitwardenString.go_to_settings),
dismissButtonText = stringResource(id = BitwardenString.not_now),
Expand Down
6 changes: 2 additions & 4 deletions ui/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1111,10 +1111,8 @@ Do you want to switch to this account?</string>
<item quantity="other">%1$d items have been imported to your vault.</item>
</plurals>
<string name="enable_browser_autofill_to_keep_filling_passwords">Enable browser Autofill to keep filling passwords</string>
<plurals name="your_browser_recently_updated_how_autofill_works">
<item quantity="one">Your browser has recently updated, which has disabled Bitwarden autofill. To continue filling your passwords with Bitwarden, enable browser autofill in autofill settings.</item>
<item quantity="other">Your browsers have recently updated, which has disabled Bitwarden autofill. To continue filling your passwords with Bitwarden, enable browser autofill for all installed browsers in autofill settings.</item>
</plurals>
<string name="your_browser_recently_updated_how_autofill_works_singular">Your browser has recently updated, which has disabled Bitwarden autofill. To continue filling your passwords with Bitwarden, enable browser autofill in autofill settings.</string>
<string name="your_browser_recently_updated_how_autofill_works_plural">Your browsers have recently updated, which has disabled Bitwarden autofill. To continue filling your passwords with Bitwarden, enable browser autofill for all installed browsers in autofill settings.</string>
<string name="not_now">Not now</string>
<string name="import_from_bitwarden">Import from Bitwarden</string>
<string name="select_account">Select account</string>
Expand Down
Loading