From 31d1a2e083a58a1a503c6435ee0b08fd192e517b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81=20Bispo?= Date: Sat, 4 Jun 2022 20:19:03 +0100 Subject: [PATCH] enable context loading and vm init --- .../Authenticator/AuthenticatorPage.xaml | 4 + .../Authenticator/AuthenticatorPage.xaml.cs | 38 +- .../AuthenticatorPageViewModel.cs | 8 +- src/App/Pages/TabsPage.cs | 3 +- src/App/Resources/AppResources.cs.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.da.Designer.cs | 1 + src/App/Resources/AppResources.de.Designer.cs | 1 + src/App/Resources/AppResources.es.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.fi.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.fr.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.hi.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.hr.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.hu.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.id.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.it.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.ja.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.nl.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.pl.Designer.cs | 3890 +++++++++++++++++ .../Resources/AppResources.pt-BR.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.ro.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.ru.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.sk.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.sv.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.th.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.tr.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.uk.Designer.cs | 3890 +++++++++++++++++ src/App/Resources/AppResources.vi.Designer.cs | 3890 +++++++++++++++++ .../AppResources.zh-Hant.Designer.cs | 3890 +++++++++++++++++ 28 files changed, 85611 insertions(+), 24 deletions(-) diff --git a/src/App/Pages/Authenticator/AuthenticatorPage.xaml b/src/App/Pages/Authenticator/AuthenticatorPage.xaml index 6632216c8..21eac5abd 100644 --- a/src/App/Pages/Authenticator/AuthenticatorPage.xaml +++ b/src/App/Pages/Authenticator/AuthenticatorPage.xaml @@ -9,6 +9,10 @@ x:DataType="authenticator:AuthenticatorPageViewModel" Title="{Binding PageTitle}"> + + + + selectAction = null, TabsPage tabsPage = null) { - //_tabsPage = tabsPage; + _tabsPage = tabsPage; InitializeComponent(); - //_broadcasterService = ServiceContainer.Resolve("broadcasterService"); + _broadcasterService = ServiceContainer.Resolve("broadcasterService"); _vm = BindingContext as AuthenticatorPageViewModel; - //_vm.Page = this; - //_fromTabPage = fromTabPage; - //_selectAction = selectAction; + _vm.Page = this; + _fromTabPage = fromTabPage; + _selectAction = selectAction; //var isIos = Device.RuntimePlatform == Device.iOS; //if (selectAction != null) //{ @@ -64,20 +64,20 @@ namespace Bit.App.Pages.Authenticator protected async override void OnAppearing() { base.OnAppearing(); - //if (!_fromTabPage) - //{ - // await InitAsync(); - //} - //_broadcasterService.Subscribe(nameof(GeneratorPage), async (message) => - //{ - // if (message.Command == "updatedTheme") - // { - // Device.BeginInvokeOnMainThread(() => - // { - // //_vm.RedrawPassword(); - // }); - // } - //}); + if (!_fromTabPage) + { + await InitAsync(); + } + _broadcasterService.Subscribe(nameof(GeneratorPage), async (message) => + { + if (message.Command == "updatedTheme") + { + Device.BeginInvokeOnMainThread(() => + { + //_vm.RedrawPassword(); + }); + } + }); } protected override void OnDisappearing() diff --git a/src/App/Pages/Authenticator/AuthenticatorPageViewModel.cs b/src/App/Pages/Authenticator/AuthenticatorPageViewModel.cs index 1876f8980..729b582fc 100644 --- a/src/App/Pages/Authenticator/AuthenticatorPageViewModel.cs +++ b/src/App/Pages/Authenticator/AuthenticatorPageViewModel.cs @@ -13,7 +13,7 @@ namespace Bit.App.Pages.Authenticator private readonly IClipboardService _clipboardService; private bool _showList = true; private bool _refreshing; - private readonly IUserService _userService; + private readonly IStateService _stateService; private readonly IVaultTimeoutService _vaultTimeoutService; #endregion @@ -22,7 +22,7 @@ namespace Bit.App.Pages.Authenticator public AuthenticatorPageViewModel() { - _userService = ServiceContainer.Resolve("userService"); + _stateService = ServiceContainer.Resolve("stateService"); _vaultTimeoutService = ServiceContainer.Resolve("vaultTimeoutService"); } @@ -30,7 +30,7 @@ namespace Bit.App.Pages.Authenticator #region Methods - public async Task InitAsync() { } + public async Task InitAsync() { await LoadAsync(); } public async Task CopyAsync() { @@ -41,7 +41,7 @@ namespace Bit.App.Pages.Authenticator public async Task LoadAsync() { - var authed = await _userService.IsAuthenticatedAsync(); + var authed = await _stateService.IsAuthenticatedAsync(); if (!authed) { return; diff --git a/src/App/Pages/TabsPage.cs b/src/App/Pages/TabsPage.cs index 8732e8c53..568b7d59b 100644 --- a/src/App/Pages/TabsPage.cs +++ b/src/App/Pages/TabsPage.cs @@ -2,6 +2,7 @@ using System.Threading.Tasks; using Bit.App.Effects; using Bit.App.Models; +using Bit.App.Pages.Authenticator; using Bit.App.Resources; using Bit.Core.Abstractions; using Bit.Core.Models.Data; @@ -36,7 +37,7 @@ namespace Bit.App.Pages Children.Add(_groupingsPage); - _authenticatorPage = new NavigationPage(new Authenticator.AuthenticatorPage(true, null, this)) + _authenticatorPage = new NavigationPage(new AuthenticatorPage(true, null, this)) { Title = AppResources.Authenticator, IconImageSource = "info.png" diff --git a/src/App/Resources/AppResources.cs.Designer.cs b/src/App/Resources/AppResources.cs.Designer.cs index e69de29bb..e2a940d4e 100644 --- a/src/App/Resources/AppResources.cs.Designer.cs +++ b/src/App/Resources/AppResources.cs.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_cs { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_cs() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.cs", typeof(AppResources_cs).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.da.Designer.cs b/src/App/Resources/AppResources.da.Designer.cs index e69de29bb..5f282702b 100644 --- a/src/App/Resources/AppResources.da.Designer.cs +++ b/src/App/Resources/AppResources.da.Designer.cs @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/App/Resources/AppResources.de.Designer.cs b/src/App/Resources/AppResources.de.Designer.cs index e69de29bb..5f282702b 100644 --- a/src/App/Resources/AppResources.de.Designer.cs +++ b/src/App/Resources/AppResources.de.Designer.cs @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/App/Resources/AppResources.es.Designer.cs b/src/App/Resources/AppResources.es.Designer.cs index e69de29bb..775afc1ab 100644 --- a/src/App/Resources/AppResources.es.Designer.cs +++ b/src/App/Resources/AppResources.es.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + public class AppResources_es { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_es() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.es", typeof(AppResources_es).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + public static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + public static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + public static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + public static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + public static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + public static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + public static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + public static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + public static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + public static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + public static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + public static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + public static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + public static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + public static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + public static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + public static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + public static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + public static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + public static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + public static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + public static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + public static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + public static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + public static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + public static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + public static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + public static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + public static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + public static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + public static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + public static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + public static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + public static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + public static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + public static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + public static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + public static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + public static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + public static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + public static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + public static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + public static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + public static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + public static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + public static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + public static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + public static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + public static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + public static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + public static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + public static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + public static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + public static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + public static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + public static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + public static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + public static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + public static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + public static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + public static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + public static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + public static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + public static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + public static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + public static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + public static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + public static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + public static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + public static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + public static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + public static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + public static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + public static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + public static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + public static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + public static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + public static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + public static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + public static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + public static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + public static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + public static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + public static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + public static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + public static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + public static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + public static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + public static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + public static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + public static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + public static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + public static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + public static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + public static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + public static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + public static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + public static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + public static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + public static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + public static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + public static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + public static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + public static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + public static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + public static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + public static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + public static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + public static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + public static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + public static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + public static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + public static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + public static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + public static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + public static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + public static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + public static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + public static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + public static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + public static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + public static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + public static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + public static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + public static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + public static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + public static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + public static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + public static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + public static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + public static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + public static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + public static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + public static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + public static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + public static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + public static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + public static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + public static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + public static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + public static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + public static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + public static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + public static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + public static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + public static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + public static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + public static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + public static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + public static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + public static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + public static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + public static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + public static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + public static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + public static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + public static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + public static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + public static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + public static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + public static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + public static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + public static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + public static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + public static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + public static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + public static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + public static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + public static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + public static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + public static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + public static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + public static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + public static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + public static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + public static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + public static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + public static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + public static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + public static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + public static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + public static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + public static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + public static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + public static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + public static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + public static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + public static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + public static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + public static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + public static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + public static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + public static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + public static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + public static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + public static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + public static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + public static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + public static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + public static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + public static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + public static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + public static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + public static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + public static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + public static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + public static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + public static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + public static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + public static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + public static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + public static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + public static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + public static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + public static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + public static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + public static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + public static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + public static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + public static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + public static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + public static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + public static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + public static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + public static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + public static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + public static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + public static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + public static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + public static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + public static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + public static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + public static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + public static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + public static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + public static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + public static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + public static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + public static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + public static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + public static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + public static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + public static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + public static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + public static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + public static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + public static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + public static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + public static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + public static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + public static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + public static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + public static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + public static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + public static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + public static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + public static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + public static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + public static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + public static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + public static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + public static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + public static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + public static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + public static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + public static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + public static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + public static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + public static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + public static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + public static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + public static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + public static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + public static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + public static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + public static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + public static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + public static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + public static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + public static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + public static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + public static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + public static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + public static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + public static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + public static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + public static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + public static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + public static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + public static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + public static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + public static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + public static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + public static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + public static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + public static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + public static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + public static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + public static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + public static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + public static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + public static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + public static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + public static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + public static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + public static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + public static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + public static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + public static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + public static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + public static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + public static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + public static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + public static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + public static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + public static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + public static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + public static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + public static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + public static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + public static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + public static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + public static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + public static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + public static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + public static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + public static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + public static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + public static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + public static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + public static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + public static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + public static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + public static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + public static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + public static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + public static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + public static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + public static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + public static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + public static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + public static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + public static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + public static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + public static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + public static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + public static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + public static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + public static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + public static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + public static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + public static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + public static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + public static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + public static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + public static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + public static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + public static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + public static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + public static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + public static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + public static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + public static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + public static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + public static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + public static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + public static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + public static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + public static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + public static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + public static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + public static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + public static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + public static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + public static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + public static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + public static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + public static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + public static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + public static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + public static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + public static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + public static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + public static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + public static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + public static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + public static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + public static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + public static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + public static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + public static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + public static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + public static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + public static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + public static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + public static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + public static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + public static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + public static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + public static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + public static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + public static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + public static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + public static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + public static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + public static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + public static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + public static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + public static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + public static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + public static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + public static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + public static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + public static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + public static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + public static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + public static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + public static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + public static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + public static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + public static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + public static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + public static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + public static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + public static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + public static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + public static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + public static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + public static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + public static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + public static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + public static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + public static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + public static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + public static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + public static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + public static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + public static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + public static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + public static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + public static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + public static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + public static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + public static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + public static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + public static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + public static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + public static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + public static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + public static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + public static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + public static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + public static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + public static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + public static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + public static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + public static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + public static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + public static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + public static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + public static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + public static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + public static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + public static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + public static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + public static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + public static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + public static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + public static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + public static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + public static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + public static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + public static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + public static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + public static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + public static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + public static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + public static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + public static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + public static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + public static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + public static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + public static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + public static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + public static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + public static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + public static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + public static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + public static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + public static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + public static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + public static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + public static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + public static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + public static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + public static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + public static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + public static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + public static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + public static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + public static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + public static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + public static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + public static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + public static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + public static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + public static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + public static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + public static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + public static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + public static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + public static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + public static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + public static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + public static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + public static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + public static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + public static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + public static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + public static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + public static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + public static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + public static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + public static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + public static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + public static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + public static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + public static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + public static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + public static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + public static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + public static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + public static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + public static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + public static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + public static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + public static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + public static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + public static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + public static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + public static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + public static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + public static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + public static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + public static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + public static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + public static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + public static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + public static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + public static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + public static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + public static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + public static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + public static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + public static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + public static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + public static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + public static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + public static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + public static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + public static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + public static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + public static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + public static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + public static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + public static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + public static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + public static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + public static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + public static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + public static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + public static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + public static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + public static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + public static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + public static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + public static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + public static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + public static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + public static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + public static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + public static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + public static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + public static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + public static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + public static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + public static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + public static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + public static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + public static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + public static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + public static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + public static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + public static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + public static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + public static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + public static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + public static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + public static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + public static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + public static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + public static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + public static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + public static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + public static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + public static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + public static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + public static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + public static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + public static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + public static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + public static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + public static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + public static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + public static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + public static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + public static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + public static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + public static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + public static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + public static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + public static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + public static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + public static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + public static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + public static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + public static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + public static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + public static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + public static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + public static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + public static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + public static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + public static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + public static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + public static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + public static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + public static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + public static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + public static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + public static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.fi.Designer.cs b/src/App/Resources/AppResources.fi.Designer.cs index e69de29bb..411e32d72 100644 --- a/src/App/Resources/AppResources.fi.Designer.cs +++ b/src/App/Resources/AppResources.fi.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_fi { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_fi() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.fi", typeof(AppResources_fi).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.fr.Designer.cs b/src/App/Resources/AppResources.fr.Designer.cs index e69de29bb..08fafd50d 100644 --- a/src/App/Resources/AppResources.fr.Designer.cs +++ b/src/App/Resources/AppResources.fr.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_fr { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_fr() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.fr", typeof(AppResources_fr).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.hi.Designer.cs b/src/App/Resources/AppResources.hi.Designer.cs index e69de29bb..59b74e640 100644 --- a/src/App/Resources/AppResources.hi.Designer.cs +++ b/src/App/Resources/AppResources.hi.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_hi { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_hi() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.hi", typeof(AppResources_hi).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.hr.Designer.cs b/src/App/Resources/AppResources.hr.Designer.cs index e69de29bb..9e3fa33fc 100644 --- a/src/App/Resources/AppResources.hr.Designer.cs +++ b/src/App/Resources/AppResources.hr.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_hr { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_hr() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.hr", typeof(AppResources_hr).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.hu.Designer.cs b/src/App/Resources/AppResources.hu.Designer.cs index e69de29bb..ddaa7ff7e 100644 --- a/src/App/Resources/AppResources.hu.Designer.cs +++ b/src/App/Resources/AppResources.hu.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_hu { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_hu() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.hu", typeof(AppResources_hu).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.id.Designer.cs b/src/App/Resources/AppResources.id.Designer.cs index e69de29bb..381001646 100644 --- a/src/App/Resources/AppResources.id.Designer.cs +++ b/src/App/Resources/AppResources.id.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_id { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_id() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.id", typeof(AppResources_id).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.it.Designer.cs b/src/App/Resources/AppResources.it.Designer.cs index e69de29bb..96c85d544 100644 --- a/src/App/Resources/AppResources.it.Designer.cs +++ b/src/App/Resources/AppResources.it.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_it { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_it() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.it", typeof(AppResources_it).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.ja.Designer.cs b/src/App/Resources/AppResources.ja.Designer.cs index e69de29bb..e7b3bc116 100644 --- a/src/App/Resources/AppResources.ja.Designer.cs +++ b/src/App/Resources/AppResources.ja.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_ja { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_ja() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.ja", typeof(AppResources_ja).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.nl.Designer.cs b/src/App/Resources/AppResources.nl.Designer.cs index e69de29bb..15c5800a7 100644 --- a/src/App/Resources/AppResources.nl.Designer.cs +++ b/src/App/Resources/AppResources.nl.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_nl { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_nl() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.nl", typeof(AppResources_nl).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.pl.Designer.cs b/src/App/Resources/AppResources.pl.Designer.cs index e69de29bb..5b85109ce 100644 --- a/src/App/Resources/AppResources.pl.Designer.cs +++ b/src/App/Resources/AppResources.pl.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_pl { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_pl() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.pl", typeof(AppResources_pl).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.pt-BR.Designer.cs b/src/App/Resources/AppResources.pt-BR.Designer.cs index e69de29bb..897737e3b 100644 --- a/src/App/Resources/AppResources.pt-BR.Designer.cs +++ b/src/App/Resources/AppResources.pt-BR.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_pt_BR { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_pt_BR() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.pt-BR", typeof(AppResources_pt_BR).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.ro.Designer.cs b/src/App/Resources/AppResources.ro.Designer.cs index e69de29bb..cebaf5a2e 100644 --- a/src/App/Resources/AppResources.ro.Designer.cs +++ b/src/App/Resources/AppResources.ro.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_ro { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_ro() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.ro", typeof(AppResources_ro).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.ru.Designer.cs b/src/App/Resources/AppResources.ru.Designer.cs index e69de29bb..531013f8d 100644 --- a/src/App/Resources/AppResources.ru.Designer.cs +++ b/src/App/Resources/AppResources.ru.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_ru { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_ru() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.ru", typeof(AppResources_ru).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.sk.Designer.cs b/src/App/Resources/AppResources.sk.Designer.cs index e69de29bb..d060c04f8 100644 --- a/src/App/Resources/AppResources.sk.Designer.cs +++ b/src/App/Resources/AppResources.sk.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_sk { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_sk() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.sk", typeof(AppResources_sk).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.sv.Designer.cs b/src/App/Resources/AppResources.sv.Designer.cs index e69de29bb..3896792f4 100644 --- a/src/App/Resources/AppResources.sv.Designer.cs +++ b/src/App/Resources/AppResources.sv.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_sv { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_sv() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.sv", typeof(AppResources_sv).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.th.Designer.cs b/src/App/Resources/AppResources.th.Designer.cs index e69de29bb..de9e32726 100644 --- a/src/App/Resources/AppResources.th.Designer.cs +++ b/src/App/Resources/AppResources.th.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_th { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_th() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.th", typeof(AppResources_th).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.tr.Designer.cs b/src/App/Resources/AppResources.tr.Designer.cs index e69de29bb..833c282d9 100644 --- a/src/App/Resources/AppResources.tr.Designer.cs +++ b/src/App/Resources/AppResources.tr.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_tr { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_tr() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.tr", typeof(AppResources_tr).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.uk.Designer.cs b/src/App/Resources/AppResources.uk.Designer.cs index e69de29bb..381f5e8aa 100644 --- a/src/App/Resources/AppResources.uk.Designer.cs +++ b/src/App/Resources/AppResources.uk.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_uk { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_uk() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.uk", typeof(AppResources_uk).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.vi.Designer.cs b/src/App/Resources/AppResources.vi.Designer.cs index e69de29bb..9533f5963 100644 --- a/src/App/Resources/AppResources.vi.Designer.cs +++ b/src/App/Resources/AppResources.vi.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_vi { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_vi() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.vi", typeof(AppResources_vi).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +} diff --git a/src/App/Resources/AppResources.zh-Hant.Designer.cs b/src/App/Resources/AppResources.zh-Hant.Designer.cs index e69de29bb..2e49cd273 100644 --- a/src/App/Resources/AppResources.zh-Hant.Designer.cs +++ b/src/App/Resources/AppResources.zh-Hant.Designer.cs @@ -0,0 +1,3890 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Bit.App.Resources { + using System; + using System.Reflection; + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class AppResources_zh_Hant { + + private static System.Resources.ResourceManager resourceMan; + + private static System.Globalization.CultureInfo resourceCulture; + + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal AppResources_zh_Hant() { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Resources.ResourceManager ResourceManager { + get { + if (object.Equals(null, resourceMan)) { + System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources.zh-Hant", typeof(AppResources_zh_Hant).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + internal static System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static string About { + get { + return ResourceManager.GetString("About", resourceCulture); + } + } + + internal static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + internal static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + internal static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + internal static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + internal static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + internal static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + internal static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + internal static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + internal static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + internal static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + internal static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + internal static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + internal static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + internal static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + internal static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + internal static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + internal static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + internal static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + internal static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + internal static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + internal static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + internal static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + internal static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + internal static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + internal static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + internal static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + internal static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + internal static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + internal static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + internal static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + internal static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + internal static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + internal static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + internal static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + internal static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + internal static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + internal static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + internal static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + internal static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + internal static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + internal static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + internal static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + internal static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + internal static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + internal static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + internal static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + internal static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + internal static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + internal static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + internal static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + internal static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + internal static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + internal static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + internal static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + internal static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + internal static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + internal static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + internal static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + internal static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + internal static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + internal static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + internal static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + internal static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + internal static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + internal static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + internal static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + internal static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + internal static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + internal static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + internal static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + internal static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + internal static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + internal static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + internal static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + internal static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + internal static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + internal static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + internal static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + internal static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + internal static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + internal static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + internal static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + internal static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + internal static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + internal static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + internal static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + internal static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + internal static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + internal static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + internal static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + internal static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + internal static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + internal static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + internal static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + internal static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + internal static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + internal static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + internal static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + internal static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + internal static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + internal static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + internal static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + internal static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + internal static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + internal static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + internal static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + internal static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + internal static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + internal static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + internal static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + internal static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + internal static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + internal static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + internal static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + internal static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + internal static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + internal static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + internal static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + internal static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + internal static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + internal static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + internal static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + internal static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + internal static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + internal static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + internal static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + internal static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + internal static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + internal static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + internal static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + internal static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + internal static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + internal static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + internal static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + internal static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + internal static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + internal static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + internal static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + internal static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + internal static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + internal static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + internal static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + internal static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + internal static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + internal static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + internal static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + internal static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + internal static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + internal static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + internal static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + internal static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + internal static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + internal static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + internal static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + internal static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + internal static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + internal static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + internal static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + internal static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + internal static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + internal static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + internal static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + internal static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + internal static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + internal static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + internal static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + internal static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + internal static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + internal static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + internal static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + internal static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + internal static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + internal static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + internal static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + internal static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + internal static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + internal static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + internal static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + internal static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + internal static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + internal static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + internal static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + internal static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + internal static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + internal static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + internal static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + internal static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + internal static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + internal static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + internal static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + internal static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + internal static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + internal static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + internal static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + internal static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + internal static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + internal static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + internal static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + internal static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + internal static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + internal static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + internal static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + internal static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + internal static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + internal static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + internal static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + internal static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + internal static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + internal static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + internal static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + internal static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + internal static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + internal static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + internal static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + internal static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + internal static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + internal static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + internal static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + internal static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + internal static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + internal static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + internal static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + internal static string CameraInstructionBottom { + get { + return ResourceManager.GetString("CameraInstructionBottom", resourceCulture); + } + } + + internal static string CameraInstructionTop { + get { + return ResourceManager.GetString("CameraInstructionTop", resourceCulture); + } + } + + internal static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + internal static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + internal static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + internal static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + internal static string DisableAutoTotpCopyDescription { + get { + return ResourceManager.GetString("DisableAutoTotpCopyDescription", resourceCulture); + } + } + + internal static string DisableAutoTotpCopy { + get { + return ResourceManager.GetString("DisableAutoTotpCopy", resourceCulture); + } + } + + internal static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + internal static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + internal static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + internal static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + internal static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + internal static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + internal static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + internal static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + internal static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + internal static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + internal static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + internal static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + internal static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + internal static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + internal static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + internal static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + internal static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + internal static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + internal static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + internal static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + internal static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + internal static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + internal static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + internal static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + internal static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + internal static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + internal static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + internal static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + internal static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + internal static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + internal static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + internal static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + internal static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + internal static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + internal static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + internal static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + internal static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + internal static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + internal static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + internal static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + internal static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + internal static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + internal static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + internal static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + internal static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + internal static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + internal static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + internal static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + internal static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + internal static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + internal static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + internal static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + internal static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + internal static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + internal static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + internal static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + internal static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + internal static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + internal static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + internal static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + internal static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + internal static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + internal static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + internal static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + internal static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + internal static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + internal static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + internal static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } + + internal static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + internal static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + internal static string DisableWebsiteIcons { + get { + return ResourceManager.GetString("DisableWebsiteIcons", resourceCulture); + } + } + + internal static string DisableWebsiteIconsDescription { + get { + return ResourceManager.GetString("DisableWebsiteIconsDescription", resourceCulture); + } + } + + internal static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + internal static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + internal static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + internal static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + internal static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + internal static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + internal static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + internal static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + internal static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + internal static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + internal static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + internal static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + internal static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + internal static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + internal static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + internal static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + internal static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + internal static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + internal static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + internal static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + internal static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + internal static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + internal static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + internal static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + internal static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + internal static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + internal static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + internal static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + internal static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + internal static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + internal static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + internal static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + internal static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + internal static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + internal static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + internal static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + internal static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + internal static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + internal static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + internal static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + internal static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + internal static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + internal static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + internal static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + internal static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + internal static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + internal static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + internal static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + internal static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + internal static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + internal static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + internal static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + internal static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + internal static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + internal static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + internal static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + internal static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + internal static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + internal static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + internal static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + internal static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + internal static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + internal static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + internal static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + internal static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + internal static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + internal static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + internal static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + internal static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + internal static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + internal static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + internal static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + internal static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + internal static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + internal static string SearchFolder { + get { + return ResourceManager.GetString("SearchFolder", resourceCulture); + } + } + + internal static string SearchType { + get { + return ResourceManager.GetString("SearchType", resourceCulture); + } + } + + internal static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + internal static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + internal static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + internal static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + internal static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + internal static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + internal static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + internal static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + internal static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + internal static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + internal static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + internal static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + internal static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + internal static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + internal static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + internal static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + internal static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + internal static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + internal static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + internal static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + internal static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + internal static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + internal static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + internal static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + internal static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + internal static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + internal static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + internal static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + internal static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + internal static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + internal static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + internal static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + internal static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + internal static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + internal static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + internal static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + internal static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + internal static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + internal static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + internal static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + internal static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + internal static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + internal static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + internal static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + internal static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + internal static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + internal static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + internal static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + internal static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + internal static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + internal static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + internal static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + internal static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + internal static string BlacklistedUris { + get { + return ResourceManager.GetString("BlacklistedUris", resourceCulture); + } + } + + internal static string BlacklistedUrisDescription { + get { + return ResourceManager.GetString("BlacklistedUrisDescription", resourceCulture); + } + } + + internal static string DisableSavePrompt { + get { + return ResourceManager.GetString("DisableSavePrompt", resourceCulture); + } + } + + internal static string DisableSavePromptDescription { + get { + return ResourceManager.GetString("DisableSavePromptDescription", resourceCulture); + } + } + + internal static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + internal static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + internal static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + internal static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + internal static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + internal static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + internal static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + internal static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + internal static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + internal static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + internal static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + internal static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + internal static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + internal static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + internal static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + internal static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + internal static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + internal static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + internal static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + internal static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + internal static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + internal static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + internal static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + internal static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + internal static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + internal static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + internal static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + internal static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + internal static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + internal static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + internal static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + internal static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + internal static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + internal static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + internal static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + internal static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + internal static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + internal static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + internal static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + internal static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + internal static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + internal static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + internal static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + internal static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + internal static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + internal static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + internal static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + internal static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + internal static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + internal static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + internal static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + internal static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + internal static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + internal static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + internal static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + internal static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + internal static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + internal static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + internal static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + internal static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + internal static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + internal static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + internal static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + internal static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + internal static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + internal static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + internal static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + internal static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + internal static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + internal static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + internal static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + internal static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + internal static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + internal static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + internal static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + internal static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + internal static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + internal static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + internal static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + internal static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + internal static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + internal static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + internal static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + internal static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + internal static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + internal static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + internal static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + internal static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + internal static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + internal static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + internal static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + internal static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + internal static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + internal static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + internal static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + internal static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + internal static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + internal static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + internal static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + internal static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + internal static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + internal static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + internal static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + internal static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + internal static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + internal static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + internal static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + internal static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + internal static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + internal static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + internal static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + internal static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + internal static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + internal static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + internal static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + internal static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + internal static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + internal static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + internal static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + internal static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + internal static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + internal static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + internal static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + internal static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + internal static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + internal static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + internal static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + internal static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + internal static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + internal static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + internal static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + internal static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + internal static string AboutSend { + get { + return ResourceManager.GetString("AboutSend", resourceCulture); + } + } + + internal static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + internal static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + internal static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + internal static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + internal static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + internal static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + internal static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + internal static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + internal static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + internal static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + internal static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + internal static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + internal static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + internal static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + internal static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + internal static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + internal static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + internal static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + internal static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + internal static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + internal static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + internal static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + internal static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + internal static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + internal static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + internal static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + internal static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + internal static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + internal static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + internal static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + internal static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + internal static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + internal static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + internal static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + internal static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + internal static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + internal static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + internal static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + internal static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + internal static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + internal static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + internal static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + internal static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + internal static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + internal static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + internal static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + internal static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + internal static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + internal static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + internal static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + internal static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + } +}