1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 18:43:43 +00:00

new autofill options

This commit is contained in:
Kyle Spearrin
2019-06-03 10:45:27 -04:00
parent 59f1dcca12
commit 8658ebd6bb
6 changed files with 214 additions and 42 deletions

View File

@@ -735,6 +735,24 @@ namespace Bit.App.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Blacklisted URIs.
/// </summary>
public static string BlacklistedUris {
get {
return ResourceManager.GetString("BlacklistedUris", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to URIs that are blacklisted will not offer auto-fill. The list of apps should be comma separated. Ex: &quot;https://twitter.com, androidapp://com.twitter.android&quot;..
/// </summary>
public static string BlacklistedUrisDescription {
get {
return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Brand.
/// </summary>
@@ -1230,6 +1248,24 @@ namespace Bit.App.Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Disable Save Prompt.
/// </summary>
public static string DisableSavePrompt {
get {
return ResourceManager.GetString("DisableSavePrompt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The &quot;Save Prompt&quot; automatically prompts you to save new items to your vault whenever you enter them for the first time..
/// </summary>
public static string DisableSavePromptDescription {
get {
return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Disable Website Icons.
/// </summary>

View File

@@ -1580,4 +1580,16 @@
<value>Black</value>
<comment>The color black</comment>
</data>
<data name="BlacklistedUris" xml:space="preserve">
<value>Blacklisted URIs</value>
</data>
<data name="BlacklistedUrisDescription" xml:space="preserve">
<value>URIs that are blacklisted will not offer auto-fill. The list of apps should be comma separated. Ex: "https://twitter.com, androidapp://com.twitter.android".</value>
</data>
<data name="DisableSavePrompt" xml:space="preserve">
<value>Disable Save Prompt</value>
</data>
<data name="DisableSavePromptDescription" xml:space="preserve">
<value>The "Save Prompt" automatically prompts you to save new items to your vault whenever you enter them for the first time.</value>
</data>
</root>