diff --git a/src/App/Resources/AppResources.Designer.cs b/src/App/Resources/AppResources.Designer.cs
index 598e2ae2b..dcca7fd15 100644
--- a/src/App/Resources/AppResources.Designer.cs
+++ b/src/App/Resources/AppResources.Designer.cs
@@ -2013,6 +2013,15 @@ namespace Bit.App.Resources {
}
}
+ ///
+ /// Looks up a localized string similar to Match Detection.
+ ///
+ public static string MatchDetection {
+ get {
+ return ResourceManager.GetString("MatchDetection", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Matching Items.
///
diff --git a/src/App/Resources/AppResources.resx b/src/App/Resources/AppResources.resx
index 127a9fc75..654da4e7d 100644
--- a/src/App/Resources/AppResources.resx
+++ b/src/App/Resources/AppResources.resx
@@ -1279,4 +1279,8 @@
URI Match Detection
+
+ Match Detection
+ URI match detection for auto-fill.
+
\ No newline at end of file
diff --git a/src/App/Utilities/Helpers.cs b/src/App/Utilities/Helpers.cs
index ce63116da..d7fc50310 100644
--- a/src/App/Utilities/Helpers.cs
+++ b/src/App/Utilities/Helpers.cs
@@ -384,9 +384,9 @@ namespace Bit.App.Utilities
cell.Button1.Command = new Command(async () =>
{
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();
options.Insert(0, AppResources.Default);