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:
parent
c95251c903
commit
5326c3aecc
9
src/App/Resources/AppResources.Designer.cs
generated
9
src/App/Resources/AppResources.Designer.cs
generated
@ -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>
|
||||
/// Looks up a localized string similar to Matching Items.
|
||||
/// </summary>
|
||||
|
@ -1279,4 +1279,8 @@
|
||||
<data name="URIMatchDetection" xml:space="preserve">
|
||||
<value>URI Match Detection</value>
|
||||
</data>
|
||||
<data name="MatchDetection" xml:space="preserve">
|
||||
<value>Match Detection</value>
|
||||
<comment>URI match detection for auto-fill.</comment>
|
||||
</data>
|
||||
</root>
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user