1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-23 11:45:38 +01:00

Match detection string

This commit is contained in:
Kyle Spearrin 2018-03-15 10:37:08 -04:00
parent c95251c903
commit 5326c3aecc
3 changed files with 15 additions and 2 deletions

View File

@ -2013,6 +2013,15 @@ namespace Bit.App.Resources {
} }
} }
/// <summary>
/// Looks up a localized string similar to Match Detection.
/// </summary>
public static string MatchDetection {
get {
return ResourceManager.GetString("MatchDetection", resourceCulture);
}
}
/// <summary> /// <summary>
/// Looks up a localized string similar to Matching Items. /// Looks up a localized string similar to Matching Items.
/// </summary> /// </summary>

View File

@ -1279,4 +1279,8 @@
<data name="URIMatchDetection" xml:space="preserve"> <data name="URIMatchDetection" xml:space="preserve">
<value>URI Match Detection</value> <value>URI Match Detection</value>
</data> </data>
<data name="MatchDetection" xml:space="preserve">
<value>Match Detection</value>
<comment>URI match detection for auto-fill.</comment>
</data>
</root> </root>

View File

@ -384,9 +384,9 @@ namespace Bit.App.Utilities
cell.Button1.Command = new Command(async () => cell.Button1.Command = new Command(async () =>
{ {
var optionsVal = await page.DisplayActionSheet(AppResources.Options, AppResources.Cancel, var optionsVal = await page.DisplayActionSheet(AppResources.Options, AppResources.Cancel,
null, AppResources.Edit, AppResources.Remove); null, AppResources.MatchDetection, AppResources.Remove);
if(optionsVal == AppResources.Edit) if(optionsVal == AppResources.MatchDetection)
{ {
var options = UriMatchOptionsMap.Select(v => v.Value).ToList(); var options = UriMatchOptionsMap.Select(v => v.Value).ToList();
options.Insert(0, AppResources.Default); options.Insert(0, AppResources.Default);