mirror of
https://github.com/bitwarden/android.git
synced 2025-12-10 08:35:05 -06:00
Fix plurals issue for Crowdin (#6016)
This commit is contained in:
parent
5543bc6ab5
commit
4161020e6c
@ -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),
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user