From 90e0b5dcf0783603c825159fb7a74612a8bd7722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Fri, 30 Sep 2022 20:44:56 +0100 Subject: [PATCH] [SG-690] Login Request does not disappear after 15 minutes (#2106) * [SG-690] Add timeout of 15 for android notifications. Add condition to not prompt login requests if 15mins have passed. Add constant for timeout time. * [SG-690] Added dialog on click confirm/deny if the request is expired. * [SG-690] PR fixes * [SG-690] PR fixes --- .../AndroidPushNotificationService.cs | 4 +- src/App/App.xaml.cs | 5 +- .../Accounts/LoginPasswordlessViewModel.cs | 7 + src/App/Resources/AppResources.Designer.cs | 10984 ++++++++++------ src/App/Resources/AppResources.resx | 3 + src/Core/Constants.cs | 1 + 6 files changed, 6618 insertions(+), 4386 deletions(-) diff --git a/src/Android/Services/AndroidPushNotificationService.cs b/src/Android/Services/AndroidPushNotificationService.cs index 05602797c..9365b19ec 100644 --- a/src/Android/Services/AndroidPushNotificationService.cs +++ b/src/Android/Services/AndroidPushNotificationService.cs @@ -73,8 +73,7 @@ namespace Bit.Droid.Services { throw new ArgumentNullException("notificationId cannot be null or empty."); } - - + var context = Android.App.Application.Context; var intent = new Intent(context, typeof(MainActivity)); var pendingIntentFlags = AndroidHelpers.AddPendingIntentMutabilityFlag(PendingIntentFlags.UpdateCurrent, true); @@ -83,6 +82,7 @@ namespace Bit.Droid.Services .SetContentIntent(pendingIntent) .SetContentTitle(title) .SetContentText(message) + .SetTimeoutAfter(Constants.PasswordlessNotificationTimeoutInMinutes * 60000) .SetSmallIcon(Resource.Drawable.ic_notification) .SetColor((int)Android.Graphics.Color.White) .SetAutoCancel(true); diff --git a/src/App/App.xaml.cs b/src/App/App.xaml.cs index c83ab3308..35c22126c 100644 --- a/src/App/App.xaml.cs +++ b/src/App/App.xaml.cs @@ -189,7 +189,10 @@ namespace Bit.App }); await _stateService.SetPasswordlessLoginNotificationAsync(null); _pushNotificationService.DismissLocalNotification(Constants.PasswordlessNotificationId); - await Device.InvokeOnMainThreadAsync(async () => await Application.Current.MainPage.Navigation.PushModalAsync(new NavigationPage(page))); + if (loginRequestData.CreationDate.AddMinutes(Constants.PasswordlessNotificationTimeoutInMinutes) > DateTime.Now) + { + await Device.InvokeOnMainThreadAsync(() => Application.Current.MainPage.Navigation.PushModalAsync(new NavigationPage(page))); + } } public AppOptions Options { get; private set; } diff --git a/src/App/Pages/Accounts/LoginPasswordlessViewModel.cs b/src/App/Pages/Accounts/LoginPasswordlessViewModel.cs index 03eee241d..d1e8d0c28 100644 --- a/src/App/Pages/Accounts/LoginPasswordlessViewModel.cs +++ b/src/App/Pages/Accounts/LoginPasswordlessViewModel.cs @@ -65,6 +65,13 @@ namespace Bit.App.Pages private async Task PasswordlessLoginAsync(bool approveRequest) { + if (LoginRequest.RequestDate.AddMinutes(Constants.PasswordlessNotificationTimeoutInMinutes) <= DateTime.Now) + { + await _platformUtilsService.ShowDialogAsync(AppResources.LoginRequestHasAlreadyExpired); + await Page.Navigation.PopModalAsync(); + return; + } + await _deviceActionService.ShowLoadingAsync(AppResources.Loading); await _authService.PasswordlessLoginAsync(LoginRequest.Id, LoginRequest.PubKey, approveRequest); await _deviceActionService.HideLoadingAsync(); diff --git a/src/App/Resources/AppResources.Designer.cs b/src/App/Resources/AppResources.Designer.cs index e923b8b9e..f2fbf889e 100644 --- a/src/App/Resources/AppResources.Designer.cs +++ b/src/App/Resources/AppResources.Designer.cs @@ -1,7 +1,6 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // 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. @@ -10,35 +9,46 @@ 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()] + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// This class was generated by MSBuild using the GenerateResource task. + /// To add or remove a member, edit your .resx file then rerun MSBuild. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Build.Tasks.StronglyTypedResourceBuilder", "15.1.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] public class AppResources { - private static System.Resources.ResourceManager resourceMan; + private static global::System.Resources.ResourceManager resourceMan; - private static System.Globalization.CultureInfo resourceCulture; + private static global::System.Globalization.CultureInfo resourceCulture; - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal AppResources() { } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - public static System.Resources.ResourceManager ResourceManager { + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Resources.ResourceManager ResourceManager { get { - if (object.Equals(null, resourceMan)) { - System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Bit.App.Resources.AppResources", typeof(AppResources).Assembly); + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Bit.App.Resources.AppResources", typeof(AppResources).Assembly); resourceMan = temp; } return resourceMan; } } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - public static System.Globalization.CultureInfo Culture { + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + public static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -47,4396 +57,6604 @@ namespace Bit.App.Resources { } } + /// + /// Looks up a localized string similar to About. + /// 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 Authenticator { - get { - return ResourceManager.GetString("Authenticator", 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 Off { - get { - return ResourceManager.GetString("Off", resourceCulture); - } - } - - public static string On { - get { - return ResourceManager.GetString("On", 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 PointYourCameraAtTheQRCode { - get { - return ResourceManager.GetString("PointYourCameraAtTheQRCode", 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 CopyTotpAutomaticallyDescription { - get { - return ResourceManager.GetString("CopyTotpAutomaticallyDescription", resourceCulture); - } - } - - public static string CopyTotpAutomatically { - get { - return ResourceManager.GetString("CopyTotpAutomatically", 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 ShowWebsiteIcons { - get { - return ResourceManager.GetString("ShowWebsiteIcons", resourceCulture); - } - } - - public static string ShowWebsiteIconsDescription { - get { - return ResourceManager.GetString("ShowWebsiteIconsDescription", 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 SearchFileSends { - get { - return ResourceManager.GetString("SearchFileSends", resourceCulture); - } - } - - public static string SearchTextSends { - get { - return ResourceManager.GetString("SearchTextSends", resourceCulture); - } - } - - public static string SearchGroup { - get { - return ResourceManager.GetString("SearchGroup", 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 DefaultDarkTheme { - get { - return ResourceManager.GetString("DefaultDarkTheme", resourceCulture); - } - } - - public static string DefaultDarkThemeDescription { - get { - return ResourceManager.GetString("DefaultDarkThemeDescription", 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 Nord { - get { - return ResourceManager.GetString("Nord", resourceCulture); - } - } - - public static string AutofillBlockedUris { - get { - return ResourceManager.GetString("AutofillBlockedUris", resourceCulture); - } - } - - public static string AutofillBlockedUrisDescription { - get { - return ResourceManager.GetString("AutofillBlockedUrisDescription", resourceCulture); - } - } - - public static string AskToAddLogin { - get { - return ResourceManager.GetString("AskToAddLogin", resourceCulture); - } - } - - public static string AskToAddLoginDescription { - get { - return ResourceManager.GetString("AskToAddLoginDescription", 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 Text { - get { - return ResourceManager.GetString("Text", 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 FileTypeIsSelected { - get { - return ResourceManager.GetString("FileTypeIsSelected", resourceCulture); - } - } - - public static string FileTypeIsNotSelected { - get { - return ResourceManager.GetString("FileTypeIsNotSelected", resourceCulture); - } - } - - public static string TextTypeIsSelected { - get { - return ResourceManager.GetString("TextTypeIsSelected", resourceCulture); - } - } - - public static string TextTypeIsNotSelected { - get { - return ResourceManager.GetString("TextTypeIsNotSelected", 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); - } - } - + /// + /// Looks up a localized string similar to About Send. + /// 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); - } - } - - public static string SubmitCrashLogs { - get { - return ResourceManager.GetString("SubmitCrashLogs", resourceCulture); - } - } - - public static string SubmitCrashLogsDescription { - get { - return ResourceManager.GetString("SubmitCrashLogsDescription", resourceCulture); - } - } - - public static string OptionsExpanded { - get { - return ResourceManager.GetString("OptionsExpanded", resourceCulture); - } - } - - public static string OptionsCollapsed { - get { - return ResourceManager.GetString("OptionsCollapsed", resourceCulture); - } - } - - public static string UppercaseAtoZ { - get { - return ResourceManager.GetString("UppercaseAtoZ", resourceCulture); - } - } - - public static string LowercaseAtoZ { - get { - return ResourceManager.GetString("LowercaseAtoZ", resourceCulture); - } - } - - public static string NumbersZeroToNine { - get { - return ResourceManager.GetString("NumbersZeroToNine", resourceCulture); - } - } - - public static string SpecialCharacters { - get { - return ResourceManager.GetString("SpecialCharacters", resourceCulture); - } - } - - public static string TapToGoBack { - get { - return ResourceManager.GetString("TapToGoBack", resourceCulture); - } - } - - public static string PasswordIsVisibleTapToHide { - get { - return ResourceManager.GetString("PasswordIsVisibleTapToHide", resourceCulture); - } - } - - public static string PasswordIsNotVisibleTapToShow { - get { - return ResourceManager.GetString("PasswordIsNotVisibleTapToShow", resourceCulture); - } - } - - public static string FilterByVault { - get { - return ResourceManager.GetString("FilterByVault", resourceCulture); - } - } - - public static string AllVaults { - get { - return ResourceManager.GetString("AllVaults", resourceCulture); - } - } - - public static string Vaults { - get { - return ResourceManager.GetString("Vaults", resourceCulture); - } - } - - public static string VaultFilterDescription { - get { - return ResourceManager.GetString("VaultFilterDescription", resourceCulture); - } - } - - public static string All { - get { - return ResourceManager.GetString("All", resourceCulture); - } - } - - public static string Totp { - get { - return ResourceManager.GetString("Totp", resourceCulture); - } - } - - public static string VerificationCodes { - get { - return ResourceManager.GetString("VerificationCodes", resourceCulture); - } - } - - public static string PremiumSubscriptionRequired { - get { - return ResourceManager.GetString("PremiumSubscriptionRequired", resourceCulture); - } - } - - public static string CannotAddAuthenticatorKey { - get { - return ResourceManager.GetString("CannotAddAuthenticatorKey", resourceCulture); - } - } - - public static string ScanQRCode { - get { - return ResourceManager.GetString("ScanQRCode", resourceCulture); - } - } - - public static string CannotScanQRCode { - get { - return ResourceManager.GetString("CannotScanQRCode", resourceCulture); - } - } - - public static string AuthenticatorKeyScanner { - get { - return ResourceManager.GetString("AuthenticatorKeyScanner", resourceCulture); - } - } - - public static string EnterKeyManually { - get { - return ResourceManager.GetString("EnterKeyManually", resourceCulture); - } - } - - public static string AddTotp { - get { - return ResourceManager.GetString("AddTotp", resourceCulture); - } - } - - public static string SetupTotp { - get { - return ResourceManager.GetString("SetupTotp", resourceCulture); - } - } - - public static string OnceTheKeyIsSuccessfullyEntered { - get { - return ResourceManager.GetString("OnceTheKeyIsSuccessfullyEntered", resourceCulture); - } - } - - public static string SelectAddTotpToStoreTheKeySafely { - get { - return ResourceManager.GetString("SelectAddTotpToStoreTheKeySafely", resourceCulture); - } - } - - public static string NeverLockWarning { - get { - return ResourceManager.GetString("NeverLockWarning", resourceCulture); - } - } - - public static string EnvironmentPageUrlsError { - get { - return ResourceManager.GetString("EnvironmentPageUrlsError", resourceCulture); - } - } - - public static string GenericErrorMessage { - get { - return ResourceManager.GetString("GenericErrorMessage", resourceCulture); - } - } - - public static string AllowScreenCapture { - get { - return ResourceManager.GetString("AllowScreenCapture", resourceCulture); - } - } - - public static string AreYouSureYouWantToEnableScreenCapture { - get { - return ResourceManager.GetString("AreYouSureYouWantToEnableScreenCapture", resourceCulture); - } - } - - public static string LogInRequested { - get { - return ResourceManager.GetString("LogInRequested", resourceCulture); - } - } - - public static string AreYouTryingToLogIn { - get { - return ResourceManager.GetString("AreYouTryingToLogIn", resourceCulture); - } - } - - public static string LogInAttemptByXOnY { - get { - return ResourceManager.GetString("LogInAttemptByXOnY", resourceCulture); - } - } - - public static string DeviceType { - get { - return ResourceManager.GetString("DeviceType", resourceCulture); - } - } - - public static string IpAddress { - get { - return ResourceManager.GetString("IpAddress", resourceCulture); - } - } - - public static string Time { - get { - return ResourceManager.GetString("Time", resourceCulture); - } - } - - public static string Near { - get { - return ResourceManager.GetString("Near", resourceCulture); - } - } - - public static string ConfirmLogIn { - get { - return ResourceManager.GetString("ConfirmLogIn", resourceCulture); - } - } - - public static string DenyLogIn { - get { - return ResourceManager.GetString("DenyLogIn", resourceCulture); - } - } - - public static string JustNow { - get { - return ResourceManager.GetString("JustNow", resourceCulture); - } - } - - public static string XMinutesAgo { - get { - return ResourceManager.GetString("XMinutesAgo", resourceCulture); - } - } - - public static string LogInAccepted { - get { - return ResourceManager.GetString("LogInAccepted", resourceCulture); - } - } - - public static string LogInDenied { - get { - return ResourceManager.GetString("LogInDenied", resourceCulture); - } - } - - public static string ApproveLoginRequests { - get { - return ResourceManager.GetString("ApproveLoginRequests", resourceCulture); - } - } - - public static string UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices { - get { - return ResourceManager.GetString("UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices", resourceCulture); - } - } - - public static string AllowNotifications { - get { - return ResourceManager.GetString("AllowNotifications", resourceCulture); - } - } - - public static string ReceivePushNotificationsForNewLoginRequests { - get { - return ResourceManager.GetString("ReceivePushNotificationsForNewLoginRequests", resourceCulture); - } - } - - public static string NoThanks { - get { - return ResourceManager.GetString("NoThanks", resourceCulture); - } - } - - public static string ConfimLogInAttempForX { - get { - return ResourceManager.GetString("ConfimLogInAttempForX", resourceCulture); - } - } - - public static string AllNotifications { - get { - return ResourceManager.GetString("AllNotifications", resourceCulture); - } - } - - public static string PasswordType { - get { - return ResourceManager.GetString("PasswordType", resourceCulture); - } - } - - public static string WhatWouldYouLikeToGenerate { - get { - return ResourceManager.GetString("WhatWouldYouLikeToGenerate", resourceCulture); - } - } - - public static string UsernameType { - get { - return ResourceManager.GetString("UsernameType", resourceCulture); - } - } - - public static string PlusAddressedEmail { - get { - return ResourceManager.GetString("PlusAddressedEmail", resourceCulture); - } - } - - public static string CatchAllEmail { - get { - return ResourceManager.GetString("CatchAllEmail", resourceCulture); - } - } - - public static string ForwardedEmailAlias { - get { - return ResourceManager.GetString("ForwardedEmailAlias", resourceCulture); - } - } - - public static string RandomWord { - get { - return ResourceManager.GetString("RandomWord", resourceCulture); - } - } - - public static string EmailRequiredParenthesis { - get { - return ResourceManager.GetString("EmailRequiredParenthesis", resourceCulture); - } - } - - public static string DomainNameRequiredParenthesis { - get { - return ResourceManager.GetString("DomainNameRequiredParenthesis", resourceCulture); - } - } - - public static string APIKeyRequiredParenthesis { - get { - return ResourceManager.GetString("APIKeyRequiredParenthesis", resourceCulture); - } - } - - public static string Service { - get { - return ResourceManager.GetString("Service", resourceCulture); - } - } - - public static string AnonAddy { - get { - return ResourceManager.GetString("AnonAddy", resourceCulture); - } - } - - public static string FirefoxRelay { - get { - return ResourceManager.GetString("FirefoxRelay", resourceCulture); - } - } - - public static string SimpleLogin { - get { - return ResourceManager.GetString("SimpleLogin", resourceCulture); - } - } - - public static string APIAccessToken { - get { - return ResourceManager.GetString("APIAccessToken", resourceCulture); - } - } - - public static string AreYouSureYouWantToOverwriteTheCurrentUsername { - get { - return ResourceManager.GetString("AreYouSureYouWantToOverwriteTheCurrentUsername", resourceCulture); - } - } - - public static string GenerateUsername { - get { - return ResourceManager.GetString("GenerateUsername", resourceCulture); - } - } - - public static string EmailType { - get { - return ResourceManager.GetString("EmailType", resourceCulture); - } - } - - public static string WebsiteRequired { - get { - return ResourceManager.GetString("WebsiteRequired", resourceCulture); - } - } - - public static string UnknownXErrorMessage { - get { - return ResourceManager.GetString("UnknownXErrorMessage", resourceCulture); - } - } - - public static string PlusAddressedEmailDescription { - get { - return ResourceManager.GetString("PlusAddressedEmailDescription", resourceCulture); - } - } - - public static string CatchAllEmailDescription { - get { - return ResourceManager.GetString("CatchAllEmailDescription", resourceCulture); - } - } - - public static string ForwardedEmailDescription { - get { - return ResourceManager.GetString("ForwardedEmailDescription", resourceCulture); - } - } - - public static string Random { - get { - return ResourceManager.GetString("Random", resourceCulture); - } - } - - public static string AccessibilityServiceDisclosure { - get { - return ResourceManager.GetString("AccessibilityServiceDisclosure", resourceCulture); - } - } - - public static string AccessibilityDisclosureText { - get { - return ResourceManager.GetString("AccessibilityDisclosureText", resourceCulture); - } - } - + /// + /// Looks up a localized string similar to Accept. + /// public static string Accept { get { return ResourceManager.GetString("Accept", resourceCulture); } } + /// + /// Looks up a localized string similar to By activating this switch you agree to the following: + ///. + /// + public static string AcceptPolicies { + get { + return ResourceManager.GetString("AcceptPolicies", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Terms of Service and Privacy Policy have not been acknowledged.. + /// + public static string AcceptPoliciesError { + get { + return ResourceManager.GetString("AcceptPoliciesError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use accessibility. + /// + public static string Accessibility { + get { + return ResourceManager.GetString("Accessibility", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use the Bitwarden Accessibility Service to auto-fill your logins across apps and the web. When enabled, we'll display a popup when login fields are selected.. + /// + public static string AccessibilityDescription { + get { + return ResourceManager.GetString("AccessibilityDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use the Bitwarden Accessibility Service to auto-fill your logins across apps and the web. (Requires Draw-Over to be enabled as well). + /// + public static string AccessibilityDescription2 { + get { + return ResourceManager.GetString("AccessibilityDescription2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use the Bitwarden Accessibility Service to use the Autofill Quick-Action Tile, and/or show a popup using Draw-Over (if enabled).. + /// + public static string AccessibilityDescription3 { + get { + return ResourceManager.GetString("AccessibilityDescription3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Required to use the Autofill Quick-Action Tile, or to augment the Autofill Service by using Draw-Over (if enabled).. + /// + public static string AccessibilityDescription4 { + get { + return ResourceManager.GetString("AccessibilityDescription4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bitwarden uses the Accessibility Service to search for login fields in apps and websites, then establish the appropriate field IDs for entering a username & password when a match for the app or site is found. We do not store any of the information presented to us by the service, nor do we make any attempt to control any on-screen elements beyond text entry of credentials.. + /// + public static string AccessibilityDisclosureText { + get { + return ResourceManager.GetString("AccessibilityDisclosureText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bitwarden needs attention - Enable "Draw-Over" in "Auto-fill Services" from Bitwarden Settings. + /// + public static string AccessibilityDrawOverPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityDrawOverPermissionAlert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bitwarden needs attention - See "Auto-fill Accessibility Service" from Bitwarden Settings. + /// + public static string AccessibilityOverlayPermissionAlert { + get { + return ResourceManager.GetString("AccessibilityOverlayPermissionAlert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Accessibility Service Disclosure. + /// + public static string AccessibilityServiceDisclosure { + get { + return ResourceManager.GetString("AccessibilityServiceDisclosure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Account. + /// + public static string Account { + get { + return ResourceManager.GetString("Account", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Account Already Added. + /// + public static string AccountAlreadyAdded { + get { + return ResourceManager.GetString("AccountAlreadyAdded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your new account has been created! You may now log in.. + /// + public static string AccountCreated { + get { + return ResourceManager.GetString("AccountCreated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Locked. + /// + public static string AccountLocked { + get { + return ResourceManager.GetString("AccountLocked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Account Locked. + /// + public static string AccountLockedSuccessfully { + get { + return ResourceManager.GetString("AccountLockedSuccessfully", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Logged Out. + /// + public static string AccountLoggedOut { + get { + return ResourceManager.GetString("AccountLoggedOut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Account logged out successfully. + /// + public static string AccountLoggedOutSuccessfully { + get { + return ResourceManager.GetString("AccountLoggedOutSuccessfully", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Account removed successfully. + /// + public static string AccountRemovedSuccessfully { + get { + return ResourceManager.GetString("AccountRemovedSuccessfully", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Switched to next available account. + /// + public static string AccountSwitchedAutomatically { + get { + return ResourceManager.GetString("AccountSwitchedAutomatically", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unlocked. + /// + public static string AccountUnlocked { + get { + return ResourceManager.GetString("AccountUnlocked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add. + /// + public static string Add { + get { + return ResourceManager.GetString("Add", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Account. + /// + public static string AddAccount { + get { + return ResourceManager.GetString("AddAccount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add an Item. + /// + public static string AddAnItem { + get { + return ResourceManager.GetString("AddAnItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add a Send. + /// + public static string AddASend { + get { + return ResourceManager.GetString("AddASend", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Folder. + /// + public static string AddFolder { + get { + return ResourceManager.GetString("AddFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Item. + /// + public static string AddItem { + get { + return ResourceManager.GetString("AddItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add New Attachment. + /// + public static string AddNewAttachment { + get { + return ResourceManager.GetString("AddNewAttachment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Address. + /// + public static string Address { + get { + return ResourceManager.GetString("Address", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Address 1. + /// + public static string Address1 { + get { + return ResourceManager.GetString("Address1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Address 2. + /// + public static string Address2 { + get { + return ResourceManager.GetString("Address2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Address 3. + /// + public static string Address3 { + get { + return ResourceManager.GetString("Address3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Send. + /// + public static string AddSend { + get { + return ResourceManager.GetString("AddSend", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add TOTP. + /// + public static string AddTotp { + get { + return ResourceManager.GetString("AddTotp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All. + /// + public static string All { + get { + return ResourceManager.GetString("All", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All Items. + /// + public static string AllItems { + get { + return ResourceManager.GetString("AllItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All notifications. + /// + public static string AllNotifications { + get { + return ResourceManager.GetString("AllNotifications", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow notifications. + /// + public static string AllowNotifications { + get { + return ResourceManager.GetString("AllowNotifications", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow screen capture. + /// + public static string AllowScreenCapture { + get { + return ResourceManager.GetString("AllowScreenCapture", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All Sends. + /// + public static string AllSends { + get { + return ResourceManager.GetString("AllSends", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All Vaults. + /// + public static string AllVaults { + get { + return ResourceManager.GetString("AllVaults", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An error has occurred.. + /// + public static string AnErrorHasOccurred { + get { + return ResourceManager.GetString("AnErrorHasOccurred", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An error occurred while sending a verification code to your email. Please try again. + /// + public static string AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain { + get { + return ResourceManager.GetString("AnErrorOccurredWhileSendingAVerificationCodeToYourEmailPleaseTryAgain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AnonAddy. + /// + public static string AnonAddy { + get { + return ResourceManager.GetString("AnonAddy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to API Access Token. + /// + public static string APIAccessToken { + get { + return ResourceManager.GetString("APIAccessToken", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to API Key (required). + /// + public static string APIKeyRequiredParenthesis { + get { + return ResourceManager.GetString("APIKeyRequiredParenthesis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to API Server URL. + /// + public static string ApiUrl { + get { + return ResourceManager.GetString("ApiUrl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to App extension. + /// + public static string AppExtension { + get { + return ResourceManager.GetString("AppExtension", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Approve login requests. + /// + public static string ApproveLoginRequests { + get { + return ResourceManager.GetString("ApproveLoginRequests", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to April. + /// + public static string April { + get { + return ResourceManager.GetString("April", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete this Send?. + /// + public static string AreYouSureDeleteSend { + get { + return ResourceManager.GetString("AreYouSureDeleteSend", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove the password?. + /// + public static string AreYouSureRemoveSendPassword { + get { + return ResourceManager.GetString("AreYouSureRemoveSendPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to enable Screen Capture?. + /// + public static string AreYouSureYouWantToEnableScreenCapture { + get { + return ResourceManager.GetString("AreYouSureYouWantToEnableScreenCapture", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to overwrite the current username?. + /// + public static string AreYouSureYouWantToOverwriteTheCurrentUsername { + get { + return ResourceManager.GetString("AreYouSureYouWantToOverwriteTheCurrentUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you trying to log in?. + /// + public static string AreYouTryingToLogIn { + get { + return ResourceManager.GetString("AreYouTryingToLogIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ask to add login. + /// + public static string AskToAddLogin { + get { + return ResourceManager.GetString("AskToAddLogin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ask to add an item if one isn't found in your vault.. + /// + public static string AskToAddLoginDescription { + get { + return ResourceManager.GetString("AskToAddLoginDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Attachment added. + /// + public static string AttachementAdded { + get { + return ResourceManager.GetString("AttachementAdded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Attachment deleted. + /// + public static string AttachmentDeleted { + get { + return ResourceManager.GetString("AttachmentDeleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This attachment is {0} in size. Are you sure you want to download it onto your device?. + /// + public static string AttachmentLargeWarning { + get { + return ResourceManager.GetString("AttachmentLargeWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Attachments. + /// + public static string Attachments { + get { + return ResourceManager.GetString("Attachments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to August. + /// + public static string August { + get { + return ResourceManager.GetString("August", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Authenticator. + /// + public static string Authenticator { + get { + return ResourceManager.GetString("Authenticator", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Authenticator App. + /// + public static string AuthenticatorAppTitle { + get { + return ResourceManager.GetString("AuthenticatorAppTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Authenticator Key (TOTP). + /// + public static string AuthenticatorKey { + get { + return ResourceManager.GetString("AuthenticatorKey", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Authenticator key added.. + /// + public static string AuthenticatorKeyAdded { + get { + return ResourceManager.GetString("AuthenticatorKeyAdded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot read authenticator key.. + /// + public static string AuthenticatorKeyReadError { + get { + return ResourceManager.GetString("AuthenticatorKeyReadError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Authenticator Key. + /// + public static string AuthenticatorKeyScanner { + get { + return ResourceManager.GetString("AuthenticatorKeyScanner", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auto-fill. + /// + public static string Autofill { + get { + return ResourceManager.GetString("Autofill", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use the Bitwarden accessibility service to auto-fill your logins across apps and the web.. + /// + public static string AutofillAccessibilityDescription { + get { + return ResourceManager.GetString("AutofillAccessibilityDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auto-fill Accessibility Service. + /// + public static string AutofillAccessibilityService { + get { + return ResourceManager.GetString("AutofillAccessibilityService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AutoFill Activated!. + /// + public static string AutofillActivated { + get { + return ResourceManager.GetString("AutofillActivated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auto-fill and save. + /// + public static string AutofillAndSave { + get { + return ResourceManager.GetString("AutofillAndSave", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auto-fill blocked URIs. + /// + public static string AutofillBlockedUris { + get { + return ResourceManager.GetString("AutofillBlockedUris", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auto-fill will not be offered for blocked URIs. Separate multiple URIs with a comma. For example: "https://twitter.com, androidapp://com.twitter.android".. + /// + public static string AutofillBlockedUrisDescription { + get { + return ResourceManager.GetString("AutofillBlockedUrisDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to auto-fill or view this item?. + /// + public static string AutofillOrView { + get { + return ResourceManager.GetString("AutofillOrView", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auto-fill service. + /// + public static string AutofillService { + get { + return ResourceManager.GetString("AutofillService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The Bitwarden auto-fill service uses the Android Autofill Framework to assist in filling login information into other apps on your device.. + /// + public static string AutofillServiceDescription { + get { + return ResourceManager.GetString("AutofillServiceDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auto-fill makes it easy to securely access your Bitwarden vault from other websites and apps. It looks like you have not enabled an auto-fill service for Bitwarden. Enable auto-fill for Bitwarden from the "Settings" screen.. + /// + public static string AutofillServiceNotEnabled { + get { + return ResourceManager.GetString("AutofillServiceNotEnabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auto-fill services. + /// + public static string AutofillServices { + get { + return ResourceManager.GetString("AutofillServices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your logins are now easily accessible right from your keyboard while logging into apps and websites.. + /// + public static string AutofillSetup { + get { + return ResourceManager.GetString("AutofillSetup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to We recommend disabling any other AutoFill apps under Settings if you do not plan to use them.. + /// + public static string AutofillSetup2 { + get { + return ResourceManager.GetString("AutofillSetup2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please enable "Auto-fill Accessibility Service" from Bitwarden Settings to use the Auto-fill tile.. + /// + public static string AutofillTileAccessibilityRequired { + get { + return ResourceManager.GetString("AutofillTileAccessibilityRequired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No password fields detected. + /// + public static string AutofillTileUriNotFound { + get { + return ResourceManager.GetString("AutofillTileUriNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To enable password autofill on your device, follow these instructions:. + /// + public static string AutofillTurnOn { + get { + return ResourceManager.GetString("AutofillTurnOn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 1. Go to the iOS "Settings" app. + /// + public static string AutofillTurnOn1 { + get { + return ResourceManager.GetString("AutofillTurnOn1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 2. Tap "Passwords". + /// + public static string AutofillTurnOn2 { + get { + return ResourceManager.GetString("AutofillTurnOn2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 3. Tap "AutoFill Passwords". + /// + public static string AutofillTurnOn3 { + get { + return ResourceManager.GetString("AutofillTurnOn3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 4. Turn on AutoFill. + /// + public static string AutofillTurnOn4 { + get { + return ResourceManager.GetString("AutofillTurnOn4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 5. Select "Bitwarden". + /// + public static string AutofillTurnOn5 { + get { + return ResourceManager.GetString("AutofillTurnOn5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auto-fill with Bitwarden. + /// + public static string AutofillWithBitwarden { + get { + return ResourceManager.GetString("AutofillWithBitwarden", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A verification code was sent to your email. + /// + public static string AVerificationCodeWasSentToYourEmail { + get { + return ResourceManager.GetString("AVerificationCodeWasSentToYourEmail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Avoid Ambiguous Characters. + /// + public static string AvoidAmbiguousCharacters { + get { + return ResourceManager.GetString("AvoidAmbiguousCharacters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Back. + /// + public static string Back { + get { + return ResourceManager.GetString("Back", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Base domain. + /// + public static string BaseDomain { + get { + return ResourceManager.GetString("BaseDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Biometric unlock disabled pending verification of master password.. + /// + public static string BiometricInvalidated { + get { + return ResourceManager.GetString("BiometricInvalidated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Biometric unlock for autofill disabled pending verification of master password.. + /// + public static string BiometricInvalidatedExtension { + get { + return ResourceManager.GetString("BiometricInvalidatedExtension", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Biometrics. + /// + public static string Biometrics { + get { + return ResourceManager.GetString("Biometrics", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Biometric Verification. + /// + public static string BiometricsDirection { + get { + return ResourceManager.GetString("BiometricsDirection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bitwarden. + /// + public static string Bitwarden { + get { + return ResourceManager.GetString("Bitwarden", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bitwarden App Extension. + /// + public static string BitwardenAppExtension { + get { + return ResourceManager.GetString("BitwardenAppExtension", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The easiest way to add new logins to your vault is from the Bitwarden App Extension. Learn more about using the Bitwarden App Extension by navigating to the "Settings" screen.. + /// + public static string BitwardenAppExtensionAlert2 { + get { + return ResourceManager.GetString("BitwardenAppExtensionAlert2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use Bitwarden in Safari and other apps to auto-fill your logins.. + /// + public static string BitwardenAppExtensionDescription { + get { + return ResourceManager.GetString("BitwardenAppExtensionDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use the Bitwarden accessibility service to auto-fill your logins.. + /// + public static string BitwardenAutofillAccessibilityServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The accessibility service may be helpful to use when apps do not support the standard auto-fill service.. + /// + public static string BitwardenAutofillAccessibilityServiceDescription2 { + get { + return ResourceManager.GetString("BitwardenAutofillAccessibilityServiceDescription2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The easiest way to add new logins to your vault is by using the Bitwarden Password AutoFill extension. Learn more about using the Bitwarden Password AutoFill extension by navigating to the "Settings" screen.. + /// + public static string BitwardenAutofillAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillAlert2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Access your vault directly from your keyboard to quickly autofill passwords.. + /// + public static string BitwardenAutofillDescription { + get { + return ResourceManager.GetString("BitwardenAutofillDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to We were unable to automatically open the Android autofill settings menu for you. You can navigate to the autofill settings menu manually from Android Settings > System > Languages and input > Advanced > Autofill service.. + /// + public static string BitwardenAutofillGoToSettings { + get { + return ResourceManager.GetString("BitwardenAutofillGoToSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bitwarden Auto-fill Service. + /// + public static string BitwardenAutofillService { + get { + return ResourceManager.GetString("BitwardenAutofillService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The easiest way to add new logins to your vault is from the Bitwarden Auto-fill Service. Learn more about using the Bitwarden Auto-fill Service by navigating to the "Settings" screen.. + /// + public static string BitwardenAutofillServiceAlert2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceAlert2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use the Bitwarden auto-fill service to fill login information into other apps.. + /// + public static string BitwardenAutofillServiceDescription { + get { + return ResourceManager.GetString("BitwardenAutofillServiceDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to auto-fill this item? It is not a complete match for "{0}".. + /// + public static string BitwardenAutofillServiceMatchConfirm { + get { + return ResourceManager.GetString("BitwardenAutofillServiceMatchConfirm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tap this notification to auto-fill an item from your vault.. + /// + public static string BitwardenAutofillServiceNotificationContent { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tap this notification to view items from your vault.. + /// + public static string BitwardenAutofillServiceNotificationContentOld { + get { + return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Accessibility Settings. + /// + public static string BitwardenAutofillServiceOpenAccessibilitySettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAccessibilitySettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Autofill Settings. + /// + public static string BitwardenAutofillServiceOpenAutofillSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenAutofillSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Overlay Permission Settings. + /// + public static string BitwardenAutofillServiceOpenOverlayPermissionSettings { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOpenOverlayPermissionSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to When you select an input field and see a Bitwarden auto-fill overlay, you can tap it to launch the auto-fill service.. + /// + public static string BitwardenAutofillServiceOverlay { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 3. On the Android App Settings screen for Bitwarden, go to the "Display over other apps" options (under Advanced) and tap the toggle to enable overlay support.. + /// + public static string BitwardenAutofillServiceOverlayPermission { + get { + return ResourceManager.GetString("BitwardenAutofillServiceOverlayPermission", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You are searching for an auto-fill item for "{0}".. + /// + public static string BitwardenAutofillServiceSearch { + get { + return ResourceManager.GetString("BitwardenAutofillServiceSearch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 1. On the Android Accessibility Settings screen, touch "Bitwarden" under the Services heading.. + /// + public static string BitwardenAutofillServiceStep1 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 2. Switch on the toggle and press OK to accept.. + /// + public static string BitwardenAutofillServiceStep2 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 3. On the Android App Settings screen for Bitwarden, select "Display over other apps" (under "Advanced") and switch on the toggle to allow the overlay.. + /// + public static string BitwardenAutofillServiceStep3 { + get { + return ResourceManager.GetString("BitwardenAutofillServiceStep3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Black. + /// + public static string Black { + get { + return ResourceManager.GetString("Black", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Brand. + /// + public static string Brand { + get { + return ResourceManager.GetString("Brand", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Camera. + /// + public static string Camera { + get { + return ResourceManager.GetString("Camera", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cancel. + /// + public static string Cancel { + get { + return ResourceManager.GetString("Cancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot add authenticator key? . + /// + public static string CannotAddAuthenticatorKey { + get { + return ResourceManager.GetString("CannotAddAuthenticatorKey", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot open the app "{0}".. + /// + public static string CannotOpenApp { + get { + return ResourceManager.GetString("CannotOpenApp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot scan QR Code? . + /// + public static string CannotScanQRCode { + get { + return ResourceManager.GetString("CannotScanQRCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Capitalize. + /// + public static string Capitalize { + get { + return ResourceManager.GetString("Capitalize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Captcha Failed. Please try again.. + /// + public static string CaptchaFailed { + get { + return ResourceManager.GetString("CaptchaFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Captcha Required. + /// + public static string CaptchaRequired { + get { + return ResourceManager.GetString("CaptchaRequired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cardholder Name. + /// + public static string CardholderName { + get { + return ResourceManager.GetString("CardholderName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cards. + /// + public static string Cards { + get { + return ResourceManager.GetString("Cards", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Catch-all Email. + /// + public static string CatchAllEmail { + get { + return ResourceManager.GetString("CatchAllEmail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use your domain's configured catch-all inbox.. + /// + public static string CatchAllEmailDescription { + get { + return ResourceManager.GetString("CatchAllEmailDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Email. + /// + public static string ChangeEmail { + get { + return ResourceManager.GetString("ChangeEmail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You can change your email address on the bitwarden.com web vault. Do you want to visit the website now?. + /// + public static string ChangeEmailConfirmation { + get { + return ResourceManager.GetString("ChangeEmailConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change master password. + /// + public static string ChangeMasterPassword { + get { + return ResourceManager.GetString("ChangeMasterPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You can change your master password on the bitwarden.com web vault. Do you want to visit the website now?. + /// + public static string ChangePasswordConfirmation { + get { + return ResourceManager.GetString("ChangePasswordConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking password.... + /// + public static string CheckingPassword { + get { + return ResourceManager.GetString("CheckingPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check if password has been exposed.. + /// + public static string CheckPassword { + get { + return ResourceManager.GetString("CheckPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose File. + /// + public static string ChooseFile { + get { + return ResourceManager.GetString("ChooseFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to City / Town. + /// + public static string CityTown { + get { + return ResourceManager.GetString("CityTown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear. + /// + public static string Clear { + get { + return ResourceManager.GetString("Clear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clear clipboard. + /// + public static string ClearClipboard { + get { + return ResourceManager.GetString("ClearClipboard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatically clear copied values from your clipboard.. + /// + public static string ClearClipboardDescription { + get { + return ResourceManager.GetString("ClearClipboardDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Clone. + /// + public static string Clone { + get { + return ResourceManager.GetString("Clone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close. + /// + public static string Close { + get { + return ResourceManager.GetString("Close", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Code Sent!. + /// + public static string CodeSent { + get { + return ResourceManager.GetString("CodeSent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Collections. + /// + public static string Collections { + get { + return ResourceManager.GetString("Collections", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Company. + /// + public static string Company { + get { + return ResourceManager.GetString("Company", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Confirm login attempt for {0}. + /// + public static string ConfimLogInAttempForX { + get { + return ResourceManager.GetString("ConfimLogInAttempForX", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Confirm login. + /// + public static string ConfirmLogIn { + get { + return ResourceManager.GetString("ConfirmLogIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Confirm your identity to continue.. + /// + public static string ConfirmYourIdentity { + get { + return ResourceManager.GetString("ConfirmYourIdentity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Continue. + /// + public static string Continue { + get { + return ResourceManager.GetString("Continue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + public static string Copy { + get { + return ResourceManager.GetString("Copy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Link. + /// + public static string CopyLink { + get { + return ResourceManager.GetString("CopyLink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Note. + /// + public static string CopyNotes { + get { + return ResourceManager.GetString("CopyNotes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Number. + /// + public static string CopyNumber { + get { + return ResourceManager.GetString("CopyNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Password. + /// + public static string CopyPassword { + get { + return ResourceManager.GetString("CopyPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Security Code. + /// + public static string CopySecurityCode { + get { + return ResourceManager.GetString("CopySecurityCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Send link on save. + /// + public static string CopySendLinkOnSave { + get { + return ResourceManager.GetString("CopySendLinkOnSave", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy TOTP. + /// + public static string CopyTotp { + get { + return ResourceManager.GetString("CopyTotp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy TOTP automatically. + /// + public static string CopyTotpAutomatically { + get { + return ResourceManager.GetString("CopyTotpAutomatically", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If a login has an authenticator key, copy the TOTP verification code to your clip-board when you auto-fill the login.. + /// + public static string CopyTotpAutomaticallyDescription { + get { + return ResourceManager.GetString("CopyTotpAutomaticallyDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy Username. + /// + public static string CopyUsername { + get { + return ResourceManager.GetString("CopyUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Country. + /// + public static string Country { + get { + return ResourceManager.GetString("Country", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create Account. + /// + public static string CreateAccount { + get { + return ResourceManager.GetString("CreateAccount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Creating account.... + /// + public static string CreatingAccount { + get { + return ResourceManager.GetString("CreatingAccount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Credits. + /// + public static string Credits { + get { + return ResourceManager.GetString("Credits", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Current Access Count. + /// + public static string CurrentAccessCount { + get { + return ResourceManager.GetString("CurrentAccessCount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom. + /// + public static string Custom { + get { + return ResourceManager.GetString("Custom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom Environment. + /// + public static string CustomEnvironment { + get { + return ResourceManager.GetString("CustomEnvironment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to For advanced users. You can specify the base URL of each service independently.. + /// + public static string CustomEnvironmentFooter { + get { + return ResourceManager.GetString("CustomEnvironmentFooter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom Field Name. + /// + public static string CustomFieldName { + get { + return ResourceManager.GetString("CustomFieldName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Custom Fields. + /// + public static string CustomFields { + get { + return ResourceManager.GetString("CustomFields", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dark. + /// + public static string Dark { + get { + return ResourceManager.GetString("Dark", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password Updated. + /// + public static string DatePasswordUpdated { + get { + return ResourceManager.GetString("DatePasswordUpdated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Updated. + /// + public static string DateUpdated { + get { + return ResourceManager.GetString("DateUpdated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to December. + /// + public static string December { + get { + return ResourceManager.GetString("December", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decline. + /// public static string Decline { get { return ResourceManager.GetString("Decline", resourceCulture); } } + + /// + /// Looks up a localized string similar to Default. + /// + public static string Default { + get { + return ResourceManager.GetString("Default", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default dark theme. + /// + public static string DefaultDarkTheme { + get { + return ResourceManager.GetString("DefaultDarkTheme", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose the dark theme to use when using Default (System) theme while your device's dark mode is enabled.. + /// + public static string DefaultDarkThemeDescription { + get { + return ResourceManager.GetString("DefaultDarkThemeDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default URI match detection. + /// + public static string DefaultUriMatchDetection { + get { + return ResourceManager.GetString("DefaultUriMatchDetection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose the default way that URI match detection is handled for logins when performing actions such as auto-fill.. + /// + public static string DefaultUriMatchDetectionDescription { + get { + return ResourceManager.GetString("DefaultUriMatchDetectionDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + public static string Delete { + get { + return ResourceManager.GetString("Delete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete account. + /// + public static string DeleteAccount { + get { + return ResourceManager.GetString("DeleteAccount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your account and all vault data will be erased and unrecoverable. Are you sure you want to continue?. + /// + public static string DeleteAccountExplanation { + get { + return ResourceManager.GetString("DeleteAccountExplanation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deleting.... + /// + public static string Deleting { + get { + return ResourceManager.GetString("Deleting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deleting your account. + /// + public static string DeletingYourAccount { + get { + return ResourceManager.GetString("DeletingYourAccount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deleting your account is permanent. + /// + public static string DeletingYourAccountIsPermanent { + get { + return ResourceManager.GetString("DeletingYourAccountIsPermanent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deletion Date. + /// + public static string DeletionDate { + get { + return ResourceManager.GetString("DeletionDate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The Send will be permanently deleted on the specified date and time.. + /// + public static string DeletionDateInfo { + get { + return ResourceManager.GetString("DeletionDateInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deletion Time. + /// + public static string DeletionTime { + get { + return ResourceManager.GetString("DeletionTime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Denied. + /// + public static string Denied { + get { + return ResourceManager.GetString("Denied", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Deny login. + /// + public static string DenyLogIn { + get { + return ResourceManager.GetString("DenyLogIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Device type. + /// + public static string DeviceType { + get { + return ResourceManager.GetString("DeviceType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disabled. + /// + public static string Disabled { + get { + return ResourceManager.GetString("Disabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to One or more organization policies prevents your from exporting your personal vault.. + /// + public static string DisablePersonalVaultExportPolicyInEffect { + get { + return ResourceManager.GetString("DisablePersonalVaultExportPolicyInEffect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disable this Send so that no one can access it. + /// + public static string DisableSend { + get { + return ResourceManager.GetString("DisableSend", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Domain Name (required). + /// + public static string DomainNameRequiredParenthesis { + get { + return ResourceManager.GetString("DomainNameRequiredParenthesis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Download. + /// + public static string Download { + get { + return ResourceManager.GetString("Download", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Downloading.... + /// + public static string Downloading { + get { + return ResourceManager.GetString("Downloading", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you really want to delete? This cannot be undone.. + /// + public static string DoYouReallyWantToDelete { + get { + return ResourceManager.GetString("DoYouReallyWantToDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you really want to permanently delete? This cannot be undone.. + /// + public static string DoYouReallyWantToPermanentlyDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToPermanentlyDeleteCipher", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you really want to restore this item?. + /// + public static string DoYouReallyWantToRestoreCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToRestoreCipher", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you really want to send to the trash?. + /// + public static string DoYouReallyWantToSoftDeleteCipher { + get { + return ResourceManager.GetString("DoYouReallyWantToSoftDeleteCipher", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dr. + /// + public static string Dr { + get { + return ResourceManager.GetString("Dr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use draw-over. + /// + public static string DrawOver { + get { + return ResourceManager.GetString("DrawOver", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to When enabled, allows the Bitwarden Accessibility Service to display a popup when login fields are selected.. + /// + public static string DrawOverDescription { + get { + return ResourceManager.GetString("DrawOverDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If enabled, the Bitwarden Accessibility Service will display a popup when login fields are selected to assist with auto-filling your logins.. + /// + public static string DrawOverDescription2 { + get { + return ResourceManager.GetString("DrawOverDescription2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If enabled, accessibility will show a popup to augment the Autofill Service for older apps that don't support the Android Autofill Framework.. + /// + public static string DrawOverDescription3 { + get { + return ResourceManager.GetString("DrawOverDescription3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit. + /// + public static string Edit { + get { + return ResourceManager.GetString("Edit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Folder. + /// + public static string EditFolder { + get { + return ResourceManager.GetString("EditFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Item. + /// + public static string EditItem { + get { + return ResourceManager.GetString("EditItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Edit Send. + /// + public static string EditSend { + get { + return ResourceManager.GetString("EditSend", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email. + /// + public static string Email { + get { + return ResourceManager.GetString("Email", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email Address. + /// + public static string EmailAddress { + get { + return ResourceManager.GetString("EmailAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email (required). + /// + public static string EmailRequiredParenthesis { + get { + return ResourceManager.GetString("EmailRequiredParenthesis", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email Type. + /// + public static string EmailType { + get { + return ResourceManager.GetString("EmailType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email Us. + /// + public static string EmailUs { + get { + return ResourceManager.GetString("EmailUs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Email us directly to get help or leave feedback.. + /// + public static string EmailUsDescription { + get { + return ResourceManager.GetString("EmailUsDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable Automatic Syncing. + /// + public static string EnableAutomaticSyncing { + get { + return ResourceManager.GetString("EnableAutomaticSyncing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enabled. + /// + public static string Enabled { + get { + return ResourceManager.GetString("Enabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable sync on refresh. + /// + public static string EnableSyncOnRefresh { + get { + return ResourceManager.GetString("EnableSyncOnRefresh", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Syncing vault with pull down gesture.. + /// + public static string EnableSyncOnRefreshDescription { + get { + return ResourceManager.GetString("EnableSyncOnRefreshDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Account encryption keys are unique to each Bitwarden user account, so you can't import an encrypted export into a different account.. + /// + public static string EncExportAccountWarning { + get { + return ResourceManager.GetString("EncExportAccountWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This export encrypts your data using your account's encryption key. If you ever rotate your account's encryption key you should export again since you will not be able to decrypt this export file.. + /// + public static string EncExportKeyWarning { + get { + return ResourceManager.GetString("EncExportKeyWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your account email address to receive your master password hint.. + /// + public static string EnterEmailForHint { + get { + return ResourceManager.GetString("EnterEmailForHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter Key Manually. + /// + public static string EnterKeyManually { + get { + return ResourceManager.GetString("EnterKeyManually", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your PIN code.. + /// + public static string EnterPIN { + get { + return ResourceManager.GetString("EnterPIN", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the verification code that was sent to your email. + /// + public static string EnterTheVerificationCodeThatWasSentToYourEmail { + get { + return ResourceManager.GetString("EnterTheVerificationCodeThatWasSentToYourEmail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the 6 digit verification code from your authenticator app.. + /// + public static string EnterVerificationCodeApp { + get { + return ResourceManager.GetString("EnterVerificationCodeApp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the 6 digit verification code that was emailed to {0}.. + /// + public static string EnterVerificationCodeEmail { + get { + return ResourceManager.GetString("EnterVerificationCodeEmail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to One or more of the URLs entered are invalid. Please revise it and try to save again.. + /// + public static string EnvironmentPageUrlsError { + get { + return ResourceManager.GetString("EnvironmentPageUrlsError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The environment URLs have been saved.. + /// + public static string EnvironmentSaved { + get { + return ResourceManager.GetString("EnvironmentSaved", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exact. + /// + public static string Exact { + get { + return ResourceManager.GetString("Exact", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exit. + /// + public static string Exit { + get { + return ResourceManager.GetString("Exit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to exit Bitwarden?. + /// + public static string ExitConfirmation { + get { + return ResourceManager.GetString("ExitConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Re-enable app extension. + /// + public static string ExntesionReenable { + get { + return ResourceManager.GetString("ExntesionReenable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Expiration. + /// + public static string Expiration { + get { + return ResourceManager.GetString("Expiration", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Expiration Date. + /// + public static string ExpirationDate { + get { + return ResourceManager.GetString("ExpirationDate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If set, access to this Send will expire on the specified date and time.. + /// + public static string ExpirationDateInfo { + get { + return ResourceManager.GetString("ExpirationDateInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Expiration Month. + /// + public static string ExpirationMonth { + get { + return ResourceManager.GetString("ExpirationMonth", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Expiration Time. + /// + public static string ExpirationTime { + get { + return ResourceManager.GetString("ExpirationTime", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Expiration Year. + /// + public static string ExpirationYear { + get { + return ResourceManager.GetString("ExpirationYear", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Expired. + /// + public static string Expired { + get { + return ResourceManager.GetString("Expired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export vault. + /// + public static string ExportVault { + get { + return ResourceManager.GetString("ExportVault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Confirm Vault Export. + /// + public static string ExportVaultConfirmationTitle { + get { + return ResourceManager.GetString("ExportVaultConfirmationTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There was a problem exporting your vault. If the problem persists, you'll need to export from the web vault.. + /// + public static string ExportVaultFailure { + get { + return ResourceManager.GetString("ExportVaultFailure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your master password to export your vault data.. + /// + public static string ExportVaultMasterPasswordDescription { + get { + return ResourceManager.GetString("ExportVaultMasterPasswordDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vault exported successfully. + /// + public static string ExportVaultSuccess { + get { + return ResourceManager.GetString("ExportVaultSuccess", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This export contains your vault data in an unencrypted format. You should not store or send the exported file over unsecure channels (such as email). Delete it immediately after you are done using it.. + /// + public static string ExportVaultWarning { + get { + return ResourceManager.GetString("ExportVaultWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Extension activated!. + /// + public static string ExtensionActivated { + get { + return ResourceManager.GetString("ExtensionActivated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Almost done!. + /// + public static string ExtensionAlmostDone { + get { + return ResourceManager.GetString("ExtensionAlmostDone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable app extension. + /// + public static string ExtensionEnable { + get { + return ResourceManager.GetString("ExtensionEnable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to In Safari, find Bitwarden using the share icon (hint: scroll to the right on the bottom row of the menu).. + /// + public static string ExtensionInSafari { + get { + return ResourceManager.GetString("ExtensionInSafari", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get instant access to your passwords!. + /// + public static string ExtensionInstantAccess { + get { + return ResourceManager.GetString("ExtensionInstantAccess", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You're ready to log in!. + /// + public static string ExtensionReady { + get { + return ResourceManager.GetString("ExtensionReady", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your logins are now easily accessible from Safari, Chrome, and other supported apps.. + /// + public static string ExtensionSetup { + get { + return ResourceManager.GetString("ExtensionSetup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to In Safari and Chrome, find Bitwarden using the share icon (hint: scroll to the right on the bottom row of the share menu).. + /// + public static string ExtensionSetup2 { + get { + return ResourceManager.GetString("ExtensionSetup2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tap the Bitwarden icon in the menu to launch the extension.. + /// + public static string ExtensionTapIcon { + get { + return ResourceManager.GetString("ExtensionTapIcon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To turn on Bitwarden in Safari and other apps, tap the "more" icon on the bottom row of the menu.. + /// + public static string ExtensionTurnOn { + get { + return ResourceManager.GetString("ExtensionTurnOn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Face ID. + /// + public static string FaceID { + get { + return ResourceManager.GetString("FaceID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use Face ID to verify.. + /// + public static string FaceIDDirection { + get { + return ResourceManager.GetString("FaceIDDirection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Favorite. + /// + public static string Favorite { + get { + return ResourceManager.GetString("Favorite", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Favorites. + /// + public static string Favorites { + get { + return ResourceManager.GetString("Favorites", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Feature Unavailable. + /// + public static string FeatureUnavailable { + get { + return ResourceManager.GetString("FeatureUnavailable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to February. + /// + public static string February { + get { + return ResourceManager.GetString("February", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Authenticate WebAuthn. + /// + public static string Fido2AuthenticateWebAuthn { + get { + return ResourceManager.GetString("Fido2AuthenticateWebAuthn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please make sure your default browser supports WebAuthn and try again.. + /// + public static string Fido2CheckBrowser { + get { + return ResourceManager.GetString("Fido2CheckBrowser", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Authentication using FIDO2 WebAuthn, you can authenticate using an external security key.. + /// + public static string Fido2Desc { + get { + return ResourceManager.GetString("Fido2Desc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To continue, have your FIDO2 WebAuthn enabled security key ready, then follow the instructions after clicking 'Authenticate WebAuthn' on the next screen.. + /// + public static string Fido2Instruction { + get { + return ResourceManager.GetString("Fido2Instruction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Return to App. + /// + public static string Fido2ReturnToApp { + get { + return ResourceManager.GetString("Fido2ReturnToApp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FIDO2 WebAuthn. + /// + public static string Fido2Title { + get { + return ResourceManager.GetString("Fido2Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Boolean. + /// + public static string FieldTypeBoolean { + get { + return ResourceManager.GetString("FieldTypeBoolean", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hidden. + /// + public static string FieldTypeHidden { + get { + return ResourceManager.GetString("FieldTypeHidden", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Linked. + /// + public static string FieldTypeLinked { + get { + return ResourceManager.GetString("FieldTypeLinked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text. + /// + public static string FieldTypeText { + get { + return ResourceManager.GetString("FieldTypeText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 15 minutes. + /// + public static string FifteenMinutes { + get { + return ResourceManager.GetString("FifteenMinutes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File. + /// + public static string File { + get { + return ResourceManager.GetString("File", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File a Bug Report. + /// + public static string FileBugReport { + get { + return ResourceManager.GetString("FileBugReport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open an issue at our GitHub repository.. + /// + public static string FileBugReportDescription { + get { + return ResourceManager.GetString("FileBugReportDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File Format. + /// + public static string FileFormat { + get { + return ResourceManager.GetString("FileFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File Source. + /// + public static string FileSource { + get { + return ResourceManager.GetString("FileSource", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File type is not selected, tap to select.. + /// + public static string FileTypeIsNotSelected { + get { + return ResourceManager.GetString("FileTypeIsNotSelected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File type is selected.. + /// + public static string FileTypeIsSelected { + get { + return ResourceManager.GetString("FileTypeIsSelected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filter items by vault. + /// + public static string FilterByVault { + get { + return ResourceManager.GetString("FilterByVault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fingerprint. + /// + public static string Fingerprint { + get { + return ResourceManager.GetString("Fingerprint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use your fingerprint to verify.. + /// + public static string FingerprintDirection { + get { + return ResourceManager.GetString("FingerprintDirection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fingerprint phrase. + /// + public static string FingerprintPhrase { + get { + return ResourceManager.GetString("FingerprintPhrase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Firefox Relay. + /// + public static string FirefoxRelay { + get { + return ResourceManager.GetString("FirefoxRelay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to First Name. + /// + public static string FirstName { + get { + return ResourceManager.GetString("FirstName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 5 minutes. + /// + public static string FiveMinutes { + get { + return ResourceManager.GetString("FiveMinutes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Folder. + /// + public static string Folder { + get { + return ResourceManager.GetString("Folder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New folder created.. + /// + public static string FolderCreated { + get { + return ResourceManager.GetString("FolderCreated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Folder deleted.. + /// + public static string FolderDeleted { + get { + return ResourceManager.GetString("FolderDeleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Folder. + /// + public static string FolderNone { + get { + return ResourceManager.GetString("FolderNone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Folders. + /// + public static string Folders { + get { + return ResourceManager.GetString("Folders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Folder updated.. + /// + public static string FolderUpdated { + get { + return ResourceManager.GetString("FolderUpdated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} is not correctly formatted.. + /// + public static string FormattedIncorrectly { + get { + return ResourceManager.GetString("FormattedIncorrectly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Forwarded Email Alias. + /// + public static string ForwardedEmailAlias { + get { + return ResourceManager.GetString("ForwardedEmailAlias", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Generate an email alias with an external forwarding service.. + /// + public static string ForwardedEmailDescription { + get { + return ResourceManager.GetString("ForwardedEmailDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 4 hours. + /// + public static string FourHours { + get { + return ResourceManager.GetString("FourHours", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Full Name. + /// + public static string FullName { + get { + return ResourceManager.GetString("FullName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Generate Password. + /// + public static string GeneratePassword { + get { + return ResourceManager.GetString("GeneratePassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Generate Username. + /// + public static string GenerateUsername { + get { + return ResourceManager.GetString("GenerateUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Generator. + /// + public static string Generator { + get { + return ResourceManager.GetString("Generator", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to We were unable to process your request. Please try again or contact us.. + /// + public static string GenericErrorMessage { + get { + return ResourceManager.GetString("GenericErrorMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get your master password hint. + /// + public static string GetPasswordHint { + get { + return ResourceManager.GetString("GetPasswordHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Go to my vault. + /// + public static string GoToMyVault { + get { + return ResourceManager.GetString("GoToMyVault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Go To Website. + /// + public static string GoToWebsite { + get { + return ResourceManager.GetString("GoToWebsite", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Granted. + /// + public static string Granted { + get { + return ResourceManager.GetString("Granted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Help and feedback. + /// + public static string HelpAndFeedback { + get { + return ResourceManager.GetString("HelpAndFeedback", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide. + /// + public static string Hide { + get { + return ResourceManager.GetString("Hide", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hide my email address from recipients. + /// + public static string HideEmail { + get { + return ResourceManager.GetString("HideEmail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to When accessing the Send, hide the text by default. + /// + public static string HideTextByDefault { + get { + return ResourceManager.GetString("HideTextByDefault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hold your Yubikey near the top of the device.. + /// + public static string HoldYubikeyNearTop { + get { + return ResourceManager.GetString("HoldYubikeyNearTop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Host. + /// + public static string Host { + get { + return ResourceManager.GetString("Host", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icons. + /// + public static string Icons { + get { + return ResourceManager.GetString("Icons", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icons Server URL. + /// + public static string IconsUrl { + get { + return ResourceManager.GetString("IconsUrl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identities. + /// + public static string Identities { + get { + return ResourceManager.GetString("Identities", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identity Name. + /// + public static string IdentityName { + get { + return ResourceManager.GetString("IdentityName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identity Server URL. + /// + public static string IdentityUrl { + get { + return ResourceManager.GetString("IdentityUrl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Immediately. + /// + public static string Immediately { + get { + return ResourceManager.GetString("Immediately", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import items. + /// + public static string ImportItems { + get { + return ResourceManager.GetString("ImportItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You can bulk import items from the bitwarden.com web vault. Do you want to visit the website now?. + /// + public static string ImportItemsConfirmation { + get { + return ResourceManager.GetString("ImportItemsConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quickly bulk import your items from other password management apps.. + /// + public static string ImportItemsDescription { + get { + return ResourceManager.GetString("ImportItemsDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Include Number. + /// + public static string IncludeNumber { + get { + return ResourceManager.GetString("IncludeNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use inline autofill. + /// + public static string InlineAutofill { + get { + return ResourceManager.GetString("InlineAutofill", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use inline autofill if your selected IME (keyboard) supports it. If your configuration is not supported (or this option is disabled), the default Autofill overlay will be used.. + /// + public static string InlineAutofillDescription { + get { + return ResourceManager.GetString("InlineAutofillDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please connect to the internet before continuing.. + /// + public static string InternetConnectionRequiredMessage { + get { + return ResourceManager.GetString("InternetConnectionRequiredMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Internet Connection Required. + /// + public static string InternetConnectionRequiredTitle { + get { + return ResourceManager.GetString("InternetConnectionRequiredTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid email address.. + /// + public static string InvalidEmail { + get { + return ResourceManager.GetString("InvalidEmail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid Master Password. Try again.. + /// + public static string InvalidMasterPassword { + get { + return ResourceManager.GetString("InvalidMasterPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid PIN. Try again.. + /// + public static string InvalidPIN { + get { + return ResourceManager.GetString("InvalidPIN", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid Verification Code.. + /// + public static string InvalidVerificationCode { + get { + return ResourceManager.GetString("InvalidVerificationCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to IP address. + /// + public static string IpAddress { + get { + return ResourceManager.GetString("IpAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Item has been deleted.. + /// + public static string ItemDeleted { + get { + return ResourceManager.GetString("ItemDeleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Item Information. + /// + public static string ItemInformation { + get { + return ResourceManager.GetString("ItemInformation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Item has been restored.. + /// + public static string ItemRestored { + get { + return ResourceManager.GetString("ItemRestored", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Items. + /// + public static string Items { + get { + return ResourceManager.GetString("Items", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Items for {0}. + /// + public static string ItemsForUri { + get { + return ResourceManager.GetString("ItemsForUri", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Item has been shared.. + /// + public static string ItemShared { + get { + return ResourceManager.GetString("ItemShared", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Item has been sent to trash.. + /// + public static string ItemSoftDeleted { + get { + return ResourceManager.GetString("ItemSoftDeleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Item updated.. + /// + public static string ItemUpdated { + get { + return ResourceManager.GetString("ItemUpdated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to January. + /// + public static string January { + get { + return ResourceManager.GetString("January", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to July. + /// + public static string July { + get { + return ResourceManager.GetString("July", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to June. + /// + public static string June { + get { + return ResourceManager.GetString("June", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Just now. + /// + public static string JustNow { + get { + return ResourceManager.GetString("JustNow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last Name. + /// + public static string LastName { + get { + return ResourceManager.GetString("LastName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Last Sync:. + /// + public static string LastSync { + get { + return ResourceManager.GetString("LastSync", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Launch. + /// + public static string Launch { + get { + return ResourceManager.GetString("Launch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Learn More. + /// + public static string LearnMore { + get { + return ResourceManager.GetString("LearnMore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Learn about organizations. + /// + public static string LearnOrg { + get { + return ResourceManager.GetString("LearnOrg", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bitwarden allows you to share your vault items with others by using an organization account. Would you like to visit the bitwarden.com website to learn more?. + /// + public static string LearnOrgConfirmation { + get { + return ResourceManager.GetString("LearnOrgConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Leave Organization. + /// + public static string LeaveOrganization { + get { + return ResourceManager.GetString("LeaveOrganization", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Leave {0}?. + /// + public static string LeaveOrganizationName { + get { + return ResourceManager.GetString("LeaveOrganizationName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Length. + /// + public static string Length { + get { + return ResourceManager.GetString("Length", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to License Number. + /// + public static string LicenseNumber { + get { + return ResourceManager.GetString("LicenseNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Light. + /// + public static string Light { + get { + return ResourceManager.GetString("Light", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Loading. + /// + public static string Loading { + get { + return ResourceManager.GetString("Loading", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lock. + /// + public static string Lock { + get { + return ResourceManager.GetString("Lock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lock now. + /// + public static string LockNow { + get { + return ResourceManager.GetString("LockNow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Logged in as {0} on {1}.. + /// + public static string LoggedInAsOn { + get { + return ResourceManager.GetString("LoggedInAsOn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Logging in.... + /// + public static string LoggingIn { + get { + return ResourceManager.GetString("LoggingIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Log In. + /// + public static string LogIn { + get { + return ResourceManager.GetString("LogIn", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Login confirmed. + /// + public static string LogInAccepted { + get { + return ResourceManager.GetString("LogInAccepted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Login attempt by {0} on {1}. + /// + public static string LogInAttemptByXOnY { + get { + return ResourceManager.GetString("LogInAttemptByXOnY", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Login denied. + /// + public static string LogInDenied { + get { + return ResourceManager.GetString("LogInDenied", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your login session has expired.. + /// + public static string LoginExpired { + get { + return ResourceManager.GetString("LoginExpired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Login. + /// + public static string LogInNoun { + get { + return ResourceManager.GetString("LogInNoun", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Log in or create a new account to access your secure vault.. + /// + public static string LoginOrCreateNewAccount { + get { + return ResourceManager.GetString("LoginOrCreateNewAccount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Login requested. + /// + public static string LogInRequested { + get { + return ResourceManager.GetString("LogInRequested", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Login request has already expired.. + /// + public static string LoginRequestHasAlreadyExpired { + get { + return ResourceManager.GetString("LoginRequestHasAlreadyExpired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Logins. + /// + public static string Logins { + get { + return ResourceManager.GetString("Logins", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enterprise Single Sign-On. + /// + public static string LogInSso { + get { + return ResourceManager.GetString("LogInSso", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Currently unable to login with SSO. + /// + public static string LoginSsoError { + get { + return ResourceManager.GetString("LoginSsoError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quickly log in using your organization's single sign-on portal. Please enter your organization's identifier to begin.. + /// + public static string LogInSsoSummary { + get { + return ResourceManager.GetString("LogInSsoSummary", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Login Unavailable. + /// + public static string LoginUnavailable { + get { + return ResourceManager.GetString("LoginUnavailable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Log out. + /// + public static string LogOut { + get { + return ResourceManager.GetString("LogOut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to log out?. + /// + public static string LogoutConfirmation { + get { + return ResourceManager.GetString("LogoutConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lost authenticator app?. + /// + public static string Lost2FAApp { + get { + return ResourceManager.GetString("Lost2FAApp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lowercase (A to Z). + /// + public static string LowercaseAtoZ { + get { + return ResourceManager.GetString("LowercaseAtoZ", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Manage. + /// + public static string Manage { + get { + return ResourceManager.GetString("Manage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to March. + /// + public static string March { + get { + return ResourceManager.GetString("March", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Master Password. + /// + public static string MasterPassword { + get { + return ResourceManager.GetString("MasterPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password confirmation is not correct.. + /// + public static string MasterPasswordConfirmationValMessage { + get { + return ResourceManager.GetString("MasterPasswordConfirmationValMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The master password is the password you use to access your vault. It is very important that you do not forget your master password. There is no way to recover the password in the event that you forget it.. + /// + public static string MasterPasswordDescription { + get { + return ResourceManager.GetString("MasterPasswordDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Master Password Hint (optional). + /// + public static string MasterPasswordHint { + get { + return ResourceManager.GetString("MasterPasswordHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A master password hint can help you remember your password if you forget it.. + /// + public static string MasterPasswordHintDescription { + get { + return ResourceManager.GetString("MasterPasswordHintDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Master password must be at least 8 characters long.. + /// + public static string MasterPasswordLengthValMessage { + get { + return ResourceManager.GetString("MasterPasswordLengthValMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to One or more organization policies require your master password to meet the following requirements:. + /// + public static string MasterPasswordPolicyInEffect { + get { + return ResourceManager.GetString("MasterPasswordPolicyInEffect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password does not meet organization requirements. Please check the policy information and try again.. + /// + public static string MasterPasswordPolicyValidationMessage { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Invalid Password. + /// + public static string MasterPasswordPolicyValidationTitle { + get { + return ResourceManager.GetString("MasterPasswordPolicyValidationTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Match Detection. + /// + public static string MatchDetection { + get { + return ResourceManager.GetString("MatchDetection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Matching Items. + /// + public static string MatchingItems { + get { + return ResourceManager.GetString("MatchingItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maximum file size is 100 MB.. + /// + public static string MaxFileSize { + get { + return ResourceManager.GetString("MaxFileSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maximum Access Count. + /// + public static string MaximumAccessCount { + get { + return ResourceManager.GetString("MaximumAccessCount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If set, users will no longer be able to access this Send once the maximum access count is reached.. + /// + public static string MaximumAccessCountInfo { + get { + return ResourceManager.GetString("MaximumAccessCountInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Max access count reached. + /// + public static string MaximumAccessCountReached { + get { + return ResourceManager.GetString("MaximumAccessCountReached", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to May. + /// + public static string May { + get { + return ResourceManager.GetString("May", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Middle Name. + /// + public static string MiddleName { + get { + return ResourceManager.GetString("MiddleName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minimum Numbers. + /// + public static string MinNumbers { + get { + return ResourceManager.GetString("MinNumbers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minimum Special. + /// + public static string MinSpecial { + get { + return ResourceManager.GetString("MinSpecial", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Miscellaneous. + /// + public static string Miscellaneous { + get { + return ResourceManager.GetString("Miscellaneous", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to More. + /// + public static string More { + get { + return ResourceManager.GetString("More", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to More Settings. + /// + public static string MoreSettings { + get { + return ResourceManager.GetString("MoreSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move. + /// + public static string Move { + get { + return ResourceManager.GetString("Move", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} moved to {1}.. + /// + public static string MovedItemToOrg { + get { + return ResourceManager.GetString("MovedItemToOrg", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move Down. + /// + public static string MoveDown { + get { + return ResourceManager.GetString("MoveDown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move to Organization. + /// + public static string MoveToOrganization { + get { + return ResourceManager.GetString("MoveToOrganization", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose an organization that you wish to move this item to. Moving to an organization transfers ownership of the item to that organization. You will no longer be the direct owner of this item once it has been moved.. + /// + public static string MoveToOrgDesc { + get { + return ResourceManager.GetString("MoveToOrgDesc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move Up. + /// + public static string MoveUp { + get { + return ResourceManager.GetString("MoveUp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mr. + /// + public static string Mr { + get { + return ResourceManager.GetString("Mr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mrs. + /// + public static string Mrs { + get { + return ResourceManager.GetString("Mrs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ms. + /// + public static string Ms { + get { + return ResourceManager.GetString("Ms", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You must log into the main Bitwarden app before you can use the extension.. + /// + public static string MustLogInMainApp { + get { + return ResourceManager.GetString("MustLogInMainApp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You must log into the main Bitwarden app before you can use AutoFill.. + /// + public static string MustLogInMainAppAutofill { + get { + return ResourceManager.GetString("MustLogInMainAppAutofill", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to My Vault. + /// + public static string MyVault { + get { + return ResourceManager.GetString("MyVault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + public static string Name { + get { + return ResourceManager.GetString("Name", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A friendly name to describe this Send.. + /// + public static string NameInfo { + get { + return ResourceManager.GetString("NameInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Near. + /// + public static string Near { + get { + return ResourceManager.GetString("Near", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Never. + /// + public static string Never { + get { + return ResourceManager.GetString("Never", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Setting your lock options to “Never” keeps your vault available to anyone with access to your device. If you use this option, you should ensure that you keep your device properly protected.. + /// + public static string NeverLockWarning { + get { + return ResourceManager.GetString("NeverLockWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Custom Field. + /// + public static string NewCustomField { + get { + return ResourceManager.GetString("NewCustomField", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New item created.. + /// + public static string NewItemCreated { + get { + return ResourceManager.GetString("NewItemCreated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Password. + /// + public static string NewPassword { + get { + return ResourceManager.GetString("NewPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New send created.. + /// + public static string NewSendCreated { + get { + return ResourceManager.GetString("NewSendCreated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New URI. + /// + public static string NewUri { + get { + return ResourceManager.GetString("NewUri", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No. + /// + public static string No { + get { + return ResourceManager.GetString("No", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no attachments.. + /// + public static string NoAttachments { + get { + return ResourceManager.GetString("NoAttachments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no collections to list.. + /// + public static string NoCollectionsToList { + get { + return ResourceManager.GetString("NoCollectionsToList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no favorites in your vault.. + /// + public static string NoFavorites { + get { + return ResourceManager.GetString("NoFavorites", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No file chosen. + /// + public static string NoFileChosen { + get { + return ResourceManager.GetString("NoFileChosen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no folders to list.. + /// + public static string NoFoldersToList { + get { + return ResourceManager.GetString("NoFoldersToList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no items in your vault.. + /// + public static string NoItems { + get { + return ResourceManager.GetString("NoItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no items in this collection.. + /// + public static string NoItemsCollection { + get { + return ResourceManager.GetString("NoItemsCollection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no items in this folder.. + /// + public static string NoItemsFolder { + get { + return ResourceManager.GetString("NoItemsFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no items in your vault for {0}.. + /// + public static string NoItemsForUri { + get { + return ResourceManager.GetString("NoItemsForUri", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no items in your vault for this website/app. Tap to add one.. + /// + public static string NoItemsTap { + get { + return ResourceManager.GetString("NoItemsTap", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no items to list.. + /// + public static string NoItemsToList { + get { + return ResourceManager.GetString("NoItemsToList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no items in the trash.. + /// + public static string NoItemsTrash { + get { + return ResourceManager.GetString("NoItemsTrash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No organizations to list.. + /// + public static string NoOrgsToList { + get { + return ResourceManager.GetString("NoOrgsToList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No passwords to list.. + /// + public static string NoPasswordsToList { + get { + return ResourceManager.GetString("NoPasswordsToList", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Nord. + /// + public static string Nord { + get { + return ResourceManager.GetString("Nord", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There are no Sends in your account.. + /// + public static string NoSends { + get { + return ResourceManager.GetString("NoSends", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Notes. + /// + public static string Notes { + get { + return ResourceManager.GetString("Notes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Private notes about this Send.. + /// + public static string NotesInfo { + get { + return ResourceManager.GetString("NotesInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No thanks. + /// + public static string NoThanks { + get { + return ResourceManager.GetString("NoThanks", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This account has two-step login enabled, however, none of the configured two-step providers are supported on this device. Please use a supported device and/or add additional providers that are better supported across devices (such as an authenticator app).. + /// + public static string NoTwoStepAvailable { + get { + return ResourceManager.GetString("NoTwoStepAvailable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This login does not have a username or password configured.. + /// + public static string NoUsernamePasswordConfigured { + get { + return ResourceManager.GetString("NoUsernamePasswordConfigured", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to November. + /// + public static string November { + get { + return ResourceManager.GetString("November", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number. + /// + public static string Number { + get { + return ResourceManager.GetString("Number", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Number of Words. + /// + public static string NumberOfWords { + get { + return ResourceManager.GetString("NumberOfWords", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Numbers (0 to 9). + /// + public static string NumbersZeroToNine { + get { + return ResourceManager.GetString("NumbersZeroToNine", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to October. + /// + public static string October { + get { + return ResourceManager.GetString("October", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Off. + /// + public static string Off { + get { + return ResourceManager.GetString("Off", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ok. + /// + public static string Ok { + get { + return ResourceManager.GetString("Ok", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ok, got it!. + /// + public static string OkGotIt { + get { + return ResourceManager.GetString("OkGotIt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to On. + /// + public static string On { + get { + return ResourceManager.GetString("On", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Once the key is successfully entered, + ///select Add TOTP to store the key safely. + /// + public static string OnceTheKeyIsSuccessfullyEntered { + get { + return ResourceManager.GetString("OnceTheKeyIsSuccessfullyEntered", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 1 day. + /// + public static string OneDay { + get { + return ResourceManager.GetString("OneDay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 1 hour. + /// + public static string OneHour { + get { + return ResourceManager.GetString("OneHour", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 1 minute. + /// + public static string OneMinute { + get { + return ResourceManager.GetString("OneMinute", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to On app restart. + /// + public static string OnRestart { + get { + return ResourceManager.GetString("OnRestart", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open. + /// + public static string Open { + get { + return ResourceManager.GetString("Open", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Option defaults are set from the main Bitwarden app's password generator tool.. + /// + public static string OptionDefaults { + get { + return ResourceManager.GetString("OptionDefaults", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Options. + /// + public static string Options { + get { + return ResourceManager.GetString("Options", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Options are collapsed, tap to expand.. + /// + public static string OptionsCollapsed { + get { + return ResourceManager.GetString("OptionsCollapsed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Options are expanded, tap to collapse.. + /// + public static string OptionsExpanded { + get { + return ResourceManager.GetString("OptionsExpanded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Organization. + /// + public static string Organization { + get { + return ResourceManager.GetString("Organization", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Organization Identifier. + /// + public static string OrgIdentifier { + get { + return ResourceManager.GetString("OrgIdentifier", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Other. + /// + public static string Other { + get { + return ResourceManager.GetString("Other", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Permission. + /// + public static string OverlayPermission { + get { + return ResourceManager.GetString("OverlayPermission", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ownership. + /// + public static string Ownership { + get { + return ResourceManager.GetString("Ownership", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Passphrase. + /// + public static string Passphrase { + get { + return ResourceManager.GetString("Passphrase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Passport Number. + /// + public static string PassportNumber { + get { + return ResourceManager.GetString("PassportNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password. + /// + public static string Password { + get { + return ResourceManager.GetString("Password", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password auto-fill. + /// + public static string PasswordAutofill { + get { + return ResourceManager.GetString("PasswordAutofill", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Master password confirmation. + /// + public static string PasswordConfirmation { + get { + return ResourceManager.GetString("PasswordConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This action is protected, to continue please re-enter your master password to verify your identity.. + /// + public static string PasswordConfirmationDesc { + get { + return ResourceManager.GetString("PasswordConfirmationDesc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This password has been exposed {0} time(s) in data breaches. You should change it.. + /// + public static string PasswordExposed { + get { + return ResourceManager.GetString("PasswordExposed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password generated.. + /// + public static string PasswordGenerated { + get { + return ResourceManager.GetString("PasswordGenerated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password Generator. + /// + public static string PasswordGenerator { + get { + return ResourceManager.GetString("PasswordGenerator", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to One or more organization policies are affecting your generator settings. + /// + public static string PasswordGeneratorPolicyInEffect { + get { + return ResourceManager.GetString("PasswordGeneratorPolicyInEffect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password Hint. + /// + public static string PasswordHint { + get { + return ResourceManager.GetString("PasswordHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to We've sent you an email with your master password hint.. + /// + public static string PasswordHintAlert { + get { + return ResourceManager.GetString("PasswordHintAlert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password History. + /// + public static string PasswordHistory { + get { + return ResourceManager.GetString("PasswordHistory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Optionally require a password for users to access this Send.. + /// + public static string PasswordInfo { + get { + return ResourceManager.GetString("PasswordInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password is not visible, tap to show.. + /// + public static string PasswordIsNotVisibleTapToShow { + get { + return ResourceManager.GetString("PasswordIsNotVisibleTapToShow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password is visible, tap to hide.. + /// + public static string PasswordIsVisibleTapToHide { + get { + return ResourceManager.GetString("PasswordIsVisibleTapToHide", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to overwrite the current password?. + /// + public static string PasswordOverrideAlert { + get { + return ResourceManager.GetString("PasswordOverrideAlert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Master password re-prompt. + /// + public static string PasswordPrompt { + get { + return ResourceManager.GetString("PasswordPrompt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This password was not found in any known data breaches. It should be safe to use.. + /// + public static string PasswordSafe { + get { + return ResourceManager.GetString("PasswordSafe", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password Type. + /// + public static string PasswordType { + get { + return ResourceManager.GetString("PasswordType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pending deletion. + /// + public static string PendingDelete { + get { + return ResourceManager.GetString("PendingDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An organization policy is affecting your ownership options.. + /// + public static string PersonalOwnershipPolicyInEffect { + get { + return ResourceManager.GetString("PersonalOwnershipPolicyInEffect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Due to an Enterprise Policy, you are restricted from saving items to your personal vault. Change the Ownership option to an organization and choose from available Collections.. + /// + public static string PersonalOwnershipSubmitError { + get { + return ResourceManager.GetString("PersonalOwnershipSubmitError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Phone. + /// + public static string Phone { + get { + return ResourceManager.GetString("Phone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Photos. + /// + public static string Photos { + get { + return ResourceManager.GetString("Photos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PIN. + /// + public static string PIN { + get { + return ResourceManager.GetString("PIN", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to require unlocking with your master password when the application is restarted?. + /// + public static string PINRequireMasterPasswordRestart { + get { + return ResourceManager.GetString("PINRequireMasterPasswordRestart", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Plus Addressed Email. + /// + public static string PlusAddressedEmail { + get { + return ResourceManager.GetString("PlusAddressedEmail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use your email provider's subaddress capabilities. + /// + public static string PlusAddressedEmailDescription { + get { + return ResourceManager.GetString("PlusAddressedEmailDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Point your camera at the QR Code. + ///Scanning will happen automatically.. + /// + public static string PointYourCameraAtTheQRCode { + get { + return ResourceManager.GetString("PointYourCameraAtTheQRCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Contain one or more lowercase characters. + /// + public static string PolicyInEffectLowercase { + get { + return ResourceManager.GetString("PolicyInEffectLowercase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minimum complexity score of {0}. + /// + public static string PolicyInEffectMinComplexity { + get { + return ResourceManager.GetString("PolicyInEffectMinComplexity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minimum length of {0}. + /// + public static string PolicyInEffectMinLength { + get { + return ResourceManager.GetString("PolicyInEffectMinLength", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Contain one or more numbers. + /// + public static string PolicyInEffectNumbers { + get { + return ResourceManager.GetString("PolicyInEffectNumbers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Contain one or more of the following special characters: {0}. + /// + public static string PolicyInEffectSpecial { + get { + return ResourceManager.GetString("PolicyInEffectSpecial", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Contain one or more uppercase characters. + /// + public static string PolicyInEffectUppercase { + get { + return ResourceManager.GetString("PolicyInEffectUppercase", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Possible Matching Items. + /// + public static string PossibleMatchingItems { + get { + return ResourceManager.GetString("PossibleMatchingItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A premium membership is required to use this feature.. + /// + public static string PremiumRequired { + get { + return ResourceManager.GetString("PremiumRequired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Premium subscription required. + /// + public static string PremiumSubscriptionRequired { + get { + return ResourceManager.GetString("PremiumSubscriptionRequired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Privacy Policy. + /// + public static string PrivacyPolicy { + get { + return ResourceManager.GetString("PrivacyPolicy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bitwarden keeps your vault automatically synced by using push notifications. For the best possible experience, please select "Allow" on the following prompt when asked to enable push notifications.. + /// + public static string PushNotificationAlert { + get { + return ResourceManager.GetString("PushNotificationAlert", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Random. + /// + public static string Random { + get { + return ResourceManager.GetString("Random", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Random Word. + /// + public static string RandomWord { + get { + return ResourceManager.GetString("RandomWord", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rate the app. + /// + public static string RateTheApp { + get { + return ResourceManager.GetString("RateTheApp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please consider helping us out with a good review!. + /// + public static string RateTheAppDescription { + get { + return ResourceManager.GetString("RateTheAppDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Receive push notifications for new login requests. + /// + public static string ReceivePushNotificationsForNewLoginRequests { + get { + return ResourceManager.GetString("ReceivePushNotificationsForNewLoginRequests", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Recovery Code. + /// + public static string RecoveryCodeTitle { + get { + return ResourceManager.GetString("RecoveryCodeTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Regenerate Password. + /// + public static string RegeneratePassword { + get { + return ResourceManager.GetString("RegeneratePassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Regular expression. + /// + public static string RegEx { + get { + return ResourceManager.GetString("RegEx", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remember me. + /// + public static string RememberMe { + get { + return ResourceManager.GetString("RememberMe", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove. + /// + public static string Remove { + get { + return ResourceManager.GetString("Remove", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove Account. + /// + public static string RemoveAccount { + get { + return ResourceManager.GetString("RemoveAccount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove this account?. + /// + public static string RemoveAccountConfirmation { + get { + return ResourceManager.GetString("RemoveAccountConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove Master Password. + /// + public static string RemoveMasterPassword { + get { + return ResourceManager.GetString("RemoveMasterPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} is using SSO with customer-managed encryption. Continuing will remove your Master Password from your account and require SSO to login.. + /// + public static string RemoveMasterPasswordWarning { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If you do not want to remove your Master Password, you may leave this organization.. + /// + public static string RemoveMasterPasswordWarning2 { + get { + return ResourceManager.GetString("RemoveMasterPasswordWarning2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove Password. + /// + public static string RemovePassword { + get { + return ResourceManager.GetString("RemovePassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removing password. + /// + public static string RemovingSendPassword { + get { + return ResourceManager.GetString("RemovingSendPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Request one-time password. + /// + public static string RequestOTP { + get { + return ResourceManager.GetString("RequestOTP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Resend Code. + /// + public static string ResendCode { + get { + return ResourceManager.GetString("ResendCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This organization has an enterprise policy that will automatically enroll you in password reset. Enrollment will allow organization administrators to change your master password.. + /// + public static string ResetPasswordAutoEnrollInviteWarning { + get { + return ResourceManager.GetString("ResetPasswordAutoEnrollInviteWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restore. + /// + public static string Restore { + get { + return ResourceManager.GetString("Restore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restoring.... + /// + public static string Restoring { + get { + return ResourceManager.GetString("Restoring", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Re-type Master Password. + /// + public static string RetypeMasterPassword { + get { + return ResourceManager.GetString("RetypeMasterPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + public static string Save { + get { + return ResourceManager.GetString("Save", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Attachment saved successfully. + /// + public static string SaveAttachmentSuccess { + get { + return ResourceManager.GetString("SaveAttachmentSuccess", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Saving.... + /// + public static string Saving { + get { + return ResourceManager.GetString("Saving", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scan QR Code. + /// + public static string ScanQRCode { + get { + return ResourceManager.GetString("ScanQRCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Scan QR Code. + /// + public static string ScanQrTitle { + get { + return ResourceManager.GetString("ScanQrTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search. + /// + public static string Search { + get { + return ResourceManager.GetString("Search", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search collection. + /// + public static string SearchCollection { + get { + return ResourceManager.GetString("SearchCollection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search File Sends. + /// + public static string SearchFileSends { + get { + return ResourceManager.GetString("SearchFileSends", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search {0}. + /// + public static string SearchGroup { + get { + return ResourceManager.GetString("SearchGroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Sends. + /// + public static string SearchSends { + get { + return ResourceManager.GetString("SearchSends", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Text Sends. + /// + public static string SearchTextSends { + get { + return ResourceManager.GetString("SearchTextSends", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search trash. + /// + public static string SearchTrash { + get { + return ResourceManager.GetString("SearchTrash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Vault. + /// + public static string SearchVault { + get { + return ResourceManager.GetString("SearchVault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Secure Notes. + /// + public static string SecureNotes { + get { + return ResourceManager.GetString("SecureNotes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Security. + /// + public static string Security { + get { + return ResourceManager.GetString("Security", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Security Code. + /// + public static string SecurityCode { + get { + return ResourceManager.GetString("SecurityCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select. + /// + public static string Select { + get { + return ResourceManager.GetString("Select", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to . + /// + public static string SelectAddTotpToStoreTheKeySafely { + get { + return ResourceManager.GetString("SelectAddTotpToStoreTheKeySafely", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You must select at least one collection.. + /// + public static string SelectOneCollection { + get { + return ResourceManager.GetString("SelectOneCollection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to What type of custom field do you want to add?. + /// + public static string SelectTypeField { + get { + return ResourceManager.GetString("SelectTypeField", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Self-hosted Environment. + /// + public static string SelfHostedEnvironment { + get { + return ResourceManager.GetString("SelfHostedEnvironment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specify the base URL of your on-premise hosted Bitwarden installation.. + /// + public static string SelfHostedEnvironmentFooter { + get { + return ResourceManager.GetString("SelfHostedEnvironmentFooter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send. + /// + public static string Send { + get { + return ResourceManager.GetString("Send", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send Code. + /// + public static string SendCode { + get { + return ResourceManager.GetString("SendCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send has been deleted.. + /// + public static string SendDeleted { + get { + return ResourceManager.GetString("SendDeleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Due to an enterprise policy, you are only able to delete an existing Send.. + /// + public static string SendDisabledWarning { + get { + return ResourceManager.GetString("SendDisabledWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You must verify your email to use files with Send. You can verify your email in the web vault.. + /// + public static string SendFileEmailVerificationRequired { + get { + return ResourceManager.GetString("SendFileEmailVerificationRequired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Free accounts are restricted to sharing text only. A premium membership is required to use files with Send.. + /// + public static string SendFilePremiumRequired { + get { + return ResourceManager.GetString("SendFilePremiumRequired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sending. + /// + public static string Sending { + get { + return ResourceManager.GetString("Sending", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sending code. + /// + public static string SendingCode { + get { + return ResourceManager.GetString("SendingCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send link. + /// + public static string SendLink { + get { + return ResourceManager.GetString("SendLink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to One or more organization policies are affecting your Send options.. + /// + public static string SendOptionsPolicyInEffect { + get { + return ResourceManager.GetString("SendOptionsPolicyInEffect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password has been removed.. + /// + public static string SendPasswordRemoved { + get { + return ResourceManager.GetString("SendPasswordRemoved", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sends. + /// + public static string Sends { + get { + return ResourceManager.GetString("Sends", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send updated.. + /// + public static string SendUpdated { + get { + return ResourceManager.GetString("SendUpdated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send verification code email again. + /// + public static string SendVerificationCodeAgain { + get { + return ResourceManager.GetString("SendVerificationCodeAgain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send a verification code to your email. + /// + public static string SendVerificationCodeToEmail { + get { + return ResourceManager.GetString("SendVerificationCodeToEmail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to September. + /// + public static string September { + get { + return ResourceManager.GetString("September", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Server URL. + /// + public static string ServerUrl { + get { + return ResourceManager.GetString("ServerUrl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service. + /// + public static string Service { + get { + return ResourceManager.GetString("Service", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set Master Password. + /// + public static string SetMasterPassword { + get { + return ResourceManager.GetString("SetMasterPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to In order to complete logging in with SSO, please set a master password to access and protect your vault.. + /// + public static string SetMasterPasswordSummary { + get { + return ResourceManager.GetString("SetMasterPasswordSummary", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set PIN. + /// + public static string SetPIN { + get { + return ResourceManager.GetString("SetPIN", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set your PIN code for unlocking Bitwarden. Your PIN settings will be reset if you ever fully log out of the application.. + /// + public static string SetPINDescription { + get { + return ResourceManager.GetString("SetPINDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter a 4 digit PIN code to unlock the app with.. + /// + public static string SetPINDirection { + get { + return ResourceManager.GetString("SetPINDirection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Settings. + /// + public static string Settings { + get { + return ResourceManager.GetString("Settings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set up TOTP. + /// + public static string SetupTotp { + get { + return ResourceManager.GetString("SetupTotp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 7 days. + /// + public static string SevenDays { + get { + return ResourceManager.GetString("SevenDays", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Share. + /// + public static string Share { + get { + return ResourceManager.GetString("Share", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Shared. + /// + public static string Shared { + get { + return ResourceManager.GetString("Shared", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Share Item. + /// + public static string ShareItem { + get { + return ResourceManager.GetString("ShareItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Share Link. + /// + public static string ShareLink { + get { + return ResourceManager.GetString("ShareLink", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Share this Send upon save. + /// + public static string ShareOnSave { + get { + return ResourceManager.GetString("ShareOnSave", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show. + /// + public static string Show { + get { + return ResourceManager.GetString("Show", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show website icons. + /// + public static string ShowWebsiteIcons { + get { + return ResourceManager.GetString("ShowWebsiteIcons", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show a recognizable image next to each login.. + /// + public static string ShowWebsiteIconsDescription { + get { + return ResourceManager.GetString("ShowWebsiteIconsDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SimpleLogin. + /// + public static string SimpleLogin { + get { + return ResourceManager.GetString("SimpleLogin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sending to trash.... + /// + public static string SoftDeleting { + get { + return ResourceManager.GetString("SoftDeleting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Special Characters (!@#$%^&*). + /// + public static string SpecialCharacters { + get { + return ResourceManager.GetString("SpecialCharacters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Social Security Number. + /// + public static string SSN { + get { + return ResourceManager.GetString("SSN", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Starts with. + /// + public static string StartsWith { + get { + return ResourceManager.GetString("StartsWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to State / Province. + /// + public static string StateProvince { + get { + return ResourceManager.GetString("StateProvince", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Status. + /// + public static string Status { + get { + return ResourceManager.GetString("Status", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Submit. + /// + public static string Submit { + get { + return ResourceManager.GetString("Submit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Submit crash logs. + /// + public static string SubmitCrashLogs { + get { + return ResourceManager.GetString("SubmitCrashLogs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Help Bitwarden improve app stability by submitting crash reports.. + /// + public static string SubmitCrashLogsDescription { + get { + return ResourceManager.GetString("SubmitCrashLogsDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Submitting.... + /// + public static string Submitting { + get { + return ResourceManager.GetString("Submitting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Would you like to switch to it now?. + /// + public static string SwitchToAlreadyAddedAccountConfirmation { + get { + return ResourceManager.GetString("SwitchToAlreadyAddedAccountConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sync. + /// + public static string Sync { + get { + return ResourceManager.GetString("Sync", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Syncing.... + /// + public static string Syncing { + get { + return ResourceManager.GetString("Syncing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Syncing complete.. + /// + public static string SyncingComplete { + get { + return ResourceManager.GetString("SyncingComplete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Syncing failed.. + /// + public static string SyncingFailed { + get { + return ResourceManager.GetString("SyncingFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sync vault now. + /// + public static string SyncVaultNow { + get { + return ResourceManager.GetString("SyncVaultNow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tap to go back. + /// + public static string TapToGoBack { + get { + return ResourceManager.GetString("TapToGoBack", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 10 seconds. + /// + public static string TenSeconds { + get { + return ResourceManager.GetString("TenSeconds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Terms of Service. + /// + public static string TermsOfService { + get { + return ResourceManager.GetString("TermsOfService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text. + /// + public static string Text { + get { + return ResourceManager.GetString("Text", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text type is not selected, tap to select.. + /// + public static string TextTypeIsNotSelected { + get { + return ResourceManager.GetString("TextTypeIsNotSelected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text type is selected.. + /// + public static string TextTypeIsSelected { + get { + return ResourceManager.GetString("TextTypeIsSelected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Thank You. + /// + public static string ThankYou { + get { + return ResourceManager.GetString("ThankYou", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Theme. + /// + public static string Theme { + get { + return ResourceManager.GetString("Theme", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your theme changes will apply when the app is restarted.. + /// + public static string ThemeAppliedOnRestart { + get { + return ResourceManager.GetString("ThemeAppliedOnRestart", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default (System). + /// + public static string ThemeDefault { + get { + return ResourceManager.GetString("ThemeDefault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change the application's color theme.. + /// + public static string ThemeDescription { + get { + return ResourceManager.GetString("ThemeDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 30 days. + /// + public static string ThirtyDays { + get { + return ResourceManager.GetString("ThirtyDays", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 30 minutes. + /// + public static string ThirtyMinutes { + get { + return ResourceManager.GetString("ThirtyMinutes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 30 seconds. + /// + public static string ThirtySeconds { + get { + return ResourceManager.GetString("ThirtySeconds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 3 days. + /// + public static string ThreeDays { + get { + return ResourceManager.GetString("ThreeDays", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Time. + /// + public static string Time { + get { + return ResourceManager.GetString("Time", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Title. + /// + public static string Title { + get { + return ResourceManager.GetString("Title", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Toggle Visibility. + /// + public static string ToggleVisibility { + get { + return ResourceManager.GetString("ToggleVisibility", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tools. + /// + public static string Tools { + get { + return ResourceManager.GetString("Tools", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to TOTP. + /// + public static string Totp { + get { + return ResourceManager.GetString("Totp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Touch ID. + /// + public static string TouchID { + get { + return ResourceManager.GetString("TouchID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Translations. + /// + public static string Translations { + get { + return ResourceManager.GetString("Translations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Trash. + /// + public static string Trash { + get { + return ResourceManager.GetString("Trash", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try again. + /// + public static string TryAgain { + get { + return ResourceManager.GetString("TryAgain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 20 seconds. + /// + public static string TwentySeconds { + get { + return ResourceManager.GetString("TwentySeconds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 2 days. + /// + public static string TwoDays { + get { + return ResourceManager.GetString("TwoDays", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 2 minutes. + /// + public static string TwoMinutes { + get { + return ResourceManager.GetString("TwoMinutes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Two-step login. + /// + public static string TwoStepLogin { + get { + return ResourceManager.GetString("TwoStepLogin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now?. + /// + public static string TwoStepLoginConfirmation { + get { + return ResourceManager.GetString("TwoStepLoginConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Two-step Login Options. + /// + public static string TwoStepLoginOptions { + get { + return ResourceManager.GetString("TwoStepLoginOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type. + /// + public static string Type { + get { + return ResourceManager.GetString("Type", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Card. + /// + public static string TypeCard { + get { + return ResourceManager.GetString("TypeCard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File. + /// + public static string TypeFile { + get { + return ResourceManager.GetString("TypeFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The file you want to send.. + /// + public static string TypeFileInfo { + get { + return ResourceManager.GetString("TypeFileInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identity. + /// + public static string TypeIdentity { + get { + return ResourceManager.GetString("TypeIdentity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Login. + /// + public static string TypeLogin { + get { + return ResourceManager.GetString("TypeLogin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Types. + /// + public static string Types { + get { + return ResourceManager.GetString("Types", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Secure Note. + /// + public static string TypeSecureNote { + get { + return ResourceManager.GetString("TypeSecureNote", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Text. + /// + public static string TypeText { + get { + return ResourceManager.GetString("TypeText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The text you want to send.. + /// + public static string TypeTextInfo { + get { + return ResourceManager.GetString("TypeTextInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to download file.. + /// + public static string UnableToDownloadFile { + get { + return ResourceManager.GetString("UnableToDownloadFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your device cannot open this type of file.. + /// + public static string UnableToOpenFile { + get { + return ResourceManager.GetString("UnableToOpenFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to There was a problem saving this attachment. If the problem persists, you can save it from the web vault.. + /// + public static string UnableToSaveAttachment { + get { + return ResourceManager.GetString("UnableToSaveAttachment", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unknown {0} error occurred.. + /// + public static string UnknownXErrorMessage { + get { + return ResourceManager.GetString("UnknownXErrorMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unlock. + /// + public static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unlock Vault. + /// + public static string UnlockVault { + get { + return ResourceManager.GetString("UnlockVault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unlock with {0}. + /// + public static string UnlockWith { + get { + return ResourceManager.GetString("UnlockWith", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unlock with PIN code. + /// + public static string UnlockWithPIN { + get { + return ResourceManager.GetString("UnlockWithPIN", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Updated Master Password. + /// + public static string UpdatedMasterPassword { + get { + return ResourceManager.GetString("UpdatedMasterPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You cannot use this feature until you update your encryption key.. + /// + public static string UpdateKey { + get { + return ResourceManager.GetString("UpdateKey", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update Master Password. + /// + public static string UpdateMasterPassword { + get { + return ResourceManager.GetString("UpdateMasterPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your Master Password was recently changed by an administrator in your organization. In order to access the vault, you must update your Master Password now. Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices may continue to remain active for up to one hour.. + /// + public static string UpdateMasterPasswordWarning { + get { + return ResourceManager.GetString("UpdateMasterPasswordWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Currently unable to update password. + /// + public static string UpdatePasswordError { + get { + return ResourceManager.GetString("UpdatePasswordError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Updating Password. + /// + public static string UpdatingPassword { + get { + return ResourceManager.GetString("UpdatingPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Uppercase (A to Z). + /// + public static string UppercaseAtoZ { + get { + return ResourceManager.GetString("UppercaseAtoZ", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to URI. + /// + public static string URI { + get { + return ResourceManager.GetString("URI", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to URI Match Detection. + /// + public static string URIMatchDetection { + get { + return ResourceManager.GetString("URIMatchDetection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to URI {0}. + /// + public static string URIPosition { + get { + return ResourceManager.GetString("URIPosition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to URIs. + /// + public static string URIs { + get { + return ResourceManager.GetString("URIs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use another two-step login method. + /// + public static string UseAnotherTwoStepMethod { + get { + return ResourceManager.GetString("UseAnotherTwoStepMethod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use Biometrics To Unlock. + /// + public static string UseBiometricsToUnlock { + get { + return ResourceManager.GetString("UseBiometricsToUnlock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use Face ID To Unlock. + /// + public static string UseFaceIDToUnlock { + get { + return ResourceManager.GetString("UseFaceIDToUnlock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use Fingerprint to Unlock. + /// + public static string UseFingerprintToUnlock { + get { + return ResourceManager.GetString("UseFingerprintToUnlock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Username. + /// + public static string Username { + get { + return ResourceManager.GetString("Username", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Username Type. + /// + public static string UsernameType { + get { + return ResourceManager.GetString("UsernameType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use this device to approve login requests made from other devices.. + /// + public static string UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices { + get { + return ResourceManager.GetString("UseThisDeviceToApproveLoginRequestsMadeFromOtherDevices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Validating. + /// + public static string Validating { + get { + return ResourceManager.GetString("Validating", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The {0} field is required.. + /// + public static string ValidationFieldRequired { + get { + return ResourceManager.GetString("ValidationFieldRequired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Value. + /// + public static string Value { + get { + return ResourceManager.GetString("Value", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} has been copied.. + /// + public static string ValueHasBeenCopied { + get { + return ResourceManager.GetString("ValueHasBeenCopied", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vault: {0}. + /// + public static string VaultFilterDescription { + get { + return ResourceManager.GetString("VaultFilterDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vault is locked. + /// + public static string VaultIsLocked { + get { + return ResourceManager.GetString("VaultIsLocked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your vault is locked. Verify your identity to continue.. + /// + public static string VaultLockedIdentity { + get { + return ResourceManager.GetString("VaultLockedIdentity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your vault is locked. Verify your master password to continue.. + /// + public static string VaultLockedMasterPassword { + get { + return ResourceManager.GetString("VaultLockedMasterPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your vault is locked. Verify your PIN code to continue.. + /// + public static string VaultLockedPIN { + get { + return ResourceManager.GetString("VaultLockedPIN", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vaults. + /// + public static string Vaults { + get { + return ResourceManager.GetString("Vaults", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vault timeout. + /// + public static string VaultTimeout { + get { + return ResourceManager.GetString("VaultTimeout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Vault timeout action. + /// + public static string VaultTimeoutAction { + get { + return ResourceManager.GetString("VaultTimeoutAction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Logging out will remove all access to your vault and requires online authentication after the timeout period. Are you sure you want to use this setting?. + /// + public static string VaultTimeoutLogOutConfirmation { + get { + return ResourceManager.GetString("VaultTimeoutLogOutConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your organization policies are affecting your vault timeout. Maximum allowed Vault Timeout is {0} hour(s) and {1} minute(s). + /// + public static string VaultTimeoutPolicyInEffect { + get { + return ResourceManager.GetString("VaultTimeoutPolicyInEffect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your vault timeout exceeds the restrictions set by your organization.. + /// + public static string VaultTimeoutToLarge { + get { + return ResourceManager.GetString("VaultTimeoutToLarge", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verification Code. + /// + public static string VerificationCode { + get { + return ResourceManager.GetString("VerificationCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verification Codes. + /// + public static string VerificationCodes { + get { + return ResourceManager.GetString("VerificationCodes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verification Code (TOTP). + /// + public static string VerificationCodeTotp { + get { + return ResourceManager.GetString("VerificationCodeTotp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not send verification email. Try again.. + /// + public static string VerificationEmailNotSent { + get { + return ResourceManager.GetString("VerificationEmailNotSent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verification email sent.. + /// + public static string VerificationEmailSent { + get { + return ResourceManager.GetString("VerificationEmailSent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verify Face ID. + /// + public static string VerifyFaceID { + get { + return ResourceManager.GetString("VerifyFaceID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verify Fingerprint. + /// + public static string VerifyFingerprint { + get { + return ResourceManager.GetString("VerifyFingerprint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verifying. + /// + public static string Verifying { + get { + return ResourceManager.GetString("Verifying", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verify Master Password. + /// + public static string VerifyMasterPassword { + get { + return ResourceManager.GetString("VerifyMasterPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verify PIN. + /// + public static string VerifyPIN { + get { + return ResourceManager.GetString("VerifyPIN", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Version. + /// + public static string Version { + get { + return ResourceManager.GetString("Version", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View. + /// + public static string View { + get { + return ResourceManager.GetString("View", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View Item. + /// + public static string ViewItem { + get { + return ResourceManager.GetString("ViewItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Visit Our Website. + /// + public static string VisitOurWebsite { + get { + return ResourceManager.GetString("VisitOurWebsite", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Visit our website to get help, news, email us, and/or learn more about how to use Bitwarden.. + /// + public static string VisitOurWebsiteDescription { + get { + return ResourceManager.GetString("VisitOurWebsiteDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warning. + /// + public static string Warning { + get { + return ResourceManager.GetString("Warning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Website. + /// + public static string Website { + get { + return ResourceManager.GetString("Website", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Website (required). + /// + public static string WebsiteRequired { + get { + return ResourceManager.GetString("WebsiteRequired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bitwarden web vault. + /// + public static string WebVault { + get { + return ResourceManager.GetString("WebVault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Web Vault Server URL. + /// + public static string WebVaultUrl { + get { + return ResourceManager.GetString("WebVaultUrl", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to What would you like to generate?. + /// + public static string WhatWouldYouLikeToGenerate { + get { + return ResourceManager.GetString("WhatWouldYouLikeToGenerate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Who owns this item?. + /// + public static string WhoOwnsThisItem { + get { + return ResourceManager.GetString("WhoOwnsThisItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows Hello. + /// + public static string WindowsHello { + get { + return ResourceManager.GetString("WindowsHello", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Word Separator. + /// + public static string WordSeparator { + get { + return ResourceManager.GetString("WordSeparator", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} minutes ago. + /// + public static string XMinutesAgo { + get { + return ResourceManager.GetString("XMinutesAgo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yes. + /// + public static string Yes { + get { + return ResourceManager.GetString("Yes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yes, and Save. + /// + public static string YesAndSave { + get { + return ResourceManager.GetString("YesAndSave", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your account has been permanently deleted. + /// + public static string YourAccountHasBeenPermanentlyDeleted { + get { + return ResourceManager.GetString("YourAccountHasBeenPermanentlyDeleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Your account's fingerprint phrase. + /// + public static string YourAccountsFingerprint { + get { + return ResourceManager.GetString("YourAccountsFingerprint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To continue, hold your YubiKey NEO against the back of the device or insert your YubiKey into your device's USB port, then touch its button.. + /// + public static string YubiKeyInstruction { + get { + return ResourceManager.GetString("YubiKeyInstruction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To continue, hold your YubiKey NEO against the back of the device.. + /// + public static string YubiKeyInstructionIos { + get { + return ResourceManager.GetString("YubiKeyInstructionIos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to YubiKey Security Key. + /// + public static string YubiKeyTitle { + get { + return ResourceManager.GetString("YubiKeyTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zip / Postal Code. + /// + public static string ZipPostalCode { + get { + return ResourceManager.GetString("ZipPostalCode", resourceCulture); + } + } } } diff --git a/src/App/Resources/AppResources.resx b/src/App/Resources/AppResources.resx index 7afdd3eea..01ac38ea9 100644 --- a/src/App/Resources/AppResources.resx +++ b/src/App/Resources/AppResources.resx @@ -2461,4 +2461,7 @@ select Add TOTP to store the key safely Decline + + Login request has already expired. + diff --git a/src/Core/Constants.cs b/src/Core/Constants.cs index 299448082..fb5b4b300 100644 --- a/src/Core/Constants.cs +++ b/src/Core/Constants.cs @@ -36,6 +36,7 @@ public const int SelectFilePermissionRequestCode = 43; public const int SaveFileRequestCode = 44; public const int TotpDefaultTimer = 30; + public const int PasswordlessNotificationTimeoutInMinutes = 15; public static readonly string[] AndroidAllClearCipherCacheKeys = {