mirror of
https://github.com/bitwarden/android.git
synced 2025-12-11 04:39:19 -06:00
PM-28634: Update Autofill terms to support other languages better (#6226)
This commit is contained in:
parent
9349b235bc
commit
4b951a1df2
@ -261,7 +261,7 @@
|
|||||||
android:name="com.x8bit.bitwarden.AutofillTileService"
|
android:name="com.x8bit.bitwarden.AutofillTileService"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:icon="@drawable/ic_notification"
|
android:icon="@drawable/ic_notification"
|
||||||
android:label="@string/autofill_title"
|
android:label="@string/autofill_verb"
|
||||||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
|
||||||
tools:ignore="MissingClass">
|
tools:ignore="MissingClass">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
|||||||
@ -219,7 +219,7 @@ private fun AutofillSelectionDialog(
|
|||||||
selectionItems = {
|
selectionItems = {
|
||||||
if (AutofillSelectionOption.AUTOFILL in displayItem.autofillSelectionOptions) {
|
if (AutofillSelectionOption.AUTOFILL in displayItem.autofillSelectionOptions) {
|
||||||
BitwardenBasicDialogRow(
|
BitwardenBasicDialogRow(
|
||||||
text = stringResource(id = BitwardenString.autofill_title),
|
text = stringResource(id = BitwardenString.autofill_verb),
|
||||||
onClick = {
|
onClick = {
|
||||||
selectionCallback(
|
selectionCallback(
|
||||||
displayItem,
|
displayItem,
|
||||||
|
|||||||
@ -241,7 +241,7 @@ enum class Settings(
|
|||||||
testTag = "AccountSecuritySettingsButton",
|
testTag = "AccountSecuritySettingsButton",
|
||||||
),
|
),
|
||||||
AUTO_FILL(
|
AUTO_FILL(
|
||||||
text = BitwardenString.autofill_title.asText(),
|
text = BitwardenString.autofill_noun.asText(),
|
||||||
vectorIconRes = BitwardenDrawable.ic_check_mark,
|
vectorIconRes = BitwardenDrawable.ic_check_mark,
|
||||||
testTag = "AutofillSettingsButton",
|
testTag = "AutofillSettingsButton",
|
||||||
),
|
),
|
||||||
|
|||||||
@ -158,7 +158,7 @@ fun AutoFillScreen(
|
|||||||
.nestedScroll(scrollBehavior.nestedScrollConnection),
|
.nestedScroll(scrollBehavior.nestedScrollConnection),
|
||||||
topBar = {
|
topBar = {
|
||||||
BitwardenTopAppBar(
|
BitwardenTopAppBar(
|
||||||
title = stringResource(id = BitwardenString.autofill_title),
|
title = stringResource(id = BitwardenString.autofill_noun),
|
||||||
scrollBehavior = scrollBehavior,
|
scrollBehavior = scrollBehavior,
|
||||||
navigationIcon = rememberVectorPainter(id = BitwardenDrawable.ic_back),
|
navigationIcon = rememberVectorPainter(id = BitwardenDrawable.ic_back),
|
||||||
navigationIconContentDescription = stringResource(id = BitwardenString.back),
|
navigationIconContentDescription = stringResource(id = BitwardenString.back),
|
||||||
@ -196,7 +196,7 @@ private fun AutoFillScreenContent(
|
|||||||
)
|
)
|
||||||
Spacer(modifier = Modifier.height(height = 16.dp))
|
Spacer(modifier = Modifier.height(height = 16.dp))
|
||||||
BitwardenListHeaderText(
|
BitwardenListHeaderText(
|
||||||
label = stringResource(id = BitwardenString.autofill_title),
|
label = stringResource(id = BitwardenString.autofill_noun),
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.standardHorizontalMargin()
|
.standardHorizontalMargin()
|
||||||
|
|||||||
@ -165,7 +165,8 @@
|
|||||||
<string name="search_for_a_login_or_add_a_new_login">Search for a login or add a new login</string>
|
<string name="search_for_a_login_or_add_a_new_login">Search for a login or add a new login</string>
|
||||||
<string name="disabled">Disabled</string>
|
<string name="disabled">Disabled</string>
|
||||||
<string name="bitwarden_autofill_service_alert2">The easiest way to add new logins to your vault is from the Bitwarden Autofill Service. Learn more about using the Bitwarden Autofill Service by navigating to the “Settings” screen.</string>
|
<string name="bitwarden_autofill_service_alert2">The easiest way to add new logins to your vault is from the Bitwarden Autofill Service. Learn more about using the Bitwarden Autofill Service by navigating to the “Settings” screen.</string>
|
||||||
<string name="autofill_title">Autofill</string>
|
<string name="autofill_noun">Autofill</string>
|
||||||
|
<string name="autofill_verb">Autofill</string>
|
||||||
<string name="autofill_or_view">Do you want to autofill or view this item?</string>
|
<string name="autofill_or_view">Do you want to autofill or view this item?</string>
|
||||||
<string name="search">Search</string>
|
<string name="search">Search</string>
|
||||||
<string name="learn_org">Learn about organizations</string>
|
<string name="learn_org">Learn about organizations</string>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user