From 0346497f45e80bc8210b5e7a74b0cea2d6129cec Mon Sep 17 00:00:00 2001 From: Bruce Peterson Date: Wed, 8 Nov 2017 21:12:41 -0500 Subject: [PATCH 1/3] Added dialogs and options for new config, path, or importing a file --- mRemoteV1/App/Runtime.cs | 44 +- .../Connections/XmlConnectionsLoader.cs | 4 + mRemoteV1/Connection/ConnectionsService.cs | 1 + .../Resources/Language/Language.Designer.cs | 14874 ++++++++-------- mRemoteV1/Resources/Language/Language.resx | 12 + 5 files changed, 7515 insertions(+), 7420 deletions(-) diff --git a/mRemoteV1/App/Runtime.cs b/mRemoteV1/App/Runtime.cs index 5a650713c..d7449c4b9 100644 --- a/mRemoteV1/App/Runtime.cs +++ b/mRemoteV1/App/Runtime.cs @@ -138,7 +138,49 @@ namespace mRemoteNG.App if (ex is FileNotFoundException && !withDialog) { MessageCollector.AddExceptionMessage(string.Format(Language.strConnectionsFileCouldNotBeLoadedNew, connectionsLoader.ConnectionFileName), ex, MessageClass.InformationMsg); - ConnectionsService.NewConnections(connectionsLoader.ConnectionFileName); + + string[] commandButtons = + { + Language.ConfigurationCreateNew, + Language.ConfigurationCustomPath, + Language.ConfigurationImportFile, + Language.strMenuExit + }; + + bool answered = false; + while (!answered) + { + try + { + CTaskDialog.ShowTaskDialogBox(GeneralAppInfo.ProductName, Language.ConfigurationFileNotFound, "", "", "", "", "", string.Join(" | ", commandButtons), ETaskDialogButtons.None, ESysIcons.Question, ESysIcons.Question); + + switch (CTaskDialog.CommandButtonResult) + { + case 0: + ConnectionsService.NewConnections(connectionsLoader.ConnectionFileName); + answered = true; + break; + case 1: + LoadConnections(true); + answered = true; + break; + case 2: + ConnectionsService.NewConnections(connectionsLoader.ConnectionFileName); + Import.ImportFromFile(ConnectionsService.ConnectionTreeModel.RootNodes[0]); + answered = true; + break; + case 3: + Application.Exit(); + answered = true; + break; + } + } + catch (Exception exc) + { + MessageCollector.AddExceptionMessage(string.Format(Language.strConnectionsFileCouldNotBeLoadedNew, connectionsLoader.ConnectionFileName), exc, MessageClass.InformationMsg); + } + + } return; } diff --git a/mRemoteV1/Config/Connections/XmlConnectionsLoader.cs b/mRemoteV1/Config/Connections/XmlConnectionsLoader.cs index e2cee0c60..2d29c5e43 100644 --- a/mRemoteV1/Config/Connections/XmlConnectionsLoader.cs +++ b/mRemoteV1/Config/Connections/XmlConnectionsLoader.cs @@ -4,6 +4,7 @@ using mRemoteNG.Config.DataProviders; using mRemoteNG.Config.Serializers; using mRemoteNG.Tools; using mRemoteNG.Tree; +using System.IO; namespace mRemoteNG.Config.Connections { @@ -16,6 +17,9 @@ namespace mRemoteNG.Config.Connections if (string.IsNullOrEmpty(connectionFilePath)) throw new ArgumentException($"{nameof(connectionFilePath)} cannot be null or empty"); + if (!File.Exists(connectionFilePath)) + throw new FileNotFoundException($"{connectionFilePath} does not exist"); + _connectionFilePath = connectionFilePath; } diff --git a/mRemoteV1/Connection/ConnectionsService.cs b/mRemoteV1/Connection/ConnectionsService.cs index b0912f88d..e02c48e23 100644 --- a/mRemoteV1/Connection/ConnectionsService.cs +++ b/mRemoteV1/Connection/ConnectionsService.cs @@ -33,6 +33,7 @@ namespace mRemoteNG.Connection ConnectionTreeModel = newConnectionsModel, ConnectionFileName = filename }; + connectionSaver.SaveFilter = new Security.SaveFilter(); connectionSaver.SaveConnections(); // Load config diff --git a/mRemoteV1/Resources/Language/Language.Designer.cs b/mRemoteV1/Resources/Language/Language.Designer.cs index 95992401d..2ec48c6ac 100644 --- a/mRemoteV1/Resources/Language/Language.Designer.cs +++ b/mRemoteV1/Resources/Language/Language.Designer.cs @@ -8,7422 +8,7458 @@ // //------------------------------------------------------------------------------ -namespace mRemoteNG -{ - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Language { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Language() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("mRemoteNG.Resources.Language.Language", typeof(Language).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// 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)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - /// - /// Looks up a localized string similar to Could not find external tool with name "{0}". - /// - internal static string CouldNotFindExternalTool { - get { - return ResourceManager.GetString("CouldNotFindExternalTool", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Credentials. - /// - internal static string Credentials { - get { - return ResourceManager.GetString("Credentials", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Credential not available. - /// - internal static string CredentialUnavailable { - get { - return ResourceManager.GetString("CredentialUnavailable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Incorrect password. - /// - internal static string IncorrectPassword { - get { - return ResourceManager.GetString("IncorrectPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Prompt to unlock credential repositories on startup. - /// - internal static string PromptUnlockCredReposOnStartup { - get { - return ResourceManager.GetString("PromptUnlockCredReposOnStartup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The selected repository is unlocked. - /// - internal static string RepositoryIsUnlocked { - get { - return ResourceManager.GetString("RepositoryIsUnlocked", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Source. - /// - internal static string Source { - get { - return ResourceManager.GetString("Source", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to About. - /// - internal static string strAbout { - get { - return ResourceManager.GetString("strAbout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Accept. - /// - internal static string strAccept { - get { - return ResourceManager.GetString("strAccept", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Active. - /// - internal static string strActive { - get { - return ResourceManager.GetString("strActive", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Active Directory. - /// - internal static string strActiveDirectory { - get { - return ResourceManager.GetString("strActiveDirectory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Activity. - /// - internal static string strActivity { - get { - return ResourceManager.GetString("strActivity", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Add. - /// - internal static string strAdd { - get { - return ResourceManager.GetString("strAdd", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New Connection. - /// - internal static string strAddConnection { - get { - return ResourceManager.GetString("strAddConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New folder. - /// - internal static string strAddFolder { - get { - return ResourceManager.GetString("strAddFolder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to AddNodeFromXML failed!. - /// - internal static string strAddNodeFromXmlFailed { - get { - return ResourceManager.GetString("strAddNodeFromXmlFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to AddNodesFromSQL failed!. - /// - internal static string strAddNodesFromSqlFailed { - get { - return ResourceManager.GetString("strAddNodesFromSqlFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Allow only a single instance of the application (mRemoteNG restart required). - /// - internal static string strAllowOnlySingleInstance { - get { - return ResourceManager.GetString("strAllowOnlySingleInstance", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Always. - /// - internal static string strAlways { - get { - return ResourceManager.GetString("strAlways", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Always connect, even if authentication fails. - /// - internal static string strAlwaysConnectEvenIfAuthFails { - get { - return ResourceManager.GetString("strAlwaysConnectEvenIfAuthFails", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Always show panel selection dialog when opening connections. - /// - internal static string strAlwaysShowPanelSelection { - get { - return ResourceManager.GetString("strAlwaysShowPanelSelection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Always show panel tabs. - /// - internal static string strAlwaysShowPanelTabs { - get { - return ResourceManager.GetString("strAlwaysShowPanelTabs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Always show notification area icon. - /// - internal static string strAlwaysShowSysTrayIcon { - get { - return ResourceManager.GetString("strAlwaysShowSysTrayIcon", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ask me again later. - /// - internal static string strAskUpdatesCommandAskLater { - get { - return ResourceManager.GetString("strAskUpdatesCommandAskLater", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Customize the settings now. - /// - internal static string strAskUpdatesCommandCustom { - get { - return ResourceManager.GetString("strAskUpdatesCommandCustom", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use the recommended settings. - /// - internal static string strAskUpdatesCommandRecommended { - get { - return ResourceManager.GetString("strAskUpdatesCommandRecommended", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} can automatically check for updates that may provide new features and bug fixes. It is recommended that you allow {0} to check for updates weekly.. - /// - internal static string strAskUpdatesContent { - get { - return ResourceManager.GetString("strAskUpdatesContent", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Automatic update settings. - /// - internal static string strAskUpdatesMainInstruction { - get { - return ResourceManager.GetString("strAskUpdatesMainInstruction", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Aspect. - /// - internal static string strAspect { - get { - return ResourceManager.GetString("strAspect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Assigned Credential. - /// - internal static string strAssignedCredential { - get { - return ResourceManager.GetString("strAssignedCredential", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Automatically get session information. - /// - internal static string strAutomaticallyGetSessionInfo { - get { - return ResourceManager.GetString("strAutomaticallyGetSessionInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Auto save every:. - /// - internal static string strAutoSaveEvery { - get { - return ResourceManager.GetString("strAutoSaveEvery", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Minutes (0 means disabled). - /// - internal static string strAutoSaveMins { - get { - return ResourceManager.GetString("strAutoSaveMins", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Latest version. - /// - internal static string strAvailableVersion { - get { - return ResourceManager.GetString("strAvailableVersion", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Back. - /// - internal static string strBack { - get { - return ResourceManager.GetString("strBack", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Browse.... - /// - internal static string strButtonBrowse { - get { - return ResourceManager.GetString("strButtonBrowse", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Cancel. - /// - internal static string strButtonCancel { - get { - return ResourceManager.GetString("strButtonCancel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Change. - /// - internal static string strButtonChange { - get { - return ResourceManager.GetString("strButtonChange", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Close. - /// - internal static string strButtonClose { - get { - return ResourceManager.GetString("strButtonClose", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Default Inheritance. - /// - internal static string strButtonDefaultInheritance { - get { - return ResourceManager.GetString("strButtonDefaultInheritance", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Default Properties. - /// - internal static string strButtonDefaultProperties { - get { - return ResourceManager.GetString("strButtonDefaultProperties", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disconnect. - /// - internal static string strButtonDisconnect { - get { - return ResourceManager.GetString("strButtonDisconnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Icon. - /// - internal static string strButtonIcon { - get { - return ResourceManager.GetString("strButtonIcon", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Import. - /// - internal static string strButtonImport { - get { - return ResourceManager.GetString("strButtonImport", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Inheritance. - /// - internal static string strButtonInheritance { - get { - return ResourceManager.GetString("strButtonInheritance", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Launch. - /// - internal static string strButtonLaunch { - get { - return ResourceManager.GetString("strButtonLaunch", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Launch PuTTY. - /// - internal static string strButtonLaunchPutty { - get { - return ResourceManager.GetString("strButtonLaunchPutty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &New. - /// - internal static string strButtonNew { - get { - return ResourceManager.GetString("strButtonNew", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &OK. - /// - internal static string strButtonOK { - get { - return ResourceManager.GetString("strButtonOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Properties. - /// - internal static string strButtonProperties { - get { - return ResourceManager.GetString("strButtonProperties", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Scan. - /// - internal static string strButtonScan { - get { - return ResourceManager.GetString("strButtonScan", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Stop. - /// - internal static string strButtonStop { - get { - return ResourceManager.GetString("strButtonStop", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Test Proxy. - /// - internal static string strButtonTestProxy { - get { - return ResourceManager.GetString("strButtonTestProxy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to You cannot import a normal connection file. - ///Please use File - Load Connections for normal connection files!. - /// - internal static string strCannotImportNormalSessionFile { - get { - return ResourceManager.GetString("strCannotImportNormalSessionFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot start Port Scan, incorrect IP format!. - /// - internal static string strCannotStartPortScan { - get { - return ResourceManager.GetString("strCannotStartPortScan", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Appearance. - /// - internal static string strCategoryAppearance { - get { - return ResourceManager.GetString("strCategoryAppearance", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection. - /// - internal static string strCategoryConnection { - get { - return ResourceManager.GetString("strCategoryConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Credentials. - /// - internal static string strCategoryCredentials { - get { - return ResourceManager.GetString("strCategoryCredentials", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Display. - /// - internal static string strCategoryDisplay { - get { - return ResourceManager.GetString("strCategoryDisplay", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway. - /// - internal static string strCategoryGateway { - get { - return ResourceManager.GetString("strCategoryGateway", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to General. - /// - internal static string strCategoryGeneral { - get { - return ResourceManager.GetString("strCategoryGeneral", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Miscellaneous. - /// - internal static string strCategoryMiscellaneous { - get { - return ResourceManager.GetString("strCategoryMiscellaneous", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol. - /// - internal static string strCategoryProtocol { - get { - return ResourceManager.GetString("strCategoryProtocol", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Redirect. - /// - internal static string strCategoryRedirect { - get { - return ResourceManager.GetString("strCategoryRedirect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Always show this screen at startup. - /// - internal static string strCcAlwaysShowScreen { - get { - return ResourceManager.GetString("strCcAlwaysShowScreen", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Refresh. - /// - internal static string strCcCheckAgain { - get { - return ResourceManager.GetString("strCcCheckAgain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check failed!. - /// - internal static string strCcCheckFailed { - get { - return ResourceManager.GetString("strCcCheckFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check succeeded!. - /// - internal static string strCcCheckSucceeded { - get { - return ResourceManager.GetString("strCcCheckSucceeded", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The (RDP) Sessions feature requires that you have a copy of eolwtscom.dll registered on your system. - ///mRemoteNG ships with this component but it is not registered automatically if you do not use the mRemoteNG Installer. - ///To register it manually, run the following command from an elevated command prompt: regsvr32 "C:\Program Files\mRemoteNG\eolwtscom.dll" (where C:\Program Files\mRemoteNG\ is the path to your mRemoteNG installation). - ///If this check still fails or you are unable to use the (RDP) Sessions feature [rest of string was truncated]";. - /// - internal static string strCcEOLFailed { - get { - return ResourceManager.GetString("strCcEOLFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to EOLWTSCOM was found and seems to be registered properly.. - /// - internal static string strCcEOLOK { - get { - return ResourceManager.GetString("strCcEOLOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to To use the Gecko Rendering Engine you need to have XULrunner 1.8.1.x and the path to the installation set in your Options. - ///You can download XULrunner 1.8.1.3 here: ftp://ftp.mozilla.org/pub/xulrunner/releases/1.8.1.3/contrib/win32/ - ///When you are finished downloading extract the package to a path of your choice. Then in mRemoteNG go to Tools - Options - Advanced and enter the correct path in the XULrunner path field. - ///If you are still not able to pass this check or use the Gecko Engine in mRemoteNG please cons [rest of string was truncated]";. - /// - internal static string strCcGeckoFailed { - get { - return ResourceManager.GetString("strCcGeckoFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to GeckoFx was found and seems to be installed properly.. - /// - internal static string strCcGeckoOK { - get { - return ResourceManager.GetString("strCcGeckoOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ICA requires that the XenDesktop Online Plugin is installed and that the wfica.ocx library is registered. You can download the client here: http://www.citrix.com/download/ - ///If you have the XenDesktop Online Plugin installed and the check still fails, try to register wfica.ocx manually. - ///To do this open up the run dialog (Start - Run) and enter the following: regsvr32 "c:\Program Files\Citrix\ICA Client\wfica.ocx" (Where c:\Program Files\Citrix\ICA Client\ is the path to your XenDesktop Online Plugin installat [rest of string was truncated]";. - /// - internal static string strCcICAFailed { - get { - return ResourceManager.GetString("strCcICAFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All ICA components were found and seem to be registered properly. - ///Citrix ICA Client Control Version {0}. - /// - internal static string strCcICAOK { - get { - return ResourceManager.GetString("strCcICAOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to not installed properly. - /// - internal static string strCcNotInstalledProperly { - get { - return ResourceManager.GetString("strCcNotInstalledProperly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The SSH, Telnet, Rlogin and RAW protocols need PuTTY to work. PuTTY comes with every mRemoteNG package and is located in the installation path. - ///Please make sure that either you have the Putty.exe in your mRemoteNG directory (default: c:\Program Files\mRemoteNG\) or that you specified a valid path to your PuTTY executable in the Options (Tools - Options - Advanced - Custom PuTTY path). - /// - internal static string strCcPuttyFailed { - get { - return ResourceManager.GetString("strCcPuttyFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The PuTTY executable was found and should be ready to use.. - /// - internal static string strCcPuttyOK { - get { - return ResourceManager.GetString("strCcPuttyOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to For RDP to work properly you need to have at least Remote Desktop Connection (Terminal Services) Client 8.0 installed. You can download it here: http://support.microsoft.com/kb/925876 - ///If this check still fails or you are unable to use RDP, please consult the mRemoteNG Forum at http://forum.mremoteng.org/.. - /// - internal static string strCcRDPFailed { - get { - return ResourceManager.GetString("strCcRDPFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All RDP components were found and seem to be registered properly. - ///Remote Desktop Connection Control Version {0}. - /// - internal static string strCcRDPOK { - get { - return ResourceManager.GetString("strCcRDPOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VNC requires VncSharp.dll to be located in your mRemoteNG application folder. - ///Please make sure that you have the VncSharp.dll file in your mRemoteNG application folder (usually C:\Program Files\mRemoteNG\). - ///If you are still not able to pass this check or use VNC in mRemoteNG please consult the mRemoteNG Forum at http://forum.mremoteng.org/. - /// - internal static string strCcVNCFailed { - get { - return ResourceManager.GetString("strCcVNCFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All VNC components were found and seem to be registered properly. - ///VncSharp Control Version {0}. - /// - internal static string strCcVNCOK { - get { - return ResourceManager.GetString("strCcVNCOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Automatically try to reconnect when disconnected from server (RDP && ICA only). - /// - internal static string strCheckboxAutomaticReconnect { - get { - return ResourceManager.GetString("strCheckboxAutomaticReconnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Domain. - /// - internal static string strCheckboxDomain { - get { - return ResourceManager.GetString("strCheckboxDomain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do not show this message again.. - /// - internal static string strCheckboxDoNotShowThisMessageAgain { - get { - return ResourceManager.GetString("strCheckboxDoNotShowThisMessageAgain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Inheritance. - /// - internal static string strCheckboxInheritance { - get { - return ResourceManager.GetString("strCheckboxInheritance", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password. - /// - internal static string strCheckboxPassword { - get { - return ResourceManager.GetString("strCheckboxPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to This proxy server requires authentication. - /// - internal static string strCheckboxProxyAuthentication { - get { - return ResourceManager.GetString("strCheckboxProxyAuthentication", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use custom PuTTY path:. - /// - internal static string strCheckboxPuttyPath { - get { - return ResourceManager.GetString("strCheckboxPuttyPath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reconnect when ready. - /// - internal static string strCheckboxReconnectWhenReady { - get { - return ResourceManager.GetString("strCheckboxReconnectWhenReady", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use a proxy server to connect. - /// - internal static string strCheckboxUpdateUseProxy { - get { - return ResourceManager.GetString("strCheckboxUpdateUseProxy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Username. - /// - internal static string strCheckboxUsername { - get { - return ResourceManager.GetString("strCheckboxUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Wait for exit. - /// - internal static string strCheckboxWaitForExit { - get { - return ResourceManager.GetString("strCheckboxWaitForExit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check Again. - /// - internal static string strCheckForUpdate { - get { - return ResourceManager.GetString("strCheckForUpdate", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check for updates at startup. - /// - internal static string strCheckForUpdatesOnStartup { - get { - return ResourceManager.GetString("strCheckForUpdatesOnStartup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check now. - /// - internal static string strCheckNow { - get { - return ResourceManager.GetString("strCheckNow", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check proper installation of components at startup. - /// - internal static string strCheckProperInstallationOfComponentsAtStartup { - get { - return ResourceManager.GetString("strCheckProperInstallationOfComponentsAtStartup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose a path for the mRemoteNG log file. - /// - internal static string strChooseLogPath { - get { - return ResourceManager.GetString("strChooseLogPath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose panel before connecting. - /// - internal static string strChoosePanelBeforeConnecting { - get { - return ResourceManager.GetString("strChoosePanelBeforeConnecting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose Path. - /// - internal static string strChoosePath { - get { - return ResourceManager.GetString("strChoosePath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Closed Ports. - /// - internal static string strClosedPorts { - get { - return ResourceManager.GetString("strClosedPorts", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Collapse all folders. - /// - internal static string strCollapseAllFolders { - get { - return ResourceManager.GetString("strCollapseAllFolders", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Arguments. - /// - internal static string strColumnArguments { - get { - return ResourceManager.GetString("strColumnArguments", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Display Name. - /// - internal static string strColumnDisplayName { - get { - return ResourceManager.GetString("strColumnDisplayName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filename. - /// - internal static string strColumnFilename { - get { - return ResourceManager.GetString("strColumnFilename", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hostname/IP. - /// - internal static string strColumnHostnameIP { - get { - return ResourceManager.GetString("strColumnHostnameIP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Message. - /// - internal static string strColumnMessage { - get { - return ResourceManager.GetString("strColumnMessage", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Username. - /// - internal static string strColumnUsername { - get { - return ResourceManager.GetString("strColumnUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Wait For Exit. - /// - internal static string strColumnWaitForExit { - get { - return ResourceManager.GetString("strColumnWaitForExit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to E&xit {0}. - /// - internal static string strCommandExitProgram { - get { - return ResourceManager.GetString("strCommandExitProgram", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't parse command line args!. - /// - internal static string strCommandLineArgsCouldNotBeParsed { - get { - return ResourceManager.GetString("strCommandLineArgsCouldNotBeParsed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Open a connection file. - /// - internal static string strCommandOpenConnectionFile { - get { - return ResourceManager.GetString("strCommandOpenConnectionFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Try again. - /// - internal static string strCommandTryAgain { - get { - return ResourceManager.GetString("strCommandTryAgain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} has detected the Lenovo Auto Scroll Utility running on this system. This utility is known to cause problems with {0}. It is recommended that you disable or uninstall it.. - /// - internal static string strCompatibilityLenovoAutoScrollUtilityDetected { - get { - return ResourceManager.GetString("strCompatibilityLenovoAutoScrollUtilityDetected", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compatibility problem detected. - /// - internal static string strCompatibilityProblemDetected { - get { - return ResourceManager.GetString("strCompatibilityProblemDetected", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Components Check. - /// - internal static string strComponentsCheck { - get { - return ResourceManager.GetString("strComponentsCheck", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to btnIcon_Click failed!. - /// - internal static string strConfigPropertyGridButtonIconClickFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridButtonIconClickFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ShowHideGridItems failed!. - /// - internal static string strConfigPropertyGridHideItemsFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridHideItemsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to IconMenu_Click failed!. - /// - internal static string strConfigPropertyGridMenuClickFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridMenuClickFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Property Grid object failed!. - /// - internal static string strConfigPropertyGridObjectFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridObjectFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SetHostStatus failed!. - /// - internal static string strConfigPropertyGridSetHostStatusFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridSetHostStatusFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to pGrid_PopertyValueChanged failed!. - /// - internal static string strConfigPropertyGridValueFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridValueFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Config UI load failed!. - /// - internal static string strConfigUiLoadFailed { - get { - return ResourceManager.GetString("strConfigUiLoadFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do you want to close the connection: - ///"{0}"?. - /// - internal static string strConfirmCloseConnectionMainInstruction { - get { - return ResourceManager.GetString("strConfirmCloseConnectionMainInstruction", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to close the panel, "{0}"? Any connections that it contains will also be closed.. - /// - internal static string strConfirmCloseConnectionPanelMainInstruction { - get { - return ResourceManager.GetString("strConfirmCloseConnectionPanelMainInstruction", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the credential record, {0}?. - /// - internal static string strConfirmDeleteCredentialRecord { - get { - return ResourceManager.GetString("strConfirmDeleteCredentialRecord", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the external tool, "{0}"?. - /// - internal static string strConfirmDeleteExternalTool { - get { - return ResourceManager.GetString("strConfirmDeleteExternalTool", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the {0} selected external tools?. - /// - internal static string strConfirmDeleteExternalToolMultiple { - get { - return ResourceManager.GetString("strConfirmDeleteExternalToolMultiple", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the connection, "{0}"?. - /// - internal static string strConfirmDeleteNodeConnection { - get { - return ResourceManager.GetString("strConfirmDeleteNodeConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the empty folder, "{0}"?. - /// - internal static string strConfirmDeleteNodeFolder { - get { - return ResourceManager.GetString("strConfirmDeleteNodeFolder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the folder, "{0}"? Any folders or connections that it contains will also be deleted.. - /// - internal static string strConfirmDeleteNodeFolderNotEmpty { - get { - return ResourceManager.GetString("strConfirmDeleteNodeFolderNotEmpty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do you want to close all open connections?. - /// - internal static string strConfirmExitMainInstruction { - get { - return ResourceManager.GetString("strConfirmExitMainInstruction", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to reset the panels to their default layout?. - /// - internal static string strConfirmResetLayout { - get { - return ResourceManager.GetString("strConfirmResetLayout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect. - /// - internal static string strConnect { - get { - return ResourceManager.GetString("strConnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect in fullscreen mode. - /// - internal static string strConnectInFullscreen { - get { - return ResourceManager.GetString("strConnectInFullscreen", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connecting.... - /// - internal static string strConnecting { - get { - return ResourceManager.GetString("strConnecting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol Event Connected. - /// - internal static string strConnectionEventConnected { - get { - return ResourceManager.GetString("strConnectionEventConnected", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection to "{0}" via "{1}" established by user "{2}" (Description: "{3}"; User Field: "{4}"). - /// - internal static string strConnectionEventConnectedDetail { - get { - return ResourceManager.GetString("strConnectionEventConnectedDetail", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Conenction failed!. - /// - internal static string strConnectionEventConnectionFailed { - get { - return ResourceManager.GetString("strConnectionEventConnectionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol Event ErrorOccured. - /// - internal static string strConnectionEventErrorOccured { - get { - return ResourceManager.GetString("strConnectionEventErrorOccured", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection file path. - /// - internal static string strConnectionFilePath { - get { - return ResourceManager.GetString("strConnectionFilePath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Opening connection failed!. - /// - internal static string strConnectionOpenFailed { - get { - return ResourceManager.GetString("strConnectionOpenFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot open connection: No hostname specified!. - /// - internal static string strConnectionOpenFailedNoHostname { - get { - return ResourceManager.GetString("strConnectionOpenFailedNoHostname", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP error! - ///Error Code: {0} - ///Error Description: {1}. - /// - internal static string strConnectionRdpErrorDetail { - get { - return ResourceManager.GetString("strConnectionRdpErrorDetail", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections. - /// - internal static string strConnections { - get { - return ResourceManager.GetString("strConnections", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't set default port!. - /// - internal static string strConnectionSetDefaultPortFailed { - get { - return ResourceManager.GetString("strConnectionSetDefaultPortFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't create backup of connections file!. - /// - internal static string strConnectionsFileBackupFailed { - get { - return ResourceManager.GetString("strConnectionsFileBackupFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't import connections file!. - /// - internal static string strConnectionsFileCouldNotBeImported { - get { - return ResourceManager.GetString("strConnectionsFileCouldNotBeImported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections file "{0}" could not be loaded!. - /// - internal static string strConnectionsFileCouldNotBeLoaded { - get { - return ResourceManager.GetString("strConnectionsFileCouldNotBeLoaded", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections file "{0}" could not be loaded! - ///Starting with new connections file.. - /// - internal static string strConnectionsFileCouldNotBeLoadedNew { - get { - return ResourceManager.GetString("strConnectionsFileCouldNotBeLoadedNew", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't save connections file!. - /// - internal static string strConnectionsFileCouldNotBeSaved { - get { - return ResourceManager.GetString("strConnectionsFileCouldNotBeSaved", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't save connections file as "{0}"!. - /// - internal static string strConnectionsFileCouldNotSaveAs { - get { - return ResourceManager.GetString("strConnectionsFileCouldNotSaveAs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect without credentials. - /// - internal static string strConnectNoCredentials { - get { - return ResourceManager.GetString("strConnectNoCredentials", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect to console session. - /// - internal static string strConnectToConsoleSession { - get { - return ResourceManager.GetString("strConnectToConsoleSession", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect (with options). - /// - internal static string strConnectWithOptions { - get { - return ResourceManager.GetString("strConnectWithOptions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection to {0} via {1} closed by user {2}.. - /// - internal static string strConnenctionClosedByUser { - get { - return ResourceManager.GetString("strConnenctionClosedByUser", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection to {0} via {1} closed by user {2}. (Description: "{3}"; User Field: "{4}"). - /// - internal static string strConnenctionClosedByUserDetail { - get { - return ResourceManager.GetString("strConnenctionClosedByUserDetail", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection Event Closed. - /// - internal static string strConnenctionCloseEvent { - get { - return ResourceManager.GetString("strConnenctionCloseEvent", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection Event Closed failed!. - /// - internal static string strConnenctionCloseEventFailed { - get { - return ResourceManager.GetString("strConnenctionCloseEventFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't create new connections file!. - /// - internal static string strCouldNotCreateNewConnectionsFile { - get { - return ResourceManager.GetString("strCouldNotCreateNewConnectionsFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not find ToolStrip control in FilteredPropertyGrid.. - /// - internal static string strCouldNotFindToolStripInFilteredPropertyGrid { - get { - return ResourceManager.GetString("strCouldNotFindToolStripInFilteredPropertyGrid", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Create and open new file. - /// - internal static string strCreateAndOpenNewFile { - get { - return ResourceManager.GetString("strCreateAndOpenNewFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Credential Editor. - /// - internal static string strCredentialEditor { - get { - return ResourceManager.GetString("strCredentialEditor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Credential Manager. - /// - internal static string strCredentialManager { - get { - return ResourceManager.GetString("strCredentialManager", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to In v1.76 we have introduced a credential management system. This feature requires a significant change in how we store and interact with credentials within mRemoteNG. You will be required to perform a one-way upgrade of your mRemoteNG connections file. - /// - ///This page will walk you through the process of upgrading your connections file or give you a chance to open a different connections file if you do not want to perform the upgrade.. - /// - internal static string strCredentialManagerUpgradeDescription { - get { - return ResourceManager.GetString("strCredentialManagerUpgradeDescription", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Installed version. - /// - internal static string strCurrentVersion { - get { - return ResourceManager.GetString("strCurrentVersion", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Debug. - /// - internal static string strDebug { - get { - return ResourceManager.GetString("strDebug", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Default Theme. - /// - internal static string strDefaultTheme { - get { - return ResourceManager.GetString("strDefaultTheme", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Detect. - /// - internal static string strDetect { - get { - return ResourceManager.GetString("strDetect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Don't connect to console session. - /// - internal static string strDontConnectToConsoleSessionMenuItem { - get { - return ResourceManager.GetString("strDontConnectToConsoleSessionMenuItem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Don't connect if authentication fails. - /// - internal static string strDontConnectWhenAuthFails { - get { - return ResourceManager.GetString("strDontConnectWhenAuthFails", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Double click on tab closes it. - /// - internal static string strDoubleClickTabClosesIt { - get { - return ResourceManager.GetString("strDoubleClickTabClosesIt", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Download and Install. - /// - internal static string strDownloadAndInstall { - get { - return ResourceManager.GetString("strDownloadAndInstall", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Download. - /// - internal static string strDownloadPortable { - get { - return ResourceManager.GetString("strDownloadPortable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Duplicate. - /// - internal static string strDuplicate { - get { - return ResourceManager.GetString("strDuplicate", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do you want to continue with no password?. - /// - internal static string strEmptyPasswordContinue { - get { - return ResourceManager.GetString("strEmptyPasswordContinue", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to For empty Username, Password or Domain fields use:. - /// - internal static string strEmptyUsernamePasswordDomainFields { - get { - return ResourceManager.GetString("strEmptyUsernamePasswordDomainFields", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 128-bit. - /// - internal static string strEnc128Bit { - get { - return ResourceManager.GetString("strEnc128Bit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 128-bit (logon only). - /// - internal static string strEnc128BitLogonOnly { - get { - return ResourceManager.GetString("strEnc128BitLogonOnly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 40-bit. - /// - internal static string strEnc40Bit { - get { - return ResourceManager.GetString("strEnc40Bit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 56-bit. - /// - internal static string strEnc56Bit { - get { - return ResourceManager.GetString("strEnc56Bit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Basic. - /// - internal static string strEncBasic { - get { - return ResourceManager.GetString("strEncBasic", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Completely encrypt connection file. - /// - internal static string strEncryptCompleteConnectionFile { - get { - return ResourceManager.GetString("strEncryptCompleteConnectionFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Block Cipher Mode. - /// - internal static string strEncryptionBlockCipherMode { - get { - return ResourceManager.GetString("strEncryptionBlockCipherMode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Encryption Engine. - /// - internal static string strEncryptionEngine { - get { - return ResourceManager.GetString("strEncryptionEngine", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Key Derivation Function Iterations. - /// - internal static string strEncryptionKeyDerivationIterations { - get { - return ResourceManager.GetString("strEncryptionKeyDerivationIterations", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to End IP. - /// - internal static string strEndIP { - get { - return ResourceManager.GetString("strEndIP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to End Port. - /// - internal static string strEndPort { - get { - return ResourceManager.GetString("strEndPort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to AddExternalToolsToToolBar (frmMain) failed. {0}. - /// - internal static string strErrorAddExternalToolsToToolBarFailed { - get { - return ResourceManager.GetString("strErrorAddExternalToolsToToolBarFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to AddFolder (UI.Window.ConnectionTreeWindow) failed. {0}. - /// - internal static string strErrorAddFolderFailed { - get { - return ResourceManager.GetString("strErrorAddFolderFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The database version {0} is not compatible with this version of {1}.. - /// - internal static string strErrorBadDatabaseVersion { - get { - return ResourceManager.GetString("strErrorBadDatabaseVersion", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CloneNode (Tree.Node) failed . {0}. - /// - internal static string strErrorCloneNodeFailed { - get { - return ResourceManager.GetString("strErrorCloneNodeFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error code {0}.. - /// - internal static string strErrorCode { - get { - return ResourceManager.GetString("strErrorCode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The connection list could not be saved.. - /// - internal static string strErrorConnectionListSaveFailed { - get { - return ResourceManager.GetString("strErrorConnectionListSaveFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY could not be launched.. - /// - internal static string strErrorCouldNotLaunchPutty { - get { - return ResourceManager.GetString("strErrorCouldNotLaunchPutty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Decryption failed. {0}. - /// - internal static string strErrorDecryptionFailed { - get { - return ResourceManager.GetString("strErrorDecryptionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Encryption failed. {0}. - /// - internal static string strErrorEncryptionFailed { - get { - return ResourceManager.GetString("strErrorEncryptionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The Windows security setting, "System cryptography: Use FIPS compliant algorithms for encryption, hashing, and signing", is enabled. This setting is not compatible with {0}. - /// - ///See the Microsoft Support article at http://support.microsoft.com/kb/811833 for more information. - /// - ///{0} will now close.. - /// - internal static string strErrorFipsPolicyIncompatible { - get { - return ResourceManager.GetString("strErrorFipsPolicyIncompatible", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Errors. - /// - internal static string strErrors { - get { - return ResourceManager.GetString("strErrors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The startup connection file could not be loaded.{0}{0}{2}{0}{3}{0}{0}In order to prevent data loss, {1} will now exit.. - /// - internal static string strErrorStartupConnectionFileLoad { - get { - return ResourceManager.GetString("strErrorStartupConnectionFileLoad", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VerifyDatabaseVersion (Config.Connections.Save) failed. {0}. - /// - internal static string strErrorVerifyDatabaseVersionFailed { - get { - return ResourceManager.GetString("strErrorVerifyDatabaseVersionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Expand all folders. - /// - internal static string strExpandAllFolders { - get { - return ResourceManager.GetString("strExpandAllFolders", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Experimental. - /// - internal static string strExperimental { - get { - return ResourceManager.GetString("strExperimental", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Export. - /// - internal static string strExport { - get { - return ResourceManager.GetString("strExport", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Export everything. - /// - internal static string strExportEverything { - get { - return ResourceManager.GetString("strExportEverything", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Export File. - /// - internal static string strExportFile { - get { - return ResourceManager.GetString("strExportFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Export Items. - /// - internal static string strExportItems { - get { - return ResourceManager.GetString("strExportItems", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Export mRemote/mRemoteNG XML. - /// - internal static string strExportmRemoteXML { - get { - return ResourceManager.GetString("strExportmRemoteXML", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Export Properties. - /// - internal static string strExportProperties { - get { - return ResourceManager.GetString("strExportProperties", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Export the currently selected connection. - /// - internal static string strExportSelectedConnection { - get { - return ResourceManager.GetString("strExportSelectedConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Export the currently selected folder. - /// - internal static string strExportSelectedFolder { - get { - return ResourceManager.GetString("strExportSelectedFolder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Export to File.... - /// - internal static string strExportToFileMenuItem { - get { - return ResourceManager.GetString("strExportToFileMenuItem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ext. App. - /// - internal static string strExtApp { - get { - return ResourceManager.GetString("strExtApp", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New External Tool. - /// - internal static string strExternalToolDefaultName { - get { - return ResourceManager.GetString("strExternalToolDefaultName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Includes icons by [FAMFAMFAM]. - /// - internal static string strFAMFAMFAMAttribution { - get { - return ResourceManager.GetString("strFAMFAMFAMAttribution", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to http://www.famfamfam.com/. - /// - internal static string strFAMFAMFAMAttributionURL { - get { - return ResourceManager.GetString("strFAMFAMFAMAttributionURL", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to File &Format:. - /// - internal static string strFileFormatLabel { - get { - return ResourceManager.GetString("strFileFormatLabel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All Files (*.*). - /// - internal static string strFilterAll { - get { - return ResourceManager.GetString("strFilterAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All importable files. - /// - internal static string strFilterAllImportable { - get { - return ResourceManager.GetString("strFilterAllImportable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Application Files (*.exe). - /// - internal static string strFilterApplication { - get { - return ResourceManager.GetString("strFilterApplication", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to mRemote CSV Files (*.csv). - /// - internal static string strFiltermRemoteCSV { - get { - return ResourceManager.GetString("strFiltermRemoteCSV", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to mRemote XML Files (*.xml). - /// - internal static string strFiltermRemoteXML { - get { - return ResourceManager.GetString("strFiltermRemoteXML", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY Connection Manager files. - /// - internal static string strFilterPuttyConnectionManager { - get { - return ResourceManager.GetString("strFilterPuttyConnectionManager", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Remote Desktop Connection Manager files (*.rdg). - /// - internal static string strFilterRdgFiles { - get { - return ResourceManager.GetString("strFilterRdgFiles", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP Files (*.rdp). - /// - internal static string strFilterRDP { - get { - return ResourceManager.GetString("strFilterRDP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to visionapp Remote Desktop 2008 CSV Files (*.csv). - /// - internal static string strFiltervRD2008CSV { - get { - return ResourceManager.GetString("strFiltervRD2008CSV", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not find a credential record with ID matching "{0}" for the connection record named "{1}".. - /// - internal static string strFindMatchingCredentialFailed { - get { - return ResourceManager.GetString("strFindMatchingCredentialFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Inherit {0}. - /// - internal static string strFormatInherit { - get { - return ResourceManager.GetString("strFormatInherit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Description of inherited property: {0}. - /// - internal static string strFormatInheritDescription { - get { - return ResourceManager.GetString("strFormatInheritDescription", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Free. - /// - internal static string strFree { - get { - return ResourceManager.GetString("strFree", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Fullscreen. - /// - internal static string strFullscreen { - get { - return ResourceManager.GetString("strFullscreen", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to General. - /// - internal static string strGeneral { - get { - return ResourceManager.GetString("strGeneral", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Get Connection Info From SQL failed. - /// - internal static string strGetConnectionInfoFromSqlFailed { - get { - return ResourceManager.GetString("strGetConnectionInfoFromSqlFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to An error occured while loading the connection entry for "{0}" from "{1}". {2}. - /// - internal static string strGetConnectionInfoFromXmlFailed { - get { - return ResourceManager.GetString("strGetConnectionInfoFromXmlFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Automatic Reconnect. - /// - internal static string strGroupboxAutomaticReconnect { - get { - return ResourceManager.GetString("strGroupboxAutomaticReconnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection. - /// - internal static string strGroupboxConnection { - get { - return ResourceManager.GetString("strGroupboxConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to External Tool Properties. - /// - internal static string strGroupboxExternalToolProperties { - get { - return ResourceManager.GetString("strGroupboxExternalToolProperties", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Files. - /// - internal static string strGroupboxFiles { - get { - return ResourceManager.GetString("strGroupboxFiles", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Host. - /// - internal static string strHost { - get { - return ResourceManager.GetString("strHost", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HTTP. - /// - internal static string strHttp { - get { - return ResourceManager.GetString("strHttp", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HTTP Connect Failed!. - /// - internal static string strHttpConnectFailed { - get { - return ResourceManager.GetString("strHttpConnectFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't create new HTTP Connection!. - /// - internal static string strHttpConnectionFailed { - get { - return ResourceManager.GetString("strHttpConnectionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Changing HTTP Document Tile Failed!. - /// - internal static string strHttpDocumentTileChangeFailed { - get { - return ResourceManager.GetString("strHttpDocumentTileChangeFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gecko (Firefox). - /// - internal static string strHttpGecko { - get { - return ResourceManager.GetString("strHttpGecko", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Internet Explorer. - /// - internal static string strHttpInternetExplorer { - get { - return ResourceManager.GetString("strHttpInternetExplorer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to HTTPS. - /// - internal static string strHttps { - get { - return ResourceManager.GetString("strHttps", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Set HTTP Props failed!. - /// - internal static string strHttpSetPropsFailed { - get { - return ResourceManager.GetString("strHttpSetPropsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Allow Always. - /// - internal static string strHttpsInsecureAllowAlways { - get { - return ResourceManager.GetString("strHttpsInsecureAllowAlways", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Allow Once. - /// - internal static string strHttpsInsecureAllowOnce { - get { - return ResourceManager.GetString("strHttpsInsecureAllowOnce", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Don't Allow. - /// - internal static string strHttpsInsecureDontAllow { - get { - return ResourceManager.GetString("strHttpsInsecureDontAllow", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Allow Insecure Certificate for URL: {0}?. - /// - internal static string strHttpsInsecurePrompt { - get { - return ResourceManager.GetString("strHttpsInsecurePrompt", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Allow Insecure Certificate?. - /// - internal static string strHttpsInsecurePromptTitle { - get { - return ResourceManager.GetString("strHttpsInsecurePromptTitle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ICA. - /// - internal static string strICA { - get { - return ResourceManager.GetString("strICA", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't create new ICA Connection!. - /// - internal static string strIcaConnectionFailed { - get { - return ResourceManager.GetString("strIcaConnectionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Loading ICA Plugin failed!. - /// - internal static string strIcaControlFailed { - get { - return ResourceManager.GetString("strIcaControlFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ICA SetCredentials failed!. - /// - internal static string strIcaSetCredentialsFailed { - get { - return ResourceManager.GetString("strIcaSetCredentialsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ICA Set Event Handlers Failed!. - /// - internal static string strIcaSetEventHandlersFailed { - get { - return ResourceManager.GetString("strIcaSetEventHandlersFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ICA Set Props Failed!. - /// - internal static string strIcaSetPropsFailed { - get { - return ResourceManager.GetString("strIcaSetPropsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ICA Set Resolution Failed!. - /// - internal static string strIcaSetResolutionFailed { - get { - return ResourceManager.GetString("strIcaSetResolutionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ID. - /// - internal static string strID { - get { - return ResourceManager.GetString("strID", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Identify quick connect tabs by adding the prefix "Quick:". - /// - internal static string strIdentifyQuickConnectTabs { - get { - return ResourceManager.GetString("strIdentifyQuickConnectTabs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Import from Active Directory. - /// - internal static string strImportAD { - get { - return ResourceManager.GetString("strImportAD", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Import/Export. - /// - internal static string strImportExport { - get { - return ResourceManager.GetString("strImportExport", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to An error occurred while importing the file, "{0}".. - /// - internal static string strImportFileFailedContent { - get { - return ResourceManager.GetString("strImportFileFailedContent", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Import failed. - /// - internal static string strImportFileFailedMainInstruction { - get { - return ResourceManager.GetString("strImportFileFailedMainInstruction", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Import from &File.... - /// - internal static string strImportFromFileMenuItem { - get { - return ResourceManager.GetString("strImportFromFileMenuItem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Under the root{0}{1}|Under the selected folder{0}{2}. - /// - internal static string strImportLocationCommandButtons { - get { - return ResourceManager.GetString("strImportLocationCommandButtons", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Where would you like the imported items to be placed?. - /// - internal static string strImportLocationContent { - get { - return ResourceManager.GetString("strImportLocationContent", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Import location. - /// - internal static string strImportLocationMainInstruction { - get { - return ResourceManager.GetString("strImportLocationMainInstruction", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Import. - /// - internal static string strImportMenuItem { - get { - return ResourceManager.GetString("strImportMenuItem", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Import mRemote/mRemoteNG XML. - /// - internal static string strImportmRemoteXML { - get { - return ResourceManager.GetString("strImportmRemoteXML", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Import from Port Scan. - /// - internal static string strImportPortScan { - get { - return ResourceManager.GetString("strImportPortScan", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Import from .RDP file(s). - /// - internal static string strImportRDPFiles { - get { - return ResourceManager.GetString("strImportRDPFiles", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Inactive. - /// - internal static string strInactive { - get { - return ResourceManager.GetString("strInactive", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Informations. - /// - internal static string strInformations { - get { - return ResourceManager.GetString("strInformations", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to mRemoteNG is up to date. - /// - internal static string strInheritNewConnection { - get { - return ResourceManager.GetString("strInheritNewConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection failed!. - /// - internal static string strIntAppConnectionFailed { - get { - return ResourceManager.GetString("strIntAppConnectionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dispose of Int App process failed!. - /// - internal static string strIntAppDisposeFailed { - get { - return ResourceManager.GetString("strIntAppDisposeFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Int App Focus Failed!. - /// - internal static string strIntAppFocusFailed { - get { - return ResourceManager.GetString("strIntAppFocusFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Int App Handle: {0}. - /// - internal static string strIntAppHandle { - get { - return ResourceManager.GetString("strIntAppHandle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Killing Int App Process failed!. - /// - internal static string strIntAppKillFailed { - get { - return ResourceManager.GetString("strIntAppKillFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Panel Handle: {0}. - /// - internal static string strIntAppParentHandle { - get { - return ResourceManager.GetString("strIntAppParentHandle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Int App Resize failed!. - /// - internal static string strIntAppResizeFailed { - get { - return ResourceManager.GetString("strIntAppResizeFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to --- IntApp Stuff ---. - /// - internal static string strIntAppStuff { - get { - return ResourceManager.GetString("strIntAppStuff", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Int App Title: {0}. - /// - internal static string strIntAppTitle { - get { - return ResourceManager.GetString("strIntAppTitle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CTRL-ALT-DEL. - /// - internal static string strKeysCtrlAltDel { - get { - return ResourceManager.GetString("strKeysCtrlAltDel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to CTRL-ESC. - /// - internal static string strKeysCtrlEsc { - get { - return ResourceManager.GetString("strKeysCtrlEsc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Address:. - /// - internal static string strLabelAddress { - get { - return ResourceManager.GetString("strLabelAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Arguments:. - /// - internal static string strLabelArguments { - get { - return ResourceManager.GetString("strLabelArguments", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Change Log:. - /// - internal static string strLabelChangeLog { - get { - return ResourceManager.GetString("strLabelChangeLog", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to When closing connections:. - /// - internal static string strLabelClosingConnections { - get { - return ResourceManager.GetString("strLabelClosingConnections", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Connect:. - /// - internal static string strLabelConnect { - get { - return ResourceManager.GetString("strLabelConnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Display Name. - /// - internal static string strLabelDisplayName { - get { - return ResourceManager.GetString("strLabelDisplayName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Domain:. - /// - internal static string strLabelDomain { - get { - return ResourceManager.GetString("strLabelDomain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filename:. - /// - internal static string strLabelFilename { - get { - return ResourceManager.GetString("strLabelFilename", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hostname:. - /// - internal static string strLabelHostname { - get { - return ResourceManager.GetString("strLabelHostname", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Options:. - /// - internal static string strLabelOptions { - get { - return ResourceManager.GetString("strLabelOptions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password:. - /// - internal static string strLabelPassword { - get { - return ResourceManager.GetString("strLabelPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Port:. - /// - internal static string strLabelPort { - get { - return ResourceManager.GetString("strLabelPort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Portable Edition. - /// - internal static string strLabelPortableEdition { - get { - return ResourceManager.GetString("strLabelPortableEdition", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol:. - /// - internal static string strLabelProtocol { - get { - return ResourceManager.GetString("strLabelProtocol", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to To configure PuTTY sessions click this button:. - /// - internal static string strLabelPuttySessionsConfig { - get { - return ResourceManager.GetString("strLabelPuttySessionsConfig", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Maximum PuTTY and integrated external tools wait time:. - /// - internal static string strLabelPuttyTimeout { - get { - return ResourceManager.GetString("strLabelPuttyTimeout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Released under the GNU General Public License (GPL). - /// - internal static string strLabelReleasedUnderGPL { - get { - return ResourceManager.GetString("strLabelReleasedUnderGPL", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to seconds. - /// - internal static string strLabelSeconds { - get { - return ResourceManager.GetString("strLabelSeconds", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select a panel from the list below or click New to add a new one. Click OK to continue.. - /// - internal static string strLabelSelectPanel { - get { - return ResourceManager.GetString("strLabelSelectPanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Server Status:. - /// - internal static string strLabelServerStatus { - get { - return ResourceManager.GetString("strLabelServerStatus", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Database:. - /// - internal static string strLabelSQLDatabaseName { - get { - return ResourceManager.GetString("strLabelSQLDatabaseName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Database:. - /// - internal static string strLabelSQLServerDatabaseName { - get { - return ResourceManager.GetString("strLabelSQLServerDatabaseName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Username:. - /// - internal static string strLabelUsername { - get { - return ResourceManager.GetString("strLabelUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Verify:. - /// - internal static string strLabelVerify { - get { - return ResourceManager.GetString("strLabelVerify", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Language. - /// - internal static string strLanguage { - get { - return ResourceManager.GetString("strLanguage", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (Automatically Detect). - /// - internal static string strLanguageDefault { - get { - return ResourceManager.GetString("strLanguageDefault", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} must be restarted before changes to the language will take effect.. - /// - internal static string strLanguageRestartRequired { - get { - return ResourceManager.GetString("strLanguageRestartRequired", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Load from SQL failed. - /// - internal static string strLoadFromSqlFailed { - get { - return ResourceManager.GetString("strLoadFromSqlFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The connection information could not be loaded from the SQL server.. - /// - internal static string strLoadFromSqlFailedContent { - get { - return ResourceManager.GetString("strLoadFromSqlFailedContent", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Load From XML failed!. - /// - internal static string strLoadFromXmlFailed { - get { - return ResourceManager.GetString("strLoadFromXmlFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Local file. - /// - internal static string strLocalFile { - get { - return ResourceManager.GetString("strLocalFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Local file does not exist!. - /// - internal static string strLocalFileDoesNotExist { - get { - return ResourceManager.GetString("strLocalFileDoesNotExist", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Log file path. - /// - internal static string strLogFilePath { - get { - return ResourceManager.GetString("strLogFilePath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Logging. - /// - internal static string strLogging { - get { - return ResourceManager.GetString("strLogging", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Logoff. - /// - internal static string strLogOff { - get { - return ResourceManager.GetString("strLogOff", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Log these message types. - /// - internal static string strLogTheseMessageTypes { - get { - return ResourceManager.GetString("strLogTheseMessageTypes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Log to application directory. - /// - internal static string strLogToAppDir { - get { - return ResourceManager.GetString("strLogToAppDir", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Writing to report file failed!. - /// - internal static string strLogWriteToFileFailed { - get { - return ResourceManager.GetString("strLogWriteToFileFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't save report to final location.. - /// - internal static string strLogWriteToFileFinalLocationFailed { - get { - return ResourceManager.GetString("strLogWriteToFileFinalLocationFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Uses the Magic library by [Crownwood Software]. - /// - internal static string strMagicLibraryAttribution { - get { - return ResourceManager.GetString("strMagicLibraryAttribution", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to http://www.dotnetmagic.com/. - /// - internal static string strMagicLibraryAttributionURL { - get { - return ResourceManager.GetString("strMagicLibraryAttributionURL", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to About. - /// - internal static string strMenuAbout { - get { - return ResourceManager.GetString("strMenuAbout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Add Connection Panel. - /// - internal static string strMenuAddConnectionPanel { - get { - return ResourceManager.GetString("strMenuAddConnectionPanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check for Updates. - /// - internal static string strMenuCheckForUpdates { - get { - return ResourceManager.GetString("strMenuCheckForUpdates", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Config. - /// - internal static string strMenuConfig { - get { - return ResourceManager.GetString("strMenuConfig", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect. - /// - internal static string strMenuConnect { - get { - return ResourceManager.GetString("strMenuConnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection Panels. - /// - internal static string strMenuConnectionPanels { - get { - return ResourceManager.GetString("strMenuConnectionPanels", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections. - /// - internal static string strMenuConnections { - get { - return ResourceManager.GetString("strMenuConnections", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections and Config. - /// - internal static string strMenuConnectionsAndConfig { - get { - return ResourceManager.GetString("strMenuConnectionsAndConfig", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Copy. - /// - internal static string strMenuCopy { - get { - return ResourceManager.GetString("strMenuCopy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ctrl-Alt-Del. - /// - internal static string strMenuCtrlAltDel { - get { - return ResourceManager.GetString("strMenuCtrlAltDel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ctrl-Esc. - /// - internal static string strMenuCtrlEsc { - get { - return ResourceManager.GetString("strMenuCtrlEsc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Delete.... - /// - internal static string strMenuDelete { - get { - return ResourceManager.GetString("strMenuDelete", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Delete Connection.... - /// - internal static string strMenuDeleteConnection { - get { - return ResourceManager.GetString("strMenuDeleteConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Delete External Tool.... - /// - internal static string strMenuDeleteExternalTool { - get { - return ResourceManager.GetString("strMenuDeleteExternalTool", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Delete Folder.... - /// - internal static string strMenuDeleteFolder { - get { - return ResourceManager.GetString("strMenuDeleteFolder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disconnect. - /// - internal static string strMenuDisconnect { - get { - return ResourceManager.GetString("strMenuDisconnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Donate. - /// - internal static string strMenuDonate { - get { - return ResourceManager.GetString("strMenuDonate", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Duplicate. - /// - internal static string strMenuDuplicate { - get { - return ResourceManager.GetString("strMenuDuplicate", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Duplicate Connection. - /// - internal static string strMenuDuplicateConnection { - get { - return ResourceManager.GetString("strMenuDuplicateConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Duplicate Folder. - /// - internal static string strMenuDuplicateFolder { - get { - return ResourceManager.GetString("strMenuDuplicateFolder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Duplicate Tab. - /// - internal static string strMenuDuplicateTab { - get { - return ResourceManager.GetString("strMenuDuplicateTab", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Exit. - /// - internal static string strMenuExit { - get { - return ResourceManager.GetString("strMenuExit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to External Tools. - /// - internal static string strMenuExternalTools { - get { - return ResourceManager.GetString("strMenuExternalTools", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to External Tools Toolbar. - /// - internal static string strMenuExternalToolsToolbar { - get { - return ResourceManager.GetString("strMenuExternalToolsToolbar", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &File. - /// - internal static string strMenuFile { - get { - return ResourceManager.GetString("strMenuFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Full Screen. - /// - internal static string strMenuFullScreen { - get { - return ResourceManager.GetString("strMenuFullScreen", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Full Screen (RDP). - /// - internal static string strMenuFullScreenRDP { - get { - return ResourceManager.GetString("strMenuFullScreenRDP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Help. - /// - internal static string strMenuHelp { - get { - return ResourceManager.GetString("strMenuHelp", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to mRemoteNG Help. - /// - internal static string strMenuHelpContents { - get { - return ResourceManager.GetString("strMenuHelpContents", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Jump To. - /// - internal static string strMenuJumpTo { - get { - return ResourceManager.GetString("strMenuJumpTo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Launch External Tool. - /// - internal static string strMenuLaunchExternalTool { - get { - return ResourceManager.GetString("strMenuLaunchExternalTool", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New Connection File. - /// - internal static string strMenuNewConnectionFile { - get { - return ResourceManager.GetString("strMenuNewConnectionFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New External Tool. - /// - internal static string strMenuNewExternalTool { - get { - return ResourceManager.GetString("strMenuNewExternalTool", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Notifications. - /// - internal static string strMenuNotifications { - get { - return ResourceManager.GetString("strMenuNotifications", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Copy All. - /// - internal static string strMenuNotificationsCopyAll { - get { - return ResourceManager.GetString("strMenuNotificationsCopyAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Delete. - /// - internal static string strMenuNotificationsDelete { - get { - return ResourceManager.GetString("strMenuNotificationsDelete", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Delete All. - /// - internal static string strMenuNotificationsDeleteAll { - get { - return ResourceManager.GetString("strMenuNotificationsDeleteAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Open Connection File.... - /// - internal static string strMenuOpenConnectionFile { - get { - return ResourceManager.GetString("strMenuOpenConnectionFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Options. - /// - internal static string strMenuOptions { - get { - return ResourceManager.GetString("strMenuOptions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Paste. - /// - internal static string strMenuPaste { - get { - return ResourceManager.GetString("strMenuPaste", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Port Scan. - /// - internal static string strMenuPortScan { - get { - return ResourceManager.GetString("strMenuPortScan", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Quick Connect Toolbar. - /// - internal static string strMenuQuickConnectToolbar { - get { - return ResourceManager.GetString("strMenuQuickConnectToolbar", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reconnect. - /// - internal static string strMenuReconnect { - get { - return ResourceManager.GetString("strMenuReconnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reconnect All Open Connections. - /// - internal static string strMenuReconnectAll { - get { - return ResourceManager.GetString("strMenuReconnectAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Refresh Screen (VNC). - /// - internal static string strMenuRefreshScreen { - get { - return ResourceManager.GetString("strMenuRefreshScreen", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rename. - /// - internal static string strMenuRename { - get { - return ResourceManager.GetString("strMenuRename", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rename Connection. - /// - internal static string strMenuRenameConnection { - get { - return ResourceManager.GetString("strMenuRenameConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rename Folder. - /// - internal static string strMenuRenameFolder { - get { - return ResourceManager.GetString("strMenuRenameFolder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rename Tab. - /// - internal static string strMenuRenameTab { - get { - return ResourceManager.GetString("strMenuRenameTab", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Report a Bug. - /// - internal static string strMenuReportBug { - get { - return ResourceManager.GetString("strMenuReportBug", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reset layout. - /// - internal static string strMenuResetLayout { - get { - return ResourceManager.GetString("strMenuResetLayout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Save Connection File. - /// - internal static string strMenuSaveConnectionFile { - get { - return ResourceManager.GetString("strMenuSaveConnectionFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Save Connection File As.... - /// - internal static string strMenuSaveConnectionFileAs { - get { - return ResourceManager.GetString("strMenuSaveConnectionFileAs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Screenshot. - /// - internal static string strMenuScreenshot { - get { - return ResourceManager.GetString("strMenuScreenshot", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Screenshot Manager. - /// - internal static string strMenuScreenshotManager { - get { - return ResourceManager.GetString("strMenuScreenshotManager", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Send Special Keys (VNC). - /// - internal static string strMenuSendSpecialKeys { - get { - return ResourceManager.GetString("strMenuSendSpecialKeys", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Retrieve. - /// - internal static string strMenuSessionRetrieve { - get { - return ResourceManager.GetString("strMenuSessionRetrieve", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sessions. - /// - internal static string strMenuSessions { - get { - return ResourceManager.GetString("strMenuSessions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sessions and Screenshots. - /// - internal static string strMenuSessionsAndScreenshots { - get { - return ResourceManager.GetString("strMenuSessionsAndScreenshots", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Show Help Text. - /// - internal static string strMenuShowHelpText { - get { - return ResourceManager.GetString("strMenuShowHelpText", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show Text. - /// - internal static string strMenuShowText { - get { - return ResourceManager.GetString("strMenuShowText", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SmartSize (RDP/VNC). - /// - internal static string strMenuSmartSize { - get { - return ResourceManager.GetString("strMenuSmartSize", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SSH File Transfer. - /// - internal static string strMenuSSHFileTransfer { - get { - return ResourceManager.GetString("strMenuSSHFileTransfer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Start Chat (VNC). - /// - internal static string strMenuStartChat { - get { - return ResourceManager.GetString("strMenuStartChat", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Support Forum. - /// - internal static string strMenuSupportForum { - get { - return ResourceManager.GetString("strMenuSupportForum", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Tools. - /// - internal static string strMenuTools { - get { - return ResourceManager.GetString("strMenuTools", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Transfer File (SSH). - /// - internal static string strMenuTransferFile { - get { - return ResourceManager.GetString("strMenuTransferFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &View. - /// - internal static string strMenuView { - get { - return ResourceManager.GetString("strMenuView", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to View Only (VNC). - /// - internal static string strMenuViewOnly { - get { - return ResourceManager.GetString("strMenuViewOnly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Website. - /// - internal static string strMenuWebsite { - get { - return ResourceManager.GetString("strMenuWebsite", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Minimize to notification area. - /// - internal static string strMinimizeToSysTray { - get { - return ResourceManager.GetString("strMinimizeToSysTray", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Move down. - /// - internal static string strMoveDown { - get { - return ResourceManager.GetString("strMoveDown", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Move up. - /// - internal static string strMoveUp { - get { - return ResourceManager.GetString("strMoveUp", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to mRemoteNG CSV. - /// - internal static string strMremoteNgCsv { - get { - return ResourceManager.GetString("strMremoteNgCsv", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to mRemoteNG XML. - /// - internal static string strMremoteNgXml { - get { - return ResourceManager.GetString("strMremoteNgXml", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to My current credentials (Windows logon information). - /// - internal static string strMyCurrentWindowsCreds { - get { - return ResourceManager.GetString("strMyCurrentWindowsCreds", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Never. - /// - internal static string strNever { - get { - return ResourceManager.GetString("strNever", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New Connection. - /// - internal static string strNewConnection { - get { - return ResourceManager.GetString("strNewConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New Folder. - /// - internal static string strNewFolder { - get { - return ResourceManager.GetString("strNewFolder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New Panel. - /// - internal static string strNewPanel { - get { - return ResourceManager.GetString("strNewPanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New Root. - /// - internal static string strNewRoot { - get { - return ResourceManager.GetString("strNewRoot", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New Title. - /// - internal static string strNewTitle { - get { - return ResourceManager.GetString("strNewTitle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No. - /// - internal static string strNo { - get { - return ResourceManager.GetString("strNo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No Compression. - /// - internal static string strNoCompression { - get { - return ResourceManager.GetString("strNoCompression", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to This node is already in this folder.. - /// - internal static string strNodeAlreadyInFolder { - get { - return ResourceManager.GetString("strNodeAlreadyInFolder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot drag node onto itself.. - /// - internal static string strNodeCannotDragOnSelf { - get { - return ResourceManager.GetString("strNodeCannotDragOnSelf", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot drag parent node onto child.. - /// - internal static string strNodeCannotDragParentOnChild { - get { - return ResourceManager.GetString("strNodeCannotDragParentOnChild", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to This node is not draggable.. - /// - internal static string strNodeNotDraggable { - get { - return ResourceManager.GetString("strNodeNotDraggable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No Ext. App specified.. - /// - internal static string strNoExtAppDefined { - get { - return ResourceManager.GetString("strNoExtAppDefined", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to None. - /// - internal static string strNoInformation { - get { - return ResourceManager.GetString("strNoInformation", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to None. - /// - internal static string strNone { - get { - return ResourceManager.GetString("strNone", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Normal. - /// - internal static string strNormal { - get { - return ResourceManager.GetString("strNormal", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No SmartSize. - /// - internal static string strNoSmartSize { - get { - return ResourceManager.GetString("strNoSmartSize", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No update available. - /// - internal static string strNoUpdateAvailable { - get { - return ResourceManager.GetString("strNoUpdateAvailable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to You are trying to load a connection file that was created using an very early version of mRemote, this could result in an runtime error. - ///If you run into such an error, please create a new connection file!. - /// - internal static string strOldConffile { - get { - return ResourceManager.GetString("strOldConffile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Open a different file. - /// - internal static string strOpenADifferentFile { - get { - return ResourceManager.GetString("strOpenADifferentFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Open File. - /// - internal static string strOpenFile { - get { - return ResourceManager.GetString("strOpenFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Open new tab to the right of the currently selected tab. - /// - internal static string strOpenNewTabRight { - get { - return ResourceManager.GetString("strOpenNewTabRight", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Open Ports. - /// - internal static string strOpenPorts { - get { - return ResourceManager.GetString("strOpenPorts", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Delete. - /// - internal static string strOptionsKeyboardButtonDelete { - get { - return ResourceManager.GetString("strOptionsKeyboardButtonDelete", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &New. - /// - internal static string strOptionsKeyboardButtonNew { - get { - return ResourceManager.GetString("strOptionsKeyboardButtonNew", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Reset to Default. - /// - internal static string strOptionsKeyboardButtonReset { - get { - return ResourceManager.GetString("strOptionsKeyboardButtonReset", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reset &All to Default. - /// - internal static string strOptionsKeyboardButtonResetAll { - get { - return ResourceManager.GetString("strOptionsKeyboardButtonResetAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Tabs. - /// - internal static string strOptionsKeyboardCommandsGroupTabs { - get { - return ResourceManager.GetString("strOptionsKeyboardCommandsGroupTabs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Next Tab. - /// - internal static string strOptionsKeyboardCommandsNextTab { - get { - return ResourceManager.GetString("strOptionsKeyboardCommandsNextTab", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Previous Tab. - /// - internal static string strOptionsKeyboardCommandsPreviousTab { - get { - return ResourceManager.GetString("strOptionsKeyboardCommandsPreviousTab", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Modify Shortcut. - /// - internal static string strOptionsKeyboardGroupModifyShortcut { - get { - return ResourceManager.GetString("strOptionsKeyboardGroupModifyShortcut", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Keyboard Shortcuts. - /// - internal static string strOptionsKeyboardLabelKeyboardShortcuts { - get { - return ResourceManager.GetString("strOptionsKeyboardLabelKeyboardShortcuts", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Testing.... - /// - internal static string strOptionsProxyTesting { - get { - return ResourceManager.GetString("strOptionsProxyTesting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Keyboard. - /// - internal static string strOptionsTabKeyboard { - get { - return ResourceManager.GetString("strOptionsTabKeyboard", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Theme. - /// - internal static string strOptionsTabTheme { - get { - return ResourceManager.GetString("strOptionsTabTheme", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Delete. - /// - internal static string strOptionsThemeButtonDelete { - get { - return ResourceManager.GetString("strOptionsThemeButtonDelete", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &New. - /// - internal static string strOptionsThemeButtonNew { - get { - return ResourceManager.GetString("strOptionsThemeButtonNew", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do you really want to delete the theme?. - /// - internal static string strOptionsThemeDeleteConfirmation { - get { - return ResourceManager.GetString("strOptionsThemeDeleteConfirmation", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enable Themes. - /// - internal static string strOptionsThemeEnableTheming { - get { - return ResourceManager.GetString("strOptionsThemeEnableTheming", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No themes are loaded, check that the default mremoteNG themes exist in the slash themes folder. - /// - internal static string strOptionsThemeErrorNoThemes { - get { - return ResourceManager.GetString("strOptionsThemeErrorNoThemes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to New theme name. - /// - internal static string strOptionsThemeNewThemeCaption { - get { - return ResourceManager.GetString("strOptionsThemeNewThemeCaption", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot create theme, name already present or special characters in the name. - /// - internal static string strOptionsThemeNewThemeError { - get { - return ResourceManager.GetString("strOptionsThemeNewThemeError", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Type the new theme name. - /// - internal static string strOptionsThemeNewThemeText { - get { - return ResourceManager.GetString("strOptionsThemeNewThemeText", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Warning: Restart is required to disable the themes or to completely apply a new one. - /// - internal static string strOptionsThemeThemeChaangeWarning { - get { - return ResourceManager.GetString("strOptionsThemeThemeChaangeWarning", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Panel Name. - /// - internal static string strPanelName { - get { - return ResourceManager.GetString("strPanelName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password must contain at least {0} of the following characters: {1}. - /// - internal static string strPasswordConstainsSpecialCharactersConstraintHint { - get { - return ResourceManager.GetString("strPasswordConstainsSpecialCharactersConstraintHint", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password must contain at least {0} lower case character(s). - /// - internal static string strPasswordContainsLowerCaseConstraintHint { - get { - return ResourceManager.GetString("strPasswordContainsLowerCaseConstraintHint", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password must contain at least {0} number(s). - /// - internal static string strPasswordContainsNumbersConstraint { - get { - return ResourceManager.GetString("strPasswordContainsNumbersConstraint", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password must contain at least {0} upper case character(s). - /// - internal static string strPasswordContainsUpperCaseConstraintHint { - get { - return ResourceManager.GetString("strPasswordContainsUpperCaseConstraintHint", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password length must be between {0} and {1}. - /// - internal static string strPasswordLengthConstraintHint { - get { - return ResourceManager.GetString("strPasswordLengthConstraintHint", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password protect. - /// - internal static string strPasswordProtect { - get { - return ResourceManager.GetString("strPasswordProtect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Both passwords must match.. - /// - internal static string strPasswordStatusMustMatch { - get { - return ResourceManager.GetString("strPasswordStatusMustMatch", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The password must be at least 3 characters long.. - /// - internal static string strPasswordStatusTooShort { - get { - return ResourceManager.GetString("strPasswordStatusTooShort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please fill all fields. - /// - internal static string strPleaseFillAllFields { - get { - return ResourceManager.GetString("strPleaseFillAllFields", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Popups. - /// - internal static string strPopups { - get { - return ResourceManager.GetString("strPopups", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Port scan complete.. - /// - internal static string strPortScanComplete { - get { - return ResourceManager.GetString("strPortScanComplete", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't load PortScan panel!. - /// - internal static string strPortScanCouldNotLoadPanel { - get { - return ResourceManager.GetString("strPortScanCouldNotLoadPanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (These properties will only be saved if you select mRemote/mRemoteNG XML as output file format!). - /// - internal static string strPropertiesWillOnlyBeSavedMRemoteXML { - get { - return ResourceManager.GetString("strPropertiesWillOnlyBeSavedMRemoteXML", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter the hostname or ip you want to connect to.. - /// - internal static string strPropertyDescriptionAddress { - get { - return ResourceManager.GetString("strPropertyDescriptionAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Toggle all inheritance options.. - /// - internal static string strPropertyDescriptionAll { - get { - return ResourceManager.GetString("strPropertyDescriptionAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select which authentication level this connection should use.. - /// - internal static string strPropertyDescriptionAuthenticationLevel { - get { - return ResourceManager.GetString("strPropertyDescriptionAuthenticationLevel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select how you want to authenticate against the VNC server.. - /// - internal static string strPropertyDescriptionAuthenticationMode { - get { - return ResourceManager.GetString("strPropertyDescriptionAuthenticationMode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether to automatically resize the connection when the window is resized or when fullscreen mode is toggled. Requires RDC 8.0 or higher.. - /// - internal static string strPropertyDescriptionAutomaticResize { - get { - return ResourceManager.GetString("strPropertyDescriptionAutomaticResize", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether to use bitmap caching or not.. - /// - internal static string strPropertyDescriptionCacheBitmaps { - get { - return ResourceManager.GetString("strPropertyDescriptionCacheBitmaps", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the colour quality to be used.. - /// - internal static string strPropertyDescriptionColors { - get { - return ResourceManager.GetString("strPropertyDescriptionColors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the compression value to be used.. - /// - internal static string strPropertyDescriptionCompression { - get { - return ResourceManager.GetString("strPropertyDescriptionCompression", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select which credential to use for this connection.. - /// - internal static string strPropertyDescriptionCredential { - get { - return ResourceManager.GetString("strPropertyDescriptionCredential", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Put your notes or a description for the host here.. - /// - internal static string strPropertyDescriptionDescription { - get { - return ResourceManager.GetString("strPropertyDescriptionDescription", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select yes if the theme of the remote host should be displayed.. - /// - internal static string strPropertyDescriptionDisplayThemes { - get { - return ResourceManager.GetString("strPropertyDescriptionDisplayThemes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select yes if the wallpaper of the remote host should be displayed.. - /// - internal static string strPropertyDescriptionDisplayWallpaper { - get { - return ResourceManager.GetString("strPropertyDescriptionDisplayWallpaper", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter your domain.. - /// - internal static string strPropertyDescriptionDomain { - get { - return ResourceManager.GetString("strPropertyDescriptionDomain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether to use desktop composition or not.. - /// - internal static string strPropertyDescriptionEnableDesktopComposition { - get { - return ResourceManager.GetString("strPropertyDescriptionEnableDesktopComposition", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether to use font smoothing or not.. - /// - internal static string strPropertyDescriptionEnableFontSmoothing { - get { - return ResourceManager.GetString("strPropertyDescriptionEnableFontSmoothing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the encoding mode to be used.. - /// - internal static string strPropertyDescriptionEncoding { - get { - return ResourceManager.GetString("strPropertyDescriptionEncoding", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the encryption strength of the remote host.. - /// - internal static string strPropertyDescriptionEncryptionStrength { - get { - return ResourceManager.GetString("strPropertyDescriptionEncryptionStrength", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the external tool to be started.. - /// - internal static string strPropertyDescriptionExternalTool { - get { - return ResourceManager.GetString("strPropertyDescriptionExternalTool", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select a external tool to be started after the disconnection to the remote host.. - /// - internal static string strPropertyDescriptionExternalToolAfter { - get { - return ResourceManager.GetString("strPropertyDescriptionExternalToolAfter", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select a external tool to be started before the connection to the remote host is established.. - /// - internal static string strPropertyDescriptionExternalToolBefore { - get { - return ResourceManager.GetString("strPropertyDescriptionExternalToolBefore", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose a icon that will be displayed when connected to the host.. - /// - internal static string strPropertyDescriptionIcon { - get { - return ResourceManager.GetString("strPropertyDescriptionIcon", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies the load balancing information for use by load balancing routers to choose the best server.. - /// - internal static string strPropertyDescriptionLoadBalanceInfo { - get { - return ResourceManager.GetString("strPropertyDescriptionLoadBalanceInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter the MAC address of the remote host if you wish to use it in an external tool.. - /// - internal static string strPropertyDescriptionMACAddress { - get { - return ResourceManager.GetString("strPropertyDescriptionMACAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to This is the name that will be displayed in the connections tree.. - /// - internal static string strPropertyDescriptionName { - get { - return ResourceManager.GetString("strPropertyDescriptionName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sets the panel in which the connection will open.. - /// - internal static string strPropertyDescriptionPanel { - get { - return ResourceManager.GetString("strPropertyDescriptionPanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter your password.. - /// - internal static string strPropertyDescriptionPassword { - get { - return ResourceManager.GetString("strPropertyDescriptionPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter the port the selected protocol is listening on.. - /// - internal static string strPropertyDescriptionPort { - get { - return ResourceManager.GetString("strPropertyDescriptionPort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose the protocol mRemoteNG should use to connect to the host.. - /// - internal static string strPropertyDescriptionProtocol { - get { - return ResourceManager.GetString("strPropertyDescriptionProtocol", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select a PuTTY session to be used when connecting.. - /// - internal static string strPropertyDescriptionPuttySession { - get { - return ResourceManager.GetString("strPropertyDescriptionPuttySession", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies the domain name that a user provides to connect to the RD Gateway server.. - /// - internal static string strPropertyDescriptionRDGatewayDomain { - get { - return ResourceManager.GetString("strPropertyDescriptionRDGatewayDomain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies the host name of the Remote Desktop Gateway server.. - /// - internal static string strPropertyDescriptionRDGatewayHostname { - get { - return ResourceManager.GetString("strPropertyDescriptionRDGatewayHostname", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies when to use a Remote Desktop Gateway (RD Gateway) server.. - /// - internal static string strPropertyDescriptionRDGatewayUsageMethod { - get { - return ResourceManager.GetString("strPropertyDescriptionRDGatewayUsageMethod", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies whether or not to log on to the gateway using the same username and password as the connection.. - /// - internal static string strPropertyDescriptionRDGatewayUseConnectionCredentials { - get { - return ResourceManager.GetString("strPropertyDescriptionRDGatewayUseConnectionCredentials", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies the user name that a user provides to connect to the RD Gateway server.. - /// - internal static string strPropertyDescriptionRDGatewayUsername { - get { - return ResourceManager.GetString("strPropertyDescriptionRDGatewayUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether to receive an alert after the RDP session disconnects due to inactivity. - /// - internal static string strPropertyDescriptionRDPAlertIdleTimeout { - get { - return ResourceManager.GetString("strPropertyDescriptionRDPAlertIdleTimeout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The number of minutes for the RDP session to sit idle before automatically disconnecting (for no limit use 0). - /// - internal static string strPropertyDescriptionRDPMinutesToIdleTimeout { - get { - return ResourceManager.GetString("strPropertyDescriptionRDPMinutesToIdleTimeout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether local disk drives should be shown on the remote host.. - /// - internal static string strPropertyDescriptionRedirectDrives { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectDrives", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host.. - /// - internal static string strPropertyDescriptionRedirectKeys { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectKeys", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether local ports (ie. com, parallel) should be shown on the remote host.. - /// - internal static string strPropertyDescriptionRedirectPorts { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectPorts", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether local printers should be shown on the remote host.. - /// - internal static string strPropertyDescriptionRedirectPrinters { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectPrinters", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether local smart cards should be available on the remote host.. - /// - internal static string strPropertyDescriptionRedirectSmartCards { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectSmartCards", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select how remote sound should be redirected.. - /// - internal static string strPropertyDescriptionRedirectSounds { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectSounds", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select one of the available rendering engines that will be used to display HTML.. - /// - internal static string strPropertyDescriptionRenderingEngine { - get { - return ResourceManager.GetString("strPropertyDescriptionRenderingEngine", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose the resolution or mode this connection will open in.. - /// - internal static string strPropertyDescriptionResolution { - get { - return ResourceManager.GetString("strPropertyDescriptionResolution", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the SmartSize mode to be used.. - /// - internal static string strPropertyDescriptionSmartSizeMode { - get { - return ResourceManager.GetString("strPropertyDescriptionSmartSizeMode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose the Sound Quality provided by the protocol: Dynamic, Medium, High. - /// - internal static string strPropertyDescriptionSoundQuality { - get { - return ResourceManager.GetString("strPropertyDescriptionSoundQuality", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect to the console session of the remote host.. - /// - internal static string strPropertyDescriptionUseConsoleSession { - get { - return ResourceManager.GetString("strPropertyDescriptionUseConsoleSession", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use the Credential Security Support Provider (CredSSP) for authentication if it is available.. - /// - internal static string strPropertyDescriptionUseCredSsp { - get { - return ResourceManager.GetString("strPropertyDescriptionUseCredSsp", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Feel free to enter any information you need here.. - /// - internal static string strPropertyDescriptionUser1 { - get { - return ResourceManager.GetString("strPropertyDescriptionUser1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter your username.. - /// - internal static string strPropertyDescriptionUsername { - get { - return ResourceManager.GetString("strPropertyDescriptionUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to If you want to establish a view only connection to the host select yes.. - /// - internal static string strPropertyDescriptionViewOnly { - get { - return ResourceManager.GetString("strPropertyDescriptionViewOnly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter the proxy address to be used.. - /// - internal static string strPropertyDescriptionVNCProxyAddress { - get { - return ResourceManager.GetString("strPropertyDescriptionVNCProxyAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter your password for authenticating against the proxy.. - /// - internal static string strPropertyDescriptionVNCProxyPassword { - get { - return ResourceManager.GetString("strPropertyDescriptionVNCProxyPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter the port the proxy server listens on.. - /// - internal static string strPropertyDescriptionVNCProxyPort { - get { - return ResourceManager.GetString("strPropertyDescriptionVNCProxyPort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to If you use a proxy to tunnel VNC connections, select which type it is.. - /// - internal static string strPropertyDescriptionVNCProxyType { - get { - return ResourceManager.GetString("strPropertyDescriptionVNCProxyType", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter your username for authenticating against the proxy.. - /// - internal static string strPropertyDescriptionVNCProxyUsername { - get { - return ResourceManager.GetString("strPropertyDescriptionVNCProxyUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hostname/IP. - /// - internal static string strPropertyNameAddress { - get { - return ResourceManager.GetString("strPropertyNameAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All. - /// - internal static string strPropertyNameAll { - get { - return ResourceManager.GetString("strPropertyNameAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Server Authentication. - /// - internal static string strPropertyNameAuthenticationLevel { - get { - return ResourceManager.GetString("strPropertyNameAuthenticationLevel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Authentication Mode. - /// - internal static string strPropertyNameAuthenticationMode { - get { - return ResourceManager.GetString("strPropertyNameAuthenticationMode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Automatic Resize. - /// - internal static string strPropertyNameAutomaticResize { - get { - return ResourceManager.GetString("strPropertyNameAutomaticResize", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cache Bitmaps. - /// - internal static string strPropertyNameCacheBitmaps { - get { - return ResourceManager.GetString("strPropertyNameCacheBitmaps", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Colours. - /// - internal static string strPropertyNameColors { - get { - return ResourceManager.GetString("strPropertyNameColors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compression. - /// - internal static string strPropertyNameCompression { - get { - return ResourceManager.GetString("strPropertyNameCompression", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Description. - /// - internal static string strPropertyNameDescription { - get { - return ResourceManager.GetString("strPropertyNameDescription", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Display Themes. - /// - internal static string strPropertyNameDisplayThemes { - get { - return ResourceManager.GetString("strPropertyNameDisplayThemes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Display Wallpaper. - /// - internal static string strPropertyNameDisplayWallpaper { - get { - return ResourceManager.GetString("strPropertyNameDisplayWallpaper", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Domain. - /// - internal static string strPropertyNameDomain { - get { - return ResourceManager.GetString("strPropertyNameDomain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Desktop Composition. - /// - internal static string strPropertyNameEnableDesktopComposition { - get { - return ResourceManager.GetString("strPropertyNameEnableDesktopComposition", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Font Smoothing. - /// - internal static string strPropertyNameEnableFontSmoothing { - get { - return ResourceManager.GetString("strPropertyNameEnableFontSmoothing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Encoding. - /// - internal static string strPropertyNameEncoding { - get { - return ResourceManager.GetString("strPropertyNameEncoding", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Encryption Strength. - /// - internal static string strPropertyNameEncryptionStrength { - get { - return ResourceManager.GetString("strPropertyNameEncryptionStrength", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to External Tool. - /// - internal static string strPropertyNameExternalTool { - get { - return ResourceManager.GetString("strPropertyNameExternalTool", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to External Tool After. - /// - internal static string strPropertyNameExternalToolAfter { - get { - return ResourceManager.GetString("strPropertyNameExternalToolAfter", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to External Tool Before. - /// - internal static string strPropertyNameExternalToolBefore { - get { - return ResourceManager.GetString("strPropertyNameExternalToolBefore", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Icon. - /// - internal static string strPropertyNameIcon { - get { - return ResourceManager.GetString("strPropertyNameIcon", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Load Balance Info. - /// - internal static string strPropertyNameLoadBalanceInfo { - get { - return ResourceManager.GetString("strPropertyNameLoadBalanceInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MAC Address. - /// - internal static string strPropertyNameMACAddress { - get { - return ResourceManager.GetString("strPropertyNameMACAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Name. - /// - internal static string strPropertyNameName { - get { - return ResourceManager.GetString("strPropertyNameName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Panel. - /// - internal static string strPropertyNamePanel { - get { - return ResourceManager.GetString("strPropertyNamePanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password. - /// - internal static string strPropertyNamePassword { - get { - return ResourceManager.GetString("strPropertyNamePassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Port. - /// - internal static string strPropertyNamePort { - get { - return ResourceManager.GetString("strPropertyNamePort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol. - /// - internal static string strPropertyNameProtocol { - get { - return ResourceManager.GetString("strPropertyNameProtocol", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY Session. - /// - internal static string strPropertyNamePuttySession { - get { - return ResourceManager.GetString("strPropertyNamePuttySession", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway Domain. - /// - internal static string strPropertyNameRDGatewayDomain { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayDomain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway Hostname. - /// - internal static string strPropertyNameRDGatewayHostname { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayHostname", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Remote Desktop Gateway Password. - /// - internal static string strPropertyNameRDGatewayPassword { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use Gateway. - /// - internal static string strPropertyNameRDGatewayUsageMethod { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayUsageMethod", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway Credentials. - /// - internal static string strPropertyNameRDGatewayUseConnectionCredentials { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayUseConnectionCredentials", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway Username. - /// - internal static string strPropertyNameRDGatewayUsername { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Alert on Idle Disconnect. - /// - internal static string strPropertyNameRDPAlertIdleTimeout { - get { - return ResourceManager.GetString("strPropertyNameRDPAlertIdleTimeout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Minutes to Idle. - /// - internal static string strPropertyNameRDPMinutesToIdleTimeout { - get { - return ResourceManager.GetString("strPropertyNameRDPMinutesToIdleTimeout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk Drives. - /// - internal static string strPropertyNameRedirectDrives { - get { - return ResourceManager.GetString("strPropertyNameRedirectDrives", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Key Combinations. - /// - internal static string strPropertyNameRedirectKeys { - get { - return ResourceManager.GetString("strPropertyNameRedirectKeys", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ports. - /// - internal static string strPropertyNameRedirectPorts { - get { - return ResourceManager.GetString("strPropertyNameRedirectPorts", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Printers. - /// - internal static string strPropertyNameRedirectPrinters { - get { - return ResourceManager.GetString("strPropertyNameRedirectPrinters", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Smart Cards. - /// - internal static string strPropertyNameRedirectSmartCards { - get { - return ResourceManager.GetString("strPropertyNameRedirectSmartCards", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sounds. - /// - internal static string strPropertyNameRedirectSounds { - get { - return ResourceManager.GetString("strPropertyNameRedirectSounds", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rendering Engine. - /// - internal static string strPropertyNameRenderingEngine { - get { - return ResourceManager.GetString("strPropertyNameRenderingEngine", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resolution. - /// - internal static string strPropertyNameResolution { - get { - return ResourceManager.GetString("strPropertyNameResolution", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SmartSize Mode. - /// - internal static string strPropertyNameSmartSizeMode { - get { - return ResourceManager.GetString("strPropertyNameSmartSizeMode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sound Quality. - /// - internal static string strPropertyNameSoundQuality { - get { - return ResourceManager.GetString("strPropertyNameSoundQuality", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use Console Session. - /// - internal static string strPropertyNameUseConsoleSession { - get { - return ResourceManager.GetString("strPropertyNameUseConsoleSession", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use CredSSP. - /// - internal static string strPropertyNameUseCredSsp { - get { - return ResourceManager.GetString("strPropertyNameUseCredSsp", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to User Field. - /// - internal static string strPropertyNameUser1 { - get { - return ResourceManager.GetString("strPropertyNameUser1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Username. - /// - internal static string strPropertyNameUsername { - get { - return ResourceManager.GetString("strPropertyNameUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to View Only. - /// - internal static string strPropertyNameViewOnly { - get { - return ResourceManager.GetString("strPropertyNameViewOnly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy Address. - /// - internal static string strPropertyNameVNCProxyAddress { - get { - return ResourceManager.GetString("strPropertyNameVNCProxyAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy Password. - /// - internal static string strPropertyNameVNCProxyPassword { - get { - return ResourceManager.GetString("strPropertyNameVNCProxyPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy Port. - /// - internal static string strPropertyNameVNCProxyPort { - get { - return ResourceManager.GetString("strPropertyNameVNCProxyPort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy Type. - /// - internal static string strPropertyNameVNCProxyType { - get { - return ResourceManager.GetString("strPropertyNameVNCProxyType", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy Username. - /// - internal static string strPropertyNameVNCProxyUsername { - get { - return ResourceManager.GetString("strPropertyNameVNCProxyUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol Event Disconnected. - ///Message: - ///{0}. - /// - internal static string strProtocolEventDisconnected { - get { - return ResourceManager.GetString("strProtocolEventDisconnected", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol Event Disconnected failed. - ///{0}. - /// - internal static string strProtocolEventDisconnectFailed { - get { - return ResourceManager.GetString("strProtocolEventDisconnectFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol to import. - /// - internal static string strProtocolToImport { - get { - return ResourceManager.GetString("strProtocolToImport", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy test failed!. - /// - internal static string strProxyTestFailed { - get { - return ResourceManager.GetString("strProxyTestFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy test succeeded!. - /// - internal static string strProxyTestSucceeded { - get { - return ResourceManager.GetString("strProxyTestSucceeded", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection failed!. - /// - internal static string strPuttyConnectionFailed { - get { - return ResourceManager.GetString("strPuttyConnectionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dispose of Putty process failed!. - /// - internal static string strPuttyDisposeFailed { - get { - return ResourceManager.GetString("strPuttyDisposeFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't set focus!. - /// - internal static string strPuttyFocusFailed { - get { - return ResourceManager.GetString("strPuttyFocusFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Get Putty Sessions Failed!. - /// - internal static string strPuttyGetSessionsFailed { - get { - return ResourceManager.GetString("strPuttyGetSessionsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Putty Handle: {0}. - /// - internal static string strPuttyHandle { - get { - return ResourceManager.GetString("strPuttyHandle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Killing Putty Process failed!. - /// - internal static string strPuttyKillFailed { - get { - return ResourceManager.GetString("strPuttyKillFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Panel Handle: {0}. - /// - internal static string strPuttyParentHandle { - get { - return ResourceManager.GetString("strPuttyParentHandle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Putty Resize Failed!. - /// - internal static string strPuttyResizeFailed { - get { - return ResourceManager.GetString("strPuttyResizeFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY Saved Sessions. - /// - internal static string strPuttySavedSessionsRootName { - get { - return ResourceManager.GetString("strPuttySavedSessionsRootName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY Session Settings. - /// - internal static string strPuttySessionSettings { - get { - return ResourceManager.GetString("strPuttySessionSettings", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY Settings. - /// - internal static string strPuttySettings { - get { - return ResourceManager.GetString("strPuttySettings", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show PuTTY Settings Dialog failed!. - /// - internal static string strPuttyShowSettingsDialogFailed { - get { - return ResourceManager.GetString("strPuttyShowSettingsDialogFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Putty Start Failed!. - /// - internal static string strPuttyStartFailed { - get { - return ResourceManager.GetString("strPuttyStartFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to --- PuTTY Stuff ---. - /// - internal static string strPuttyStuff { - get { - return ResourceManager.GetString("strPuttyStuff", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY Title: {0}. - /// - internal static string strPuttyTitle { - get { - return ResourceManager.GetString("strPuttyTitle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Quick: {0}. - /// - internal static string strQuick { - get { - return ResourceManager.GetString("strQuick", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Quick Connect. - /// - internal static string strQuickConnect { - get { - return ResourceManager.GetString("strQuickConnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Quick Connect Add Failed!. - /// - internal static string strQuickConnectAddFailed { - get { - return ResourceManager.GetString("strQuickConnectAddFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Creating quick connect failed. - /// - internal static string strQuickConnectFailed { - get { - return ResourceManager.GetString("strQuickConnectFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Warn me when closing connections. - /// - internal static string strRadioCloseWarnAll { - get { - return ResourceManager.GetString("strRadioCloseWarnAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Warn me only when e&xiting mRemoteNG. - /// - internal static string strRadioCloseWarnExit { - get { - return ResourceManager.GetString("strRadioCloseWarnExit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Warn me only when closing &multiple connections. - /// - internal static string strRadioCloseWarnMultiple { - get { - return ResourceManager.GetString("strRadioCloseWarnMultiple", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do &not warn me when closing connections. - /// - internal static string strRadioCloseWarnNever { - get { - return ResourceManager.GetString("strRadioCloseWarnNever", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RAW. - /// - internal static string strRAW { - get { - return ResourceManager.GetString("strRAW", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP. - /// - internal static string strRDP { - get { - return ResourceManager.GetString("strRDP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 16777216 Colours (24-bit). - /// - internal static string strRDP16777216Colors { - get { - return ResourceManager.GetString("strRDP16777216Colors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 256 Colours (8-bit). - /// - internal static string strRDP256Colors { - get { - return ResourceManager.GetString("strRDP256Colors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 32768 Colours (15-bit). - /// - internal static string strRDP32768Colors { - get { - return ResourceManager.GetString("strRDP32768Colors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 16777216 Colours (32-bit). - /// - internal static string strRDP4294967296Colors { - get { - return ResourceManager.GetString("strRDP4294967296Colors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 65536 Colours (16-bit). - /// - internal static string strRDP65536Colors { - get { - return ResourceManager.GetString("strRDP65536Colors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP Add Resolution failed!. - /// - internal static string strRdpAddResolutionFailed { - get { - return ResourceManager.GetString("strRdpAddResolutionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP Add Resolutions failed!. - /// - internal static string strRdpAddResolutionsFailed { - get { - return ResourceManager.GetString("strRdpAddResolutionsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Add Session failed. - /// - internal static string strRdpAddSessionFailed { - get { - return ResourceManager.GetString("strRdpAddSessionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Close RDP Connection failed!. - /// - internal static string strRdpCloseConnectionFailed { - get { - return ResourceManager.GetString("strRdpCloseConnectionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Opening connection failed!. - /// - internal static string strRdpConnectionOpenFailed { - get { - return ResourceManager.GetString("strRdpConnectionOpenFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't create RDP control, please check mRemoteNG requirements.. - /// - internal static string strRdpControlCreationFailed { - get { - return ResourceManager.GetString("strRdpControlCreationFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disable Cursor blinking. - /// - internal static string strRDPDisableCursorblinking { - get { - return ResourceManager.GetString("strRDPDisableCursorblinking", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disable Cursor Shadow. - /// - internal static string strRDPDisableCursorShadow { - get { - return ResourceManager.GetString("strRDPDisableCursorShadow", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disable Full Window drag. - /// - internal static string strRDPDisableFullWindowdrag { - get { - return ResourceManager.GetString("strRDPDisableFullWindowdrag", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disable Menu Animations. - /// - internal static string strRDPDisableMenuAnimations { - get { - return ResourceManager.GetString("strRDPDisableMenuAnimations", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disable Themes. - /// - internal static string strRDPDisableThemes { - get { - return ResourceManager.GetString("strRDPDisableThemes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disable Wallpaper. - /// - internal static string strRDPDisableWallpaper { - get { - return ResourceManager.GetString("strRDPDisableWallpaper", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP disconnected!. - /// - internal static string strRdpDisconnected { - get { - return ResourceManager.GetString("strRdpDisconnected", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP Disconnect failed, trying to close!. - /// - internal static string strRdpDisconnectFailed { - get { - return ResourceManager.GetString("strRdpDisconnectFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Internal error code 1.. - /// - internal static string strRdpErrorCode1 { - get { - return ResourceManager.GetString("strRdpErrorCode1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Internal error code 2.. - /// - internal static string strRdpErrorCode2 { - get { - return ResourceManager.GetString("strRdpErrorCode2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Internal error code 3. This is not a valid state.. - /// - internal static string strRdpErrorCode3 { - get { - return ResourceManager.GetString("strRdpErrorCode3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Internal error code 4.. - /// - internal static string strRdpErrorCode4 { - get { - return ResourceManager.GetString("strRdpErrorCode4", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to An unrecoverable error has occurred during client connection.. - /// - internal static string strRdpErrorConnection { - get { - return ResourceManager.GetString("strRdpErrorConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to GetError failed (FatalErrors). - /// - internal static string strRdpErrorGetFailure { - get { - return ResourceManager.GetString("strRdpErrorGetFailure", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to An unknown fatal RDP error has occurred. Error code {0}.. - /// - internal static string strRdpErrorGetUnknown { - get { - return ResourceManager.GetString("strRdpErrorGetUnknown", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to An out-of-memory error has occurred.. - /// - internal static string strRdpErrorOutOfMemory { - get { - return ResourceManager.GetString("strRdpErrorOutOfMemory", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to An unknown error has occurred.. - /// - internal static string strRdpErrorUnknown { - get { - return ResourceManager.GetString("strRdpErrorUnknown", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to A window-creation error has occurred.. - /// - internal static string strRdpErrorWindowCreation { - get { - return ResourceManager.GetString("strRdpErrorWindowCreation", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Winsock initialization error.. - /// - internal static string strRdpErrorWinsock { - get { - return ResourceManager.GetString("strRdpErrorWinsock", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't import rdp file!. - /// - internal static string strRdpFileCouldNotBeImported { - get { - return ResourceManager.GetString("strRdpFileCouldNotBeImported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Fit To Panel. - /// - internal static string strRDPFitToPanel { - get { - return ResourceManager.GetString("strRDPFitToPanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP Focus failed!. - /// - internal static string strRdpFocusFailed { - get { - return ResourceManager.GetString("strRdpFocusFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RD Gateway is supported.. - /// - internal static string strRdpGatewayIsSupported { - get { - return ResourceManager.GetString("strRdpGatewayIsSupported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RD Gateway is not supported!. - /// - internal static string strRdpGatewayNotSupported { - get { - return ResourceManager.GetString("strRdpGatewayNotSupported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to GetSessions failed!. - /// - internal static string strRdpGetSessionsFailed { - get { - return ResourceManager.GetString("strRdpGetSessionsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Open RDP Connection failed!. - /// - internal static string strRdpOpenConnectionFailed { - get { - return ResourceManager.GetString("strRdpOpenConnectionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP Connection Timeout. - /// - internal static string strRDPOverallConnectionTimeout { - get { - return ResourceManager.GetString("strRDPOverallConnectionTimeout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP reconnection count:. - /// - internal static string strRdpReconnectCount { - get { - return ResourceManager.GetString("strRdpReconnectCount", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP SetAuthenticationLevel failed!. - /// - internal static string strRdpSetAuthenticationLevelFailed { - get { - return ResourceManager.GetString("strRdpSetAuthenticationLevelFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP SetUseConsoleSession failed!. - /// - internal static string strRdpSetConsoleSessionFailed { - get { - return ResourceManager.GetString("strRdpSetConsoleSessionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting Console switch for RDC {0}.. - /// - internal static string strRdpSetConsoleSwitch { - get { - return ResourceManager.GetString("strRdpSetConsoleSwitch", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP SetCredentials failed!. - /// - internal static string strRdpSetCredentialsFailed { - get { - return ResourceManager.GetString("strRdpSetCredentialsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP SetEventHandlers failed!. - /// - internal static string strRdpSetEventHandlersFailed { - get { - return ResourceManager.GetString("strRdpSetEventHandlersFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP SetRDGateway failed!. - /// - internal static string strRdpSetGatewayFailed { - get { - return ResourceManager.GetString("strRdpSetGatewayFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP SetPerformanceFlags failed!. - /// - internal static string strRdpSetPerformanceFlagsFailed { - get { - return ResourceManager.GetString("strRdpSetPerformanceFlagsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP SetPort failed!. - /// - internal static string strRdpSetPortFailed { - get { - return ResourceManager.GetString("strRdpSetPortFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP SetProps failed!. - /// - internal static string strRdpSetPropsFailed { - get { - return ResourceManager.GetString("strRdpSetPropsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rdp Set Redirection Failed!. - /// - internal static string strRdpSetRedirectionFailed { - get { - return ResourceManager.GetString("strRdpSetRedirectionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rdp Set Redirect Keys Failed!. - /// - internal static string strRdpSetRedirectKeysFailed { - get { - return ResourceManager.GetString("strRdpSetRedirectKeysFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP SetResolution failed!. - /// - internal static string strRdpSetResolutionFailed { - get { - return ResourceManager.GetString("strRdpSetResolutionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Smart Size. - /// - internal static string strRDPSmartSize { - get { - return ResourceManager.GetString("strRDPSmartSize", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Bring to this computer. - /// - internal static string strRDPSoundBringToThisComputer { - get { - return ResourceManager.GetString("strRDPSoundBringToThisComputer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do not play. - /// - internal static string strRDPSoundDoNotPlay { - get { - return ResourceManager.GetString("strRDPSoundDoNotPlay", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Leave at remote computer. - /// - internal static string strRDPSoundLeaveAtRemoteComputer { - get { - return ResourceManager.GetString("strRDPSoundLeaveAtRemoteComputer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dynamic. - /// - internal static string strRDPSoundQualityDynamic { - get { - return ResourceManager.GetString("strRDPSoundQualityDynamic", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to High. - /// - internal static string strRDPSoundQualityHigh { - get { - return ResourceManager.GetString("strRDPSoundQualityHigh", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Medium. - /// - internal static string strRDPSoundQualityMedium { - get { - return ResourceManager.GetString("strRDPSoundQualityMedium", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP ToggleFullscreen failed!. - /// - internal static string strRdpToggleFullscreenFailed { - get { - return ResourceManager.GetString("strRdpToggleFullscreenFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP ToggleSmartSize failed!. - /// - internal static string strRdpToggleSmartSizeFailed { - get { - return ResourceManager.GetString("strRdpToggleSmartSizeFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reconnect to previously opened sessions on startup. - /// - internal static string strReconnectAtStartup { - get { - return ResourceManager.GetString("strReconnectAtStartup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Refresh. - /// - internal static string strRefresh { - get { - return ResourceManager.GetString("strRefresh", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Remote file. - /// - internal static string strRemoteFile { - get { - return ResourceManager.GetString("strRemoteFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Remove. - /// - internal static string strRemove { - get { - return ResourceManager.GetString("strRemove", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Remove All. - /// - internal static string strRemoveAll { - get { - return ResourceManager.GetString("strRemoveAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rename. - /// - internal static string strRename { - get { - return ResourceManager.GetString("strRename", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rlogin. - /// - internal static string strRlogin { - get { - return ResourceManager.GetString("strRlogin", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Save. - /// - internal static string strSave { - get { - return ResourceManager.GetString("strSave", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Save All. - /// - internal static string strSaveAll { - get { - return ResourceManager.GetString("strSaveAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do you want to save the current connections file before loading another?. - /// - internal static string strSaveConnectionsFileBeforeOpeningAnother { - get { - return ResourceManager.GetString("strSaveConnectionsFileBeforeOpeningAnother", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Save connections on exit. - /// - internal static string strSaveConsOnExit { - get { - return ResourceManager.GetString("strSaveConsOnExit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Graphics Interchange Format File (.gif)|*.gif|Joint Photographic Experts Group File (.jpeg)|*.jpeg|Joint Photographic Experts Group File (.jpg)|*.jpg|Portable Network Graphics File (.png)|*.png. - /// - internal static string strSaveImageFilter { - get { - return ResourceManager.GetString("strSaveImageFilter", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Screen. - /// - internal static string strScreen { - get { - return ResourceManager.GetString("strScreen", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Screenshot. - /// - internal static string strScreenshot { - get { - return ResourceManager.GetString("strScreenshot", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Screenshots. - /// - internal static string strScreenshots { - get { - return ResourceManager.GetString("strScreenshots", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Search. - /// - internal static string strSearchPrompt { - get { - return ResourceManager.GetString("strSearchPrompt", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Send To.... - /// - internal static string strSendTo { - get { - return ResourceManager.GetString("strSendTo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Get Sessions Background failed. - /// - internal static string strSessionGetFailed { - get { - return ResourceManager.GetString("strSessionGetFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Kill Session Background failed. - /// - internal static string strSessionKillFailed { - get { - return ResourceManager.GetString("strSessionKillFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Set hostname like display name when creating or renaming connections. - /// - internal static string strSetHostnameLikeDisplayName { - get { - return ResourceManager.GetString("strSetHostnameLikeDisplayName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Setting main form text failed. - /// - internal static string strSettingMainFormTextFailed { - get { - return ResourceManager.GetString("strSettingMainFormTextFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't save settings or dispose SysTray Icon!. - /// - internal static string strSettingsCouldNotBeSavedOrTrayDispose { - get { - return ResourceManager.GetString("strSettingsCouldNotBeSavedOrTrayDispose", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show description tooltips in connection tree. - /// - internal static string strShowDescriptionTooltips { - get { - return ResourceManager.GetString("strShowDescriptionTooltips", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show full connections file path in window title. - /// - internal static string strShowFullConsFilePath { - get { - return ResourceManager.GetString("strShowFullConsFilePath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show logon information on tab names. - /// - internal static string strShowLogonInfoOnTabs { - get { - return ResourceManager.GetString("strShowLogonInfoOnTabs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show protocols on tab names. - /// - internal static string strShowProtocolOnTabs { - get { - return ResourceManager.GetString("strShowProtocolOnTabs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show these message types. - /// - internal static string strShowTheseMessageTypes { - get { - return ResourceManager.GetString("strShowTheseMessageTypes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Single click on connection opens it. - /// - internal static string strSingleClickOnConnectionOpensIt { - get { - return ResourceManager.GetString("strSingleClickOnConnectionOpensIt", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Single click on opened connection in Connection Tree switches to opened Connection Tab. - /// - internal static string strSingleClickOnOpenConnectionSwitchesToIt { - get { - return ResourceManager.GetString("strSingleClickOnOpenConnectionSwitchesToIt", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Aspect. - /// - internal static string strSmartSizeModeAspect { - get { - return ResourceManager.GetString("strSmartSizeModeAspect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Free. - /// - internal static string strSmartSizeModeFree { - get { - return ResourceManager.GetString("strSmartSizeModeFree", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to No SmartSize. - /// - internal static string strSmartSizeModeNone { - get { - return ResourceManager.GetString("strSmartSizeModeNone", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Socks 5. - /// - internal static string strSocks5 { - get { - return ResourceManager.GetString("strSocks5", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sort. - /// - internal static string strSort { - get { - return ResourceManager.GetString("strSort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ascending (A-Z). - /// - internal static string strSortAsc { - get { - return ResourceManager.GetString("strSortAsc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Descending (Z-A). - /// - internal static string strSortDesc { - get { - return ResourceManager.GetString("strSortDesc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Special Keys. - /// - internal static string strSpecialKeys { - get { - return ResourceManager.GetString("strSpecialKeys", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please see Help - Getting started - SQL Configuration for more Info!. - /// - internal static string strSQLInfo { - get { - return ResourceManager.GetString("strSQLInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SQL Server. - /// - internal static string strSQLServer { - get { - return ResourceManager.GetString("strSQLServer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SQL Update check finished and there is an update available! Going to refresh connections.. - /// - internal static string strSqlUpdateCheckUpdateAvailable { - get { - return ResourceManager.GetString("strSqlUpdateCheckUpdateAvailable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SSH version 1. - /// - internal static string strSsh1 { - get { - return ResourceManager.GetString("strSsh1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SSH version 2. - /// - internal static string strSsh2 { - get { - return ResourceManager.GetString("strSsh2", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SSH background transfer failed!. - /// - internal static string strSSHStartTransferBG { - get { - return ResourceManager.GetString("strSSHStartTransferBG", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Transfer successful!. - /// - internal static string strSSHTranferSuccessful { - get { - return ResourceManager.GetString("strSSHTranferSuccessful", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SSH Transfer End (UI.Window.SSHTransfer) failed!. - /// - internal static string strSSHTransferEndFailed { - get { - return ResourceManager.GetString("strSSHTransferEndFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SSH transfer failed.. - /// - internal static string strSSHTransferFailed { - get { - return ResourceManager.GetString("strSSHTransferFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Start IP. - /// - internal static string strStartIP { - get { - return ResourceManager.GetString("strStartIP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Start Port. - /// - internal static string strStartPort { - get { - return ResourceManager.GetString("strStartPort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Startup/Exit. - /// - internal static string strStartupExit { - get { - return ResourceManager.GetString("strStartupExit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Status. - /// - internal static string strStatus { - get { - return ResourceManager.GetString("strStatus", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Switch to Notifications panel on:. - /// - internal static string strSwitchToErrorsAndInfos { - get { - return ResourceManager.GetString("strSwitchToErrorsAndInfos", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Advanced. - /// - internal static string strTabAdvanced { - get { - return ResourceManager.GetString("strTabAdvanced", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Appearance. - /// - internal static string strTabAppearance { - get { - return ResourceManager.GetString("strTabAppearance", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Tabs && Panels. - /// - internal static string strTabsAndPanels { - get { - return ResourceManager.GetString("strTabsAndPanels", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Security. - /// - internal static string strTabSecurity { - get { - return ResourceManager.GetString("strTabSecurity", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Updates. - /// - internal static string strTabUpdates { - get { - return ResourceManager.GetString("strTabUpdates", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Telnet. - /// - internal static string strTelnet { - get { - return ResourceManager.GetString("strTelnet", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The following:. - /// - internal static string strTheFollowing { - get { - return ResourceManager.GetString("strTheFollowing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Config Panel. - /// - internal static string strThemeCategoryConfigPanel { - get { - return ResourceManager.GetString("strThemeCategoryConfigPanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections Panel. - /// - internal static string strThemeCategoryConnectionsPanel { - get { - return ResourceManager.GetString("strThemeCategoryConnectionsPanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to General. - /// - internal static string strThemeCategoryGeneral { - get { - return ResourceManager.GetString("strThemeCategoryGeneral", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The background colour of the config panel.. - /// - internal static string strThemeDescriptionConfigPanelBackgroundColor { - get { - return ResourceManager.GetString("strThemeDescriptionConfigPanelBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The colour of the category text in the config panel.. - /// - internal static string strThemeDescriptionConfigPanelCategoryTextColor { - get { - return ResourceManager.GetString("strThemeDescriptionConfigPanelCategoryTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The colour of the grid lines in the config panel. - /// - internal static string strThemeDescriptionConfigPanelGridLineColor { - get { - return ResourceManager.GetString("strThemeDescriptionConfigPanelGridLineColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The background colour of the help area of the config panel.. - /// - internal static string strThemeDescriptionConfigPanelHelpBackgroundColor { - get { - return ResourceManager.GetString("strThemeDescriptionConfigPanelHelpBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The colour of the text in the help area of the config panel.. - /// - internal static string strThemeDescriptionConfigPanelHelpTextColor { - get { - return ResourceManager.GetString("strThemeDescriptionConfigPanelHelpTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The colour of the text in the config panel.. - /// - internal static string strThemeDescriptionConfigPanelTextColor { - get { - return ResourceManager.GetString("strThemeDescriptionConfigPanelTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The background colour of the connections panel.. - /// - internal static string strThemeDescriptionConnectionsPanelBackgroundColor { - get { - return ResourceManager.GetString("strThemeDescriptionConnectionsPanelBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The colour of the text in the connections panel.. - /// - internal static string strThemeDescriptionConnectionsPanelTextColor { - get { - return ResourceManager.GetString("strThemeDescriptionConnectionsPanelTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The colour of the tree lines in the connections panel.. - /// - internal static string strThemeDescriptionConnectionsPanelTreeLineColor { - get { - return ResourceManager.GetString("strThemeDescriptionConnectionsPanelTreeLineColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The background colour of the menus.. - /// - internal static string strThemeDescriptionMenuBackgroundColor { - get { - return ResourceManager.GetString("strThemeDescriptionMenuBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The colour of the text in the menus.. - /// - internal static string strThemeDescriptionMenuTextColor { - get { - return ResourceManager.GetString("strThemeDescriptionMenuTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The background colour of the search box.. - /// - internal static string strThemeDescriptionSearchBoxBackgroundColor { - get { - return ResourceManager.GetString("strThemeDescriptionSearchBoxBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The colour of the text in the search box.. - /// - internal static string strThemeDescriptionSearchBoxTextColor { - get { - return ResourceManager.GetString("strThemeDescriptionSearchBoxTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The colour of the prompt text in the search box.. - /// - internal static string strThemeDescriptionSearchBoxTextPromptColor { - get { - return ResourceManager.GetString("strThemeDescriptionSearchBoxTextPromptColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The background colour of the toolbars.. - /// - internal static string strThemeDescriptionToolbarBackgroundColor { - get { - return ResourceManager.GetString("strThemeDescriptionToolbarBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The colour of the text in the toolbars.. - /// - internal static string strThemeDescriptionToolbarTextColor { - get { - return ResourceManager.GetString("strThemeDescriptionToolbarTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The background colour of the main window.. - /// - internal static string strThemeDescriptionWindowBackgroundColor { - get { - return ResourceManager.GetString("strThemeDescriptionWindowBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Config Panel Background Colour. - /// - internal static string strThemeNameConfigPanelBackgroundColor { - get { - return ResourceManager.GetString("strThemeNameConfigPanelBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Config Panel Category Text Colour. - /// - internal static string strThemeNameConfigPanelCategoryTextColor { - get { - return ResourceManager.GetString("strThemeNameConfigPanelCategoryTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Config Panel Grid Line Colour. - /// - internal static string strThemeNameConfigPanelGridLineColor { - get { - return ResourceManager.GetString("strThemeNameConfigPanelGridLineColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Config Panel Help Background Colour. - /// - internal static string strThemeNameConfigPanelHelpBackgroundColor { - get { - return ResourceManager.GetString("strThemeNameConfigPanelHelpBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Config Panel Help Text Colour. - /// - internal static string strThemeNameConfigPanelHelpTextColor { - get { - return ResourceManager.GetString("strThemeNameConfigPanelHelpTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Config Panel Text Colour. - /// - internal static string strThemeNameConfigPanelTextColor { - get { - return ResourceManager.GetString("strThemeNameConfigPanelTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections Panel Background Colour. - /// - internal static string strThemeNameConnectionsPanelBackgroundColor { - get { - return ResourceManager.GetString("strThemeNameConnectionsPanelBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections Panel Text Colour. - /// - internal static string strThemeNameConnectionsPanelTextColor { - get { - return ResourceManager.GetString("strThemeNameConnectionsPanelTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections Panel Tree Line Colour. - /// - internal static string strThemeNameConnectionsPanelTreeLineColor { - get { - return ResourceManager.GetString("strThemeNameConnectionsPanelTreeLineColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Menu Background Colour. - /// - internal static string strThemeNameMenuBackgroundColor { - get { - return ResourceManager.GetString("strThemeNameMenuBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Menu Text Colour. - /// - internal static string strThemeNameMenuTextColor { - get { - return ResourceManager.GetString("strThemeNameMenuTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Search Box Background Colour. - /// - internal static string strThemeNameSearchBoxBackgroundColor { - get { - return ResourceManager.GetString("strThemeNameSearchBoxBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Search Box Text Colour. - /// - internal static string strThemeNameSearchBoxTextColor { - get { - return ResourceManager.GetString("strThemeNameSearchBoxTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Search Box Text Prompt Colour. - /// - internal static string strThemeNameSearchBoxTextPromptColor { - get { - return ResourceManager.GetString("strThemeNameSearchBoxTextPromptColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Toolbar Background Colour. - /// - internal static string strThemeNameToolbarBackgroundColor { - get { - return ResourceManager.GetString("strThemeNameToolbarBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Toolbar Text Colour. - /// - internal static string strThemeNameToolbarTextColor { - get { - return ResourceManager.GetString("strThemeNameToolbarTextColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Window Background Colour. - /// - internal static string strThemeNameWindowBackgroundColor { - get { - return ResourceManager.GetString("strThemeNameWindowBackgroundColor", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Title. - /// - internal static string strTitle { - get { - return ResourceManager.GetString("strTitle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Error ({0}). - /// - internal static string strTitleError { - get { - return ResourceManager.GetString("strTitleError", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Information ({0}). - /// - internal static string strTitleInformation { - get { - return ResourceManager.GetString("strTitleInformation", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password. - /// - internal static string strTitlePassword { - get { - return ResourceManager.GetString("strTitlePassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password for {0}. - /// - internal static string strTitlePasswordWithName { - get { - return ResourceManager.GetString("strTitlePasswordWithName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select Panel. - /// - internal static string strTitleSelectPanel { - get { - return ResourceManager.GetString("strTitleSelectPanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Warning ({0}). - /// - internal static string strTitleWarning { - get { - return ResourceManager.GetString("strTitleWarning", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Transfer. - /// - internal static string strTransfer { - get { - return ResourceManager.GetString("strTransfer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Transfer failed!. - /// - internal static string strTransferFailed { - get { - return ResourceManager.GetString("strTransferFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Try to integrate. - /// - internal static string strTryIntegrate { - get { - return ResourceManager.GetString("strTryIntegrate", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Type. - /// - internal static string strType { - get { - return ResourceManager.GetString("strType", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ultra VNC Repeater. - /// - internal static string strUltraVncRepeater { - get { - return ResourceManager.GetString("strUltraVncRepeater", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to UltraVNC SingleClick port:. - /// - internal static string strUltraVNCSCListeningPort { - get { - return ResourceManager.GetString("strUltraVNCSCListeningPort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Uncheck the properties you want not to be saved!. - /// - internal static string strUncheckProperties { - get { - return ResourceManager.GetString("strUncheckProperties", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unnamed Theme. - /// - internal static string strUnnamedTheme { - get { - return ResourceManager.GetString("strUnnamedTheme", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to mRemoteNG requires an update. - /// - internal static string strUpdateAvailable { - get { - return ResourceManager.GetString("strUpdateAvailable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to mRemoteNG can periodically connect to the mRemoteNG website to check for updates.. - /// - internal static string strUpdateCheck { - get { - return ResourceManager.GetString("strUpdateCheck", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The update information could not be downloaded.. - /// - internal static string strUpdateCheckCompleteFailed { - get { - return ResourceManager.GetString("strUpdateCheckCompleteFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check failed. - /// - internal static string strUpdateCheckFailedLabel { - get { - return ResourceManager.GetString("strUpdateCheckFailedLabel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Checking for updates.... - /// - internal static string strUpdateCheckingLabel { - get { - return ResourceManager.GetString("strUpdateCheckingLabel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to mRemoteNG Portable Edition does not currently support automatic updates.. - /// - internal static string strUpdateCheckPortableEdition { - get { - return ResourceManager.GetString("strUpdateCheckPortableEdition", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Download complete! - ///mRemoteNG will now quit and begin with the installation.. - /// - internal static string strUpdateDownloadComplete { - get { - return ResourceManager.GetString("strUpdateDownloadComplete", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The update could not be downloaded.. - /// - internal static string strUpdateDownloadCompleteFailed { - get { - return ResourceManager.GetString("strUpdateDownloadCompleteFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The update download could not be initiated.. - /// - internal static string strUpdateDownloadFailed { - get { - return ResourceManager.GetString("strUpdateDownloadFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Every {0} days. - /// - internal static string strUpdateFrequencyCustom { - get { - return ResourceManager.GetString("strUpdateFrequencyCustom", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Daily. - /// - internal static string strUpdateFrequencyDaily { - get { - return ResourceManager.GetString("strUpdateFrequencyDaily", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Monthly. - /// - internal static string strUpdateFrequencyMonthly { - get { - return ResourceManager.GetString("strUpdateFrequencyMonthly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Weekly. - /// - internal static string strUpdateFrequencyWeekly { - get { - return ResourceManager.GetString("strUpdateFrequencyWeekly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The change log could not be downloaded.. - /// - internal static string strUpdateGetChangeLogFailed { - get { - return ResourceManager.GetString("strUpdateGetChangeLogFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Download Completed!. - /// - internal static string strUpdatePortableDownloadComplete { - get { - return ResourceManager.GetString("strUpdatePortableDownloadComplete", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Upgrade. - /// - internal static string strUpgrade { - get { - return ResourceManager.GetString("strUpgrade", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use Default. - /// - internal static string strUseDefault { - get { - return ResourceManager.GetString("strUseDefault", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use a different username and password. - /// - internal static string strUseDifferentUsernameAndPassword { - get { - return ResourceManager.GetString("strUseDifferentUsernameAndPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to User. - /// - internal static string strUser { - get { - return ResourceManager.GetString("strUser", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use the same username and password. - /// - internal static string strUseSameUsernameAndPassword { - get { - return ResourceManager.GetString("strUseSameUsernameAndPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use a smart card. - /// - internal static string strUseSmartCard { - get { - return ResourceManager.GetString("strUseSmartCard", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use SQL Server to load && save connections. - /// - internal static string strUseSQLServer { - get { - return ResourceManager.GetString("strUseSQLServer", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version. - /// - internal static string strVersion { - get { - return ResourceManager.GetString("strVersion", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VNC. - /// - internal static string strVnc { - get { - return ResourceManager.GetString("strVnc", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VNC disconnect failed!. - /// - internal static string strVncConnectionDisconnectFailed { - get { - return ResourceManager.GetString("strVncConnectionDisconnectFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Opening connection failed!. - /// - internal static string strVncConnectionOpenFailed { - get { - return ResourceManager.GetString("strVncConnectionOpenFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VNC Refresh Screen Failed!. - /// - internal static string strVncRefreshFailed { - get { - return ResourceManager.GetString("strVncRefreshFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VNC SendSpecialKeys failed!. - /// - internal static string strVncSendSpecialKeysFailed { - get { - return ResourceManager.GetString("strVncSendSpecialKeysFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VNC Set Event Handlers failed!. - /// - internal static string strVncSetEventHandlersFailed { - get { - return ResourceManager.GetString("strVncSetEventHandlersFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VNC Set Props Failed!. - /// - internal static string strVncSetPropsFailed { - get { - return ResourceManager.GetString("strVncSetPropsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VNC Start Chat Failed!. - /// - internal static string strVncStartChatFailed { - get { - return ResourceManager.GetString("strVncStartChatFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VNC Toggle SmartSize Failed!. - /// - internal static string strVncToggleSmartSizeFailed { - get { - return ResourceManager.GetString("strVncToggleSmartSizeFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VNC Toggle ViewOnly Failed!. - /// - internal static string strVncToggleViewOnlyFailed { - get { - return ResourceManager.GetString("strVncToggleViewOnlyFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Warn me if authentication fails. - /// - internal static string strWarnIfAuthFails { - get { - return ResourceManager.GetString("strWarnIfAuthFails", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Warnings. - /// - internal static string strWarnings { - get { - return ResourceManager.GetString("strWarnings", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Uses the DockPanel Suite by [Weifen Luo]. - /// - internal static string strWeifenLuoAttribution { - get { - return ResourceManager.GetString("strWeifenLuoAttribution", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to http://sourceforge.net/projects/dockpanelsuite/. - /// - internal static string strWeifenLuoAttributionURL { - get { - return ResourceManager.GetString("strWeifenLuoAttributionURL", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to XULrunner path:. - /// - internal static string strXULrunnerPath { - get { - return ResourceManager.GetString("strXULrunnerPath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Yes. - /// - internal static string strYes { - get { - return ResourceManager.GetString("strYes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unlock. - /// - internal static string Unlock { - get { - return ResourceManager.GetString("Unlock", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unlock Credential Repository. - /// - internal static string UnlockCredentialRepository { - get { - return ResourceManager.GetString("UnlockCredentialRepository", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Unlocking. - /// - internal static string Unlocking { - get { - return ResourceManager.GetString("Unlocking", resourceCulture); - } - } - } -} +namespace mRemoteNG +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Language { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Language() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("mRemoteNG.Resources.Language.Language", typeof(Language).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 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)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Create a New Configuration File. + /// + internal static string ConfigurationCreateNew { + get { + return ResourceManager.GetString("ConfigurationCreateNew", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use a Custom File Path. + /// + internal static string ConfigurationCustomPath { + get { + return ResourceManager.GetString("ConfigurationCustomPath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The Configuration File is Missing.. + /// + internal static string ConfigurationFileNotFound { + get { + return ResourceManager.GetString("ConfigurationFileNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import an Existing File. + /// + internal static string ConfigurationImportFile { + get { + return ResourceManager.GetString("ConfigurationImportFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not find external tool with name "{0}". + /// + internal static string CouldNotFindExternalTool { + get { + return ResourceManager.GetString("CouldNotFindExternalTool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Credentials. + /// + internal static string Credentials { + get { + return ResourceManager.GetString("Credentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Credential not available. + /// + internal static string CredentialUnavailable { + get { + return ResourceManager.GetString("CredentialUnavailable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Incorrect password. + /// + internal static string IncorrectPassword { + get { + return ResourceManager.GetString("IncorrectPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Prompt to unlock credential repositories on startup. + /// + internal static string PromptUnlockCredReposOnStartup { + get { + return ResourceManager.GetString("PromptUnlockCredReposOnStartup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The selected repository is unlocked. + /// + internal static string RepositoryIsUnlocked { + get { + return ResourceManager.GetString("RepositoryIsUnlocked", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Source. + /// + internal static string Source { + get { + return ResourceManager.GetString("Source", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to About. + /// + internal static string strAbout { + get { + return ResourceManager.GetString("strAbout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Accept. + /// + internal static string strAccept { + get { + return ResourceManager.GetString("strAccept", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Active. + /// + internal static string strActive { + get { + return ResourceManager.GetString("strActive", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Active Directory. + /// + internal static string strActiveDirectory { + get { + return ResourceManager.GetString("strActiveDirectory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Activity. + /// + internal static string strActivity { + get { + return ResourceManager.GetString("strActivity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add. + /// + internal static string strAdd { + get { + return ResourceManager.GetString("strAdd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Connection. + /// + internal static string strAddConnection { + get { + return ResourceManager.GetString("strAddConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New folder. + /// + internal static string strAddFolder { + get { + return ResourceManager.GetString("strAddFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AddNodeFromXML failed!. + /// + internal static string strAddNodeFromXmlFailed { + get { + return ResourceManager.GetString("strAddNodeFromXmlFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AddNodesFromSQL failed!. + /// + internal static string strAddNodesFromSqlFailed { + get { + return ResourceManager.GetString("strAddNodesFromSqlFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow only a single instance of the application (mRemoteNG restart required). + /// + internal static string strAllowOnlySingleInstance { + get { + return ResourceManager.GetString("strAllowOnlySingleInstance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Always. + /// + internal static string strAlways { + get { + return ResourceManager.GetString("strAlways", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Always connect, even if authentication fails. + /// + internal static string strAlwaysConnectEvenIfAuthFails { + get { + return ResourceManager.GetString("strAlwaysConnectEvenIfAuthFails", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Always show panel selection dialog when opening connections. + /// + internal static string strAlwaysShowPanelSelection { + get { + return ResourceManager.GetString("strAlwaysShowPanelSelection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Always show panel tabs. + /// + internal static string strAlwaysShowPanelTabs { + get { + return ResourceManager.GetString("strAlwaysShowPanelTabs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Always show notification area icon. + /// + internal static string strAlwaysShowSysTrayIcon { + get { + return ResourceManager.GetString("strAlwaysShowSysTrayIcon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ask me again later. + /// + internal static string strAskUpdatesCommandAskLater { + get { + return ResourceManager.GetString("strAskUpdatesCommandAskLater", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Customize the settings now. + /// + internal static string strAskUpdatesCommandCustom { + get { + return ResourceManager.GetString("strAskUpdatesCommandCustom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use the recommended settings. + /// + internal static string strAskUpdatesCommandRecommended { + get { + return ResourceManager.GetString("strAskUpdatesCommandRecommended", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} can automatically check for updates that may provide new features and bug fixes. It is recommended that you allow {0} to check for updates weekly.. + /// + internal static string strAskUpdatesContent { + get { + return ResourceManager.GetString("strAskUpdatesContent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatic update settings. + /// + internal static string strAskUpdatesMainInstruction { + get { + return ResourceManager.GetString("strAskUpdatesMainInstruction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aspect. + /// + internal static string strAspect { + get { + return ResourceManager.GetString("strAspect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Assigned Credential. + /// + internal static string strAssignedCredential { + get { + return ResourceManager.GetString("strAssignedCredential", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatically get session information. + /// + internal static string strAutomaticallyGetSessionInfo { + get { + return ResourceManager.GetString("strAutomaticallyGetSessionInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Auto save every:. + /// + internal static string strAutoSaveEvery { + get { + return ResourceManager.GetString("strAutoSaveEvery", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minutes (0 means disabled). + /// + internal static string strAutoSaveMins { + get { + return ResourceManager.GetString("strAutoSaveMins", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Latest version. + /// + internal static string strAvailableVersion { + get { + return ResourceManager.GetString("strAvailableVersion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Back. + /// + internal static string strBack { + get { + return ResourceManager.GetString("strBack", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Browse.... + /// + internal static string strButtonBrowse { + get { + return ResourceManager.GetString("strButtonBrowse", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Cancel. + /// + internal static string strButtonCancel { + get { + return ResourceManager.GetString("strButtonCancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change. + /// + internal static string strButtonChange { + get { + return ResourceManager.GetString("strButtonChange", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Close. + /// + internal static string strButtonClose { + get { + return ResourceManager.GetString("strButtonClose", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default Inheritance. + /// + internal static string strButtonDefaultInheritance { + get { + return ResourceManager.GetString("strButtonDefaultInheritance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default Properties. + /// + internal static string strButtonDefaultProperties { + get { + return ResourceManager.GetString("strButtonDefaultProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disconnect. + /// + internal static string strButtonDisconnect { + get { + return ResourceManager.GetString("strButtonDisconnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icon. + /// + internal static string strButtonIcon { + get { + return ResourceManager.GetString("strButtonIcon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Import. + /// + internal static string strButtonImport { + get { + return ResourceManager.GetString("strButtonImport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inheritance. + /// + internal static string strButtonInheritance { + get { + return ResourceManager.GetString("strButtonInheritance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Launch. + /// + internal static string strButtonLaunch { + get { + return ResourceManager.GetString("strButtonLaunch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Launch PuTTY. + /// + internal static string strButtonLaunchPutty { + get { + return ResourceManager.GetString("strButtonLaunchPutty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &New. + /// + internal static string strButtonNew { + get { + return ResourceManager.GetString("strButtonNew", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &OK. + /// + internal static string strButtonOK { + get { + return ResourceManager.GetString("strButtonOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Properties. + /// + internal static string strButtonProperties { + get { + return ResourceManager.GetString("strButtonProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Scan. + /// + internal static string strButtonScan { + get { + return ResourceManager.GetString("strButtonScan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Stop. + /// + internal static string strButtonStop { + get { + return ResourceManager.GetString("strButtonStop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Test Proxy. + /// + internal static string strButtonTestProxy { + get { + return ResourceManager.GetString("strButtonTestProxy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You cannot import a normal connection file. + ///Please use File - Open Connection File for normal connection files!. + /// + internal static string strCannotImportNormalSessionFile { + get { + return ResourceManager.GetString("strCannotImportNormalSessionFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot start Port Scan, incorrect IP format!. + /// + internal static string strCannotStartPortScan { + get { + return ResourceManager.GetString("strCannotStartPortScan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Appearance. + /// + internal static string strCategoryAppearance { + get { + return ResourceManager.GetString("strCategoryAppearance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection. + /// + internal static string strCategoryConnection { + get { + return ResourceManager.GetString("strCategoryConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Credentials. + /// + internal static string strCategoryCredentials { + get { + return ResourceManager.GetString("strCategoryCredentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display. + /// + internal static string strCategoryDisplay { + get { + return ResourceManager.GetString("strCategoryDisplay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gateway. + /// + internal static string strCategoryGateway { + get { + return ResourceManager.GetString("strCategoryGateway", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to General. + /// + internal static string strCategoryGeneral { + get { + return ResourceManager.GetString("strCategoryGeneral", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Miscellaneous. + /// + internal static string strCategoryMiscellaneous { + get { + return ResourceManager.GetString("strCategoryMiscellaneous", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol. + /// + internal static string strCategoryProtocol { + get { + return ResourceManager.GetString("strCategoryProtocol", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Redirect. + /// + internal static string strCategoryRedirect { + get { + return ResourceManager.GetString("strCategoryRedirect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Always show this screen at startup. + /// + internal static string strCcAlwaysShowScreen { + get { + return ResourceManager.GetString("strCcAlwaysShowScreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Refresh. + /// + internal static string strCcCheckAgain { + get { + return ResourceManager.GetString("strCcCheckAgain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check failed!. + /// + internal static string strCcCheckFailed { + get { + return ResourceManager.GetString("strCcCheckFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check succeeded!. + /// + internal static string strCcCheckSucceeded { + get { + return ResourceManager.GetString("strCcCheckSucceeded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The (RDP) Sessions feature requires that you have a copy of eolwtscom.dll registered on your system. + ///mRemoteNG ships with this component but it is not registered automatically if you do not use the mRemoteNG Installer. + ///To register it manually, run the following command from an elevated command prompt: regsvr32 "C:\Program Files\mRemoteNG\eolwtscom.dll" (where C:\Program Files\mRemoteNG\ is the path to your mRemoteNG installation). + ///If this check still fails or you are unable to use the (RDP) Sessions feat [rest of string was truncated]";. + /// + internal static string strCcEOLFailed { + get { + return ResourceManager.GetString("strCcEOLFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to EOLWTSCOM was found and seems to be registered properly.. + /// + internal static string strCcEOLOK { + get { + return ResourceManager.GetString("strCcEOLOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To use the Gecko Rendering Engine you need to have XULrunner 1.8.1.x and the path to the installation set in your Options. + ///You can download XULrunner 1.8.1.3 here: ftp://ftp.mozilla.org/pub/xulrunner/releases/1.8.1.3/contrib/win32/ + ///When you are finished downloading extract the package to a path of your choice. Then in mRemoteNG go to Tools - Options - Advanced and enter the correct path in the XULrunner path field. + ///If you are still not able to pass this check or use the Gecko Engine in mRemoteNG please c [rest of string was truncated]";. + /// + internal static string strCcGeckoFailed { + get { + return ResourceManager.GetString("strCcGeckoFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GeckoFx was found and seems to be installed properly.. + /// + internal static string strCcGeckoOK { + get { + return ResourceManager.GetString("strCcGeckoOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ICA requires that the XenDesktop Online Plugin is installed and that the wfica.ocx library is registered. You can download the client here: http://www.citrix.com/download/ + ///If you have the XenDesktop Online Plugin installed and the check still fails, try to register wfica.ocx manually. + ///To do this open up the run dialog (Start - Run) and enter the following: regsvr32 "c:\Program Files\Citrix\ICA Client\wfica.ocx" (Where c:\Program Files\Citrix\ICA Client\ is the path to your XenDesktop Online Plugin install [rest of string was truncated]";. + /// + internal static string strCcICAFailed { + get { + return ResourceManager.GetString("strCcICAFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All ICA components were found and seem to be registered properly. + ///Citrix ICA Client Control Version {0}. + /// + internal static string strCcICAOK { + get { + return ResourceManager.GetString("strCcICAOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to not installed properly. + /// + internal static string strCcNotInstalledProperly { + get { + return ResourceManager.GetString("strCcNotInstalledProperly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The SSH, Telnet, Rlogin and RAW protocols need PuTTY to work. PuTTY comes with every mRemoteNG package and is located in the installation path. + ///Please make sure that either you have the Putty.exe in your mRemoteNG directory (default: c:\Program Files\mRemoteNG\) or that you specified a valid path to your PuTTY executable in the Options (Tools - Options - Advanced - Custom PuTTY path). + /// + internal static string strCcPuttyFailed { + get { + return ResourceManager.GetString("strCcPuttyFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The PuTTY executable was found and should be ready to use.. + /// + internal static string strCcPuttyOK { + get { + return ResourceManager.GetString("strCcPuttyOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to For RDP to work properly you need to have at least Remote Desktop Connection (Terminal Services) Client 8.0 installed. You can download it here: http://support.microsoft.com/kb/925876 + ///If this check still fails or you are unable to use RDP, please consult the mRemoteNG Forum at http://forum.mremoteng.org/.. + /// + internal static string strCcRDPFailed { + get { + return ResourceManager.GetString("strCcRDPFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All RDP components were found and seem to be registered properly. + ///Remote Desktop Connection Control Version {0}. + /// + internal static string strCcRDPOK { + get { + return ResourceManager.GetString("strCcRDPOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VNC requires VncSharp.dll to be located in your mRemoteNG application folder. + ///Please make sure that you have the VncSharp.dll file in your mRemoteNG application folder (usually C:\Program Files\mRemoteNG\). + ///If you are still not able to pass this check or use VNC in mRemoteNG please consult the mRemoteNG Forum at http://forum.mremoteng.org/. + /// + internal static string strCcVNCFailed { + get { + return ResourceManager.GetString("strCcVNCFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All VNC components were found and seem to be registered properly. + ///VncSharp Control Version {0}. + /// + internal static string strCcVNCOK { + get { + return ResourceManager.GetString("strCcVNCOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatically try to reconnect when disconnected from server (RDP && ICA only). + /// + internal static string strCheckboxAutomaticReconnect { + get { + return ResourceManager.GetString("strCheckboxAutomaticReconnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Domain. + /// + internal static string strCheckboxDomain { + get { + return ResourceManager.GetString("strCheckboxDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do not show this message again.. + /// + internal static string strCheckboxDoNotShowThisMessageAgain { + get { + return ResourceManager.GetString("strCheckboxDoNotShowThisMessageAgain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inheritance. + /// + internal static string strCheckboxInheritance { + get { + return ResourceManager.GetString("strCheckboxInheritance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password. + /// + internal static string strCheckboxPassword { + get { + return ResourceManager.GetString("strCheckboxPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This proxy server requires authentication. + /// + internal static string strCheckboxProxyAuthentication { + get { + return ResourceManager.GetString("strCheckboxProxyAuthentication", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use custom PuTTY path:. + /// + internal static string strCheckboxPuttyPath { + get { + return ResourceManager.GetString("strCheckboxPuttyPath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reconnect when ready. + /// + internal static string strCheckboxReconnectWhenReady { + get { + return ResourceManager.GetString("strCheckboxReconnectWhenReady", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use a proxy server to connect. + /// + internal static string strCheckboxUpdateUseProxy { + get { + return ResourceManager.GetString("strCheckboxUpdateUseProxy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Username. + /// + internal static string strCheckboxUsername { + get { + return ResourceManager.GetString("strCheckboxUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wait for exit. + /// + internal static string strCheckboxWaitForExit { + get { + return ResourceManager.GetString("strCheckboxWaitForExit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check Again. + /// + internal static string strCheckForUpdate { + get { + return ResourceManager.GetString("strCheckForUpdate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check for updates at startup. + /// + internal static string strCheckForUpdatesOnStartup { + get { + return ResourceManager.GetString("strCheckForUpdatesOnStartup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check now. + /// + internal static string strCheckNow { + get { + return ResourceManager.GetString("strCheckNow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check proper installation of components at startup. + /// + internal static string strCheckProperInstallationOfComponentsAtStartup { + get { + return ResourceManager.GetString("strCheckProperInstallationOfComponentsAtStartup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose a path for the mRemoteNG log file. + /// + internal static string strChooseLogPath { + get { + return ResourceManager.GetString("strChooseLogPath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose panel before connecting. + /// + internal static string strChoosePanelBeforeConnecting { + get { + return ResourceManager.GetString("strChoosePanelBeforeConnecting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose Path. + /// + internal static string strChoosePath { + get { + return ResourceManager.GetString("strChoosePath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Closed Ports. + /// + internal static string strClosedPorts { + get { + return ResourceManager.GetString("strClosedPorts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Collapse all folders. + /// + internal static string strCollapseAllFolders { + get { + return ResourceManager.GetString("strCollapseAllFolders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Arguments. + /// + internal static string strColumnArguments { + get { + return ResourceManager.GetString("strColumnArguments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display Name. + /// + internal static string strColumnDisplayName { + get { + return ResourceManager.GetString("strColumnDisplayName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filename. + /// + internal static string strColumnFilename { + get { + return ResourceManager.GetString("strColumnFilename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hostname/IP. + /// + internal static string strColumnHostnameIP { + get { + return ResourceManager.GetString("strColumnHostnameIP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Message. + /// + internal static string strColumnMessage { + get { + return ResourceManager.GetString("strColumnMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Username. + /// + internal static string strColumnUsername { + get { + return ResourceManager.GetString("strColumnUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wait For Exit. + /// + internal static string strColumnWaitForExit { + get { + return ResourceManager.GetString("strColumnWaitForExit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to E&xit {0}. + /// + internal static string strCommandExitProgram { + get { + return ResourceManager.GetString("strCommandExitProgram", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't parse command line args!. + /// + internal static string strCommandLineArgsCouldNotBeParsed { + get { + return ResourceManager.GetString("strCommandLineArgsCouldNotBeParsed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Open a connection file. + /// + internal static string strCommandOpenConnectionFile { + get { + return ResourceManager.GetString("strCommandOpenConnectionFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Try again. + /// + internal static string strCommandTryAgain { + get { + return ResourceManager.GetString("strCommandTryAgain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} has detected the Lenovo Auto Scroll Utility running on this system. This utility is known to cause problems with {0}. It is recommended that you disable or uninstall it.. + /// + internal static string strCompatibilityLenovoAutoScrollUtilityDetected { + get { + return ResourceManager.GetString("strCompatibilityLenovoAutoScrollUtilityDetected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Compatibility problem detected. + /// + internal static string strCompatibilityProblemDetected { + get { + return ResourceManager.GetString("strCompatibilityProblemDetected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Components Check. + /// + internal static string strComponentsCheck { + get { + return ResourceManager.GetString("strComponentsCheck", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to btnIcon_Click failed!. + /// + internal static string strConfigPropertyGridButtonIconClickFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridButtonIconClickFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ShowHideGridItems failed!. + /// + internal static string strConfigPropertyGridHideItemsFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridHideItemsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to IconMenu_Click failed!. + /// + internal static string strConfigPropertyGridMenuClickFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridMenuClickFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Property Grid object failed!. + /// + internal static string strConfigPropertyGridObjectFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridObjectFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SetHostStatus failed!. + /// + internal static string strConfigPropertyGridSetHostStatusFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridSetHostStatusFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to pGrid_PopertyValueChanged failed!. + /// + internal static string strConfigPropertyGridValueFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridValueFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Config UI load failed!. + /// + internal static string strConfigUiLoadFailed { + get { + return ResourceManager.GetString("strConfigUiLoadFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to close the connection: + ///"{0}"?. + /// + internal static string strConfirmCloseConnectionMainInstruction { + get { + return ResourceManager.GetString("strConfirmCloseConnectionMainInstruction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to close the panel, "{0}"? Any connections that it contains will also be closed.. + /// + internal static string strConfirmCloseConnectionPanelMainInstruction { + get { + return ResourceManager.GetString("strConfirmCloseConnectionPanelMainInstruction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the credential record, {0}?. + /// + internal static string strConfirmDeleteCredentialRecord { + get { + return ResourceManager.GetString("strConfirmDeleteCredentialRecord", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the external tool, "{0}"?. + /// + internal static string strConfirmDeleteExternalTool { + get { + return ResourceManager.GetString("strConfirmDeleteExternalTool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the {0} selected external tools?. + /// + internal static string strConfirmDeleteExternalToolMultiple { + get { + return ResourceManager.GetString("strConfirmDeleteExternalToolMultiple", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the connection, "{0}"?. + /// + internal static string strConfirmDeleteNodeConnection { + get { + return ResourceManager.GetString("strConfirmDeleteNodeConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the empty folder, "{0}"?. + /// + internal static string strConfirmDeleteNodeFolder { + get { + return ResourceManager.GetString("strConfirmDeleteNodeFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the folder, "{0}"? Any folders or connections that it contains will also be deleted.. + /// + internal static string strConfirmDeleteNodeFolderNotEmpty { + get { + return ResourceManager.GetString("strConfirmDeleteNodeFolderNotEmpty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to close all open connections?. + /// + internal static string strConfirmExitMainInstruction { + get { + return ResourceManager.GetString("strConfirmExitMainInstruction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to reset the panels to their default layout?. + /// + internal static string strConfirmResetLayout { + get { + return ResourceManager.GetString("strConfirmResetLayout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect. + /// + internal static string strConnect { + get { + return ResourceManager.GetString("strConnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect in fullscreen mode. + /// + internal static string strConnectInFullscreen { + get { + return ResourceManager.GetString("strConnectInFullscreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connecting.... + /// + internal static string strConnecting { + get { + return ResourceManager.GetString("strConnecting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol Event Connected. + /// + internal static string strConnectionEventConnected { + get { + return ResourceManager.GetString("strConnectionEventConnected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection to "{0}" via "{1}" established by user "{2}" (Description: "{3}"; User Field: "{4}"). + /// + internal static string strConnectionEventConnectedDetail { + get { + return ResourceManager.GetString("strConnectionEventConnectedDetail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Conenction failed!. + /// + internal static string strConnectionEventConnectionFailed { + get { + return ResourceManager.GetString("strConnectionEventConnectionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol Event ErrorOccured. + /// + internal static string strConnectionEventErrorOccured { + get { + return ResourceManager.GetString("strConnectionEventErrorOccured", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection file path. + /// + internal static string strConnectionFilePath { + get { + return ResourceManager.GetString("strConnectionFilePath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opening connection failed!. + /// + internal static string strConnectionOpenFailed { + get { + return ResourceManager.GetString("strConnectionOpenFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot open connection: No hostname specified!. + /// + internal static string strConnectionOpenFailedNoHostname { + get { + return ResourceManager.GetString("strConnectionOpenFailedNoHostname", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP error! + ///Error Code: {0} + ///Error Description: {1}. + /// + internal static string strConnectionRdpErrorDetail { + get { + return ResourceManager.GetString("strConnectionRdpErrorDetail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections. + /// + internal static string strConnections { + get { + return ResourceManager.GetString("strConnections", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't set default port!. + /// + internal static string strConnectionSetDefaultPortFailed { + get { + return ResourceManager.GetString("strConnectionSetDefaultPortFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't create backup of connections file!. + /// + internal static string strConnectionsFileBackupFailed { + get { + return ResourceManager.GetString("strConnectionsFileBackupFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't import connections file!. + /// + internal static string strConnectionsFileCouldNotBeImported { + get { + return ResourceManager.GetString("strConnectionsFileCouldNotBeImported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections file "{0}" could not be loaded!. + /// + internal static string strConnectionsFileCouldNotBeLoaded { + get { + return ResourceManager.GetString("strConnectionsFileCouldNotBeLoaded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections file "{0}" could not be loaded! + ///Starting with new connections file.. + /// + internal static string strConnectionsFileCouldNotBeLoadedNew { + get { + return ResourceManager.GetString("strConnectionsFileCouldNotBeLoadedNew", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't save connections file!. + /// + internal static string strConnectionsFileCouldNotBeSaved { + get { + return ResourceManager.GetString("strConnectionsFileCouldNotBeSaved", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't save connections file as "{0}"!. + /// + internal static string strConnectionsFileCouldNotSaveAs { + get { + return ResourceManager.GetString("strConnectionsFileCouldNotSaveAs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect without credentials. + /// + internal static string strConnectNoCredentials { + get { + return ResourceManager.GetString("strConnectNoCredentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect to console session. + /// + internal static string strConnectToConsoleSession { + get { + return ResourceManager.GetString("strConnectToConsoleSession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect (with options). + /// + internal static string strConnectWithOptions { + get { + return ResourceManager.GetString("strConnectWithOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection to {0} via {1} closed by user {2}.. + /// + internal static string strConnenctionClosedByUser { + get { + return ResourceManager.GetString("strConnenctionClosedByUser", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection to {0} via {1} closed by user {2}. (Description: "{3}"; User Field: "{4}"). + /// + internal static string strConnenctionClosedByUserDetail { + get { + return ResourceManager.GetString("strConnenctionClosedByUserDetail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection Event Closed. + /// + internal static string strConnenctionCloseEvent { + get { + return ResourceManager.GetString("strConnenctionCloseEvent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection Event Closed failed!. + /// + internal static string strConnenctionCloseEventFailed { + get { + return ResourceManager.GetString("strConnenctionCloseEventFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't create new connections file!. + /// + internal static string strCouldNotCreateNewConnectionsFile { + get { + return ResourceManager.GetString("strCouldNotCreateNewConnectionsFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not find ToolStrip control in FilteredPropertyGrid.. + /// + internal static string strCouldNotFindToolStripInFilteredPropertyGrid { + get { + return ResourceManager.GetString("strCouldNotFindToolStripInFilteredPropertyGrid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create and open new file. + /// + internal static string strCreateAndOpenNewFile { + get { + return ResourceManager.GetString("strCreateAndOpenNewFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Credential Editor. + /// + internal static string strCredentialEditor { + get { + return ResourceManager.GetString("strCredentialEditor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Credential Manager. + /// + internal static string strCredentialManager { + get { + return ResourceManager.GetString("strCredentialManager", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to In v1.76 we have introduced a credential management system. This feature requires a significant change in how we store and interact with credentials within mRemoteNG. You will be required to perform a one-way upgrade of your mRemoteNG connections file. + /// + ///This page will walk you through the process of upgrading your connections file or give you a chance to open a different connections file if you do not want to perform the upgrade.. + /// + internal static string strCredentialManagerUpgradeDescription { + get { + return ResourceManager.GetString("strCredentialManagerUpgradeDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Installed version. + /// + internal static string strCurrentVersion { + get { + return ResourceManager.GetString("strCurrentVersion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Debug. + /// + internal static string strDebug { + get { + return ResourceManager.GetString("strDebug", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default Theme. + /// + internal static string strDefaultTheme { + get { + return ResourceManager.GetString("strDefaultTheme", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Detect. + /// + internal static string strDetect { + get { + return ResourceManager.GetString("strDetect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Don't connect to console session. + /// + internal static string strDontConnectToConsoleSessionMenuItem { + get { + return ResourceManager.GetString("strDontConnectToConsoleSessionMenuItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Don't connect if authentication fails. + /// + internal static string strDontConnectWhenAuthFails { + get { + return ResourceManager.GetString("strDontConnectWhenAuthFails", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Double click on tab closes it. + /// + internal static string strDoubleClickTabClosesIt { + get { + return ResourceManager.GetString("strDoubleClickTabClosesIt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Download and Install. + /// + internal static string strDownloadAndInstall { + get { + return ResourceManager.GetString("strDownloadAndInstall", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Download. + /// + internal static string strDownloadPortable { + get { + return ResourceManager.GetString("strDownloadPortable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Duplicate. + /// + internal static string strDuplicate { + get { + return ResourceManager.GetString("strDuplicate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to continue with no password?. + /// + internal static string strEmptyPasswordContinue { + get { + return ResourceManager.GetString("strEmptyPasswordContinue", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to For empty Username, Password or Domain fields use:. + /// + internal static string strEmptyUsernamePasswordDomainFields { + get { + return ResourceManager.GetString("strEmptyUsernamePasswordDomainFields", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 128-bit. + /// + internal static string strEnc128Bit { + get { + return ResourceManager.GetString("strEnc128Bit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 128-bit (logon only). + /// + internal static string strEnc128BitLogonOnly { + get { + return ResourceManager.GetString("strEnc128BitLogonOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 40-bit. + /// + internal static string strEnc40Bit { + get { + return ResourceManager.GetString("strEnc40Bit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 56-bit. + /// + internal static string strEnc56Bit { + get { + return ResourceManager.GetString("strEnc56Bit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Basic. + /// + internal static string strEncBasic { + get { + return ResourceManager.GetString("strEncBasic", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Completely encrypt connection file. + /// + internal static string strEncryptCompleteConnectionFile { + get { + return ResourceManager.GetString("strEncryptCompleteConnectionFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Block Cipher Mode. + /// + internal static string strEncryptionBlockCipherMode { + get { + return ResourceManager.GetString("strEncryptionBlockCipherMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Encryption Engine. + /// + internal static string strEncryptionEngine { + get { + return ResourceManager.GetString("strEncryptionEngine", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Key Derivation Function Iterations. + /// + internal static string strEncryptionKeyDerivationIterations { + get { + return ResourceManager.GetString("strEncryptionKeyDerivationIterations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to End IP. + /// + internal static string strEndIP { + get { + return ResourceManager.GetString("strEndIP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to End Port. + /// + internal static string strEndPort { + get { + return ResourceManager.GetString("strEndPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AddExternalToolsToToolBar (frmMain) failed. {0}. + /// + internal static string strErrorAddExternalToolsToToolBarFailed { + get { + return ResourceManager.GetString("strErrorAddExternalToolsToToolBarFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AddFolder (UI.Window.ConnectionTreeWindow) failed. {0}. + /// + internal static string strErrorAddFolderFailed { + get { + return ResourceManager.GetString("strErrorAddFolderFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The database version {0} is not compatible with this version of {1}.. + /// + internal static string strErrorBadDatabaseVersion { + get { + return ResourceManager.GetString("strErrorBadDatabaseVersion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CloneNode (Tree.Node) failed . {0}. + /// + internal static string strErrorCloneNodeFailed { + get { + return ResourceManager.GetString("strErrorCloneNodeFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error code {0}.. + /// + internal static string strErrorCode { + get { + return ResourceManager.GetString("strErrorCode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The connection list could not be saved.. + /// + internal static string strErrorConnectionListSaveFailed { + get { + return ResourceManager.GetString("strErrorConnectionListSaveFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY could not be launched.. + /// + internal static string strErrorCouldNotLaunchPutty { + get { + return ResourceManager.GetString("strErrorCouldNotLaunchPutty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Decryption failed. {0}. + /// + internal static string strErrorDecryptionFailed { + get { + return ResourceManager.GetString("strErrorDecryptionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Encryption failed. {0}. + /// + internal static string strErrorEncryptionFailed { + get { + return ResourceManager.GetString("strErrorEncryptionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The Windows security setting, "System cryptography: Use FIPS compliant algorithms for encryption, hashing, and signing", is enabled. This setting is not compatible with {0}. + /// + ///See the Microsoft Support article at http://support.microsoft.com/kb/811833 for more information. + /// + ///{0} will now close.. + /// + internal static string strErrorFipsPolicyIncompatible { + get { + return ResourceManager.GetString("strErrorFipsPolicyIncompatible", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Errors. + /// + internal static string strErrors { + get { + return ResourceManager.GetString("strErrors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The startup connection file could not be loaded.{0}{0}{2}{0}{3}{0}{0}In order to prevent data loss, {1} will now exit.. + /// + internal static string strErrorStartupConnectionFileLoad { + get { + return ResourceManager.GetString("strErrorStartupConnectionFileLoad", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VerifyDatabaseVersion (Config.Connections.Save) failed. {0}. + /// + internal static string strErrorVerifyDatabaseVersionFailed { + get { + return ResourceManager.GetString("strErrorVerifyDatabaseVersionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Expand all folders. + /// + internal static string strExpandAllFolders { + get { + return ResourceManager.GetString("strExpandAllFolders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Experimental. + /// + internal static string strExperimental { + get { + return ResourceManager.GetString("strExperimental", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export. + /// + internal static string strExport { + get { + return ResourceManager.GetString("strExport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export everything. + /// + internal static string strExportEverything { + get { + return ResourceManager.GetString("strExportEverything", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export File. + /// + internal static string strExportFile { + get { + return ResourceManager.GetString("strExportFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export Items. + /// + internal static string strExportItems { + get { + return ResourceManager.GetString("strExportItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export mRemote/mRemoteNG XML. + /// + internal static string strExportmRemoteXML { + get { + return ResourceManager.GetString("strExportmRemoteXML", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export Properties. + /// + internal static string strExportProperties { + get { + return ResourceManager.GetString("strExportProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export the currently selected connection. + /// + internal static string strExportSelectedConnection { + get { + return ResourceManager.GetString("strExportSelectedConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Export the currently selected folder. + /// + internal static string strExportSelectedFolder { + get { + return ResourceManager.GetString("strExportSelectedFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Export to File.... + /// + internal static string strExportToFileMenuItem { + get { + return ResourceManager.GetString("strExportToFileMenuItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ext. App. + /// + internal static string strExtApp { + get { + return ResourceManager.GetString("strExtApp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New External Tool. + /// + internal static string strExternalToolDefaultName { + get { + return ResourceManager.GetString("strExternalToolDefaultName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Includes icons by [FAMFAMFAM]. + /// + internal static string strFAMFAMFAMAttribution { + get { + return ResourceManager.GetString("strFAMFAMFAMAttribution", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to http://www.famfamfam.com/. + /// + internal static string strFAMFAMFAMAttributionURL { + get { + return ResourceManager.GetString("strFAMFAMFAMAttributionURL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to File &Format:. + /// + internal static string strFileFormatLabel { + get { + return ResourceManager.GetString("strFileFormatLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All Files (*.*). + /// + internal static string strFilterAll { + get { + return ResourceManager.GetString("strFilterAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All importable files. + /// + internal static string strFilterAllImportable { + get { + return ResourceManager.GetString("strFilterAllImportable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Application Files (*.exe). + /// + internal static string strFilterApplication { + get { + return ResourceManager.GetString("strFilterApplication", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to mRemote CSV Files (*.csv). + /// + internal static string strFiltermRemoteCSV { + get { + return ResourceManager.GetString("strFiltermRemoteCSV", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to mRemote XML Files (*.xml). + /// + internal static string strFiltermRemoteXML { + get { + return ResourceManager.GetString("strFiltermRemoteXML", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY Connection Manager files. + /// + internal static string strFilterPuttyConnectionManager { + get { + return ResourceManager.GetString("strFilterPuttyConnectionManager", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote Desktop Connection Manager files (*.rdg). + /// + internal static string strFilterRdgFiles { + get { + return ResourceManager.GetString("strFilterRdgFiles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP Files (*.rdp). + /// + internal static string strFilterRDP { + get { + return ResourceManager.GetString("strFilterRDP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to visionapp Remote Desktop 2008 CSV Files (*.csv). + /// + internal static string strFiltervRD2008CSV { + get { + return ResourceManager.GetString("strFiltervRD2008CSV", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not find a credential record with ID matching "{0}" for the connection record named "{1}".. + /// + internal static string strFindMatchingCredentialFailed { + get { + return ResourceManager.GetString("strFindMatchingCredentialFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inherit {0}. + /// + internal static string strFormatInherit { + get { + return ResourceManager.GetString("strFormatInherit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Description of inherited property: {0}. + /// + internal static string strFormatInheritDescription { + get { + return ResourceManager.GetString("strFormatInheritDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Free. + /// + internal static string strFree { + get { + return ResourceManager.GetString("strFree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fullscreen. + /// + internal static string strFullscreen { + get { + return ResourceManager.GetString("strFullscreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to General. + /// + internal static string strGeneral { + get { + return ResourceManager.GetString("strGeneral", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get Connection Info From SQL failed. + /// + internal static string strGetConnectionInfoFromSqlFailed { + get { + return ResourceManager.GetString("strGetConnectionInfoFromSqlFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An error occured while loading the connection entry for "{0}" from "{1}". {2}. + /// + internal static string strGetConnectionInfoFromXmlFailed { + get { + return ResourceManager.GetString("strGetConnectionInfoFromXmlFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatic Reconnect. + /// + internal static string strGroupboxAutomaticReconnect { + get { + return ResourceManager.GetString("strGroupboxAutomaticReconnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection. + /// + internal static string strGroupboxConnection { + get { + return ResourceManager.GetString("strGroupboxConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to External Tool Properties. + /// + internal static string strGroupboxExternalToolProperties { + get { + return ResourceManager.GetString("strGroupboxExternalToolProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Files. + /// + internal static string strGroupboxFiles { + get { + return ResourceManager.GetString("strGroupboxFiles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Host. + /// + internal static string strHost { + get { + return ResourceManager.GetString("strHost", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HTTP. + /// + internal static string strHttp { + get { + return ResourceManager.GetString("strHttp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HTTP Connect Failed!. + /// + internal static string strHttpConnectFailed { + get { + return ResourceManager.GetString("strHttpConnectFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't create new HTTP Connection!. + /// + internal static string strHttpConnectionFailed { + get { + return ResourceManager.GetString("strHttpConnectionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Changing HTTP Document Tile Failed!. + /// + internal static string strHttpDocumentTileChangeFailed { + get { + return ResourceManager.GetString("strHttpDocumentTileChangeFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gecko (Firefox). + /// + internal static string strHttpGecko { + get { + return ResourceManager.GetString("strHttpGecko", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Internet Explorer. + /// + internal static string strHttpInternetExplorer { + get { + return ResourceManager.GetString("strHttpInternetExplorer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to HTTPS. + /// + internal static string strHttps { + get { + return ResourceManager.GetString("strHttps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set HTTP Props failed!. + /// + internal static string strHttpSetPropsFailed { + get { + return ResourceManager.GetString("strHttpSetPropsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow Always. + /// + internal static string strHttpsInsecureAllowAlways { + get { + return ResourceManager.GetString("strHttpsInsecureAllowAlways", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow Once. + /// + internal static string strHttpsInsecureAllowOnce { + get { + return ResourceManager.GetString("strHttpsInsecureAllowOnce", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Don't Allow. + /// + internal static string strHttpsInsecureDontAllow { + get { + return ResourceManager.GetString("strHttpsInsecureDontAllow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow Insecure Certificate for URL: {0}?. + /// + internal static string strHttpsInsecurePrompt { + get { + return ResourceManager.GetString("strHttpsInsecurePrompt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Allow Insecure Certificate?. + /// + internal static string strHttpsInsecurePromptTitle { + get { + return ResourceManager.GetString("strHttpsInsecurePromptTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ICA. + /// + internal static string strICA { + get { + return ResourceManager.GetString("strICA", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't create new ICA Connection!. + /// + internal static string strIcaConnectionFailed { + get { + return ResourceManager.GetString("strIcaConnectionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Loading ICA Plugin failed!. + /// + internal static string strIcaControlFailed { + get { + return ResourceManager.GetString("strIcaControlFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ICA SetCredentials failed!. + /// + internal static string strIcaSetCredentialsFailed { + get { + return ResourceManager.GetString("strIcaSetCredentialsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ICA Set Event Handlers Failed!. + /// + internal static string strIcaSetEventHandlersFailed { + get { + return ResourceManager.GetString("strIcaSetEventHandlersFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ICA Set Props Failed!. + /// + internal static string strIcaSetPropsFailed { + get { + return ResourceManager.GetString("strIcaSetPropsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ICA Set Resolution Failed!. + /// + internal static string strIcaSetResolutionFailed { + get { + return ResourceManager.GetString("strIcaSetResolutionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ID. + /// + internal static string strID { + get { + return ResourceManager.GetString("strID", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Identify quick connect tabs by adding the prefix "Quick:". + /// + internal static string strIdentifyQuickConnectTabs { + get { + return ResourceManager.GetString("strIdentifyQuickConnectTabs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import from Active Directory. + /// + internal static string strImportAD { + get { + return ResourceManager.GetString("strImportAD", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import/Export. + /// + internal static string strImportExport { + get { + return ResourceManager.GetString("strImportExport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An error occurred while importing the file, "{0}".. + /// + internal static string strImportFileFailedContent { + get { + return ResourceManager.GetString("strImportFileFailedContent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import failed. + /// + internal static string strImportFileFailedMainInstruction { + get { + return ResourceManager.GetString("strImportFileFailedMainInstruction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import from &File.... + /// + internal static string strImportFromFileMenuItem { + get { + return ResourceManager.GetString("strImportFromFileMenuItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Under the root{0}{1}|Under the selected folder{0}{2}. + /// + internal static string strImportLocationCommandButtons { + get { + return ResourceManager.GetString("strImportLocationCommandButtons", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Where would you like the imported items to be placed?. + /// + internal static string strImportLocationContent { + get { + return ResourceManager.GetString("strImportLocationContent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import location. + /// + internal static string strImportLocationMainInstruction { + get { + return ResourceManager.GetString("strImportLocationMainInstruction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Import. + /// + internal static string strImportMenuItem { + get { + return ResourceManager.GetString("strImportMenuItem", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import mRemote/mRemoteNG XML. + /// + internal static string strImportmRemoteXML { + get { + return ResourceManager.GetString("strImportmRemoteXML", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import from Port Scan. + /// + internal static string strImportPortScan { + get { + return ResourceManager.GetString("strImportPortScan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import from .RDP file(s). + /// + internal static string strImportRDPFiles { + get { + return ResourceManager.GetString("strImportRDPFiles", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inactive. + /// + internal static string strInactive { + get { + return ResourceManager.GetString("strInactive", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Informations. + /// + internal static string strInformations { + get { + return ResourceManager.GetString("strInformations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to mRemoteNG is up to date. + /// + internal static string strInheritNewConnection { + get { + return ResourceManager.GetString("strInheritNewConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection failed!. + /// + internal static string strIntAppConnectionFailed { + get { + return ResourceManager.GetString("strIntAppConnectionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dispose of Int App process failed!. + /// + internal static string strIntAppDisposeFailed { + get { + return ResourceManager.GetString("strIntAppDisposeFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Int App Focus Failed!. + /// + internal static string strIntAppFocusFailed { + get { + return ResourceManager.GetString("strIntAppFocusFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Int App Handle: {0}. + /// + internal static string strIntAppHandle { + get { + return ResourceManager.GetString("strIntAppHandle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Killing Int App Process failed!. + /// + internal static string strIntAppKillFailed { + get { + return ResourceManager.GetString("strIntAppKillFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Panel Handle: {0}. + /// + internal static string strIntAppParentHandle { + get { + return ResourceManager.GetString("strIntAppParentHandle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Int App Resize failed!. + /// + internal static string strIntAppResizeFailed { + get { + return ResourceManager.GetString("strIntAppResizeFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to --- IntApp Stuff ---. + /// + internal static string strIntAppStuff { + get { + return ResourceManager.GetString("strIntAppStuff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Int App Title: {0}. + /// + internal static string strIntAppTitle { + get { + return ResourceManager.GetString("strIntAppTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CTRL-ALT-DEL. + /// + internal static string strKeysCtrlAltDel { + get { + return ResourceManager.GetString("strKeysCtrlAltDel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to CTRL-ESC. + /// + internal static string strKeysCtrlEsc { + get { + return ResourceManager.GetString("strKeysCtrlEsc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Address:. + /// + internal static string strLabelAddress { + get { + return ResourceManager.GetString("strLabelAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Arguments:. + /// + internal static string strLabelArguments { + get { + return ResourceManager.GetString("strLabelArguments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change Log:. + /// + internal static string strLabelChangeLog { + get { + return ResourceManager.GetString("strLabelChangeLog", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to When closing connections:. + /// + internal static string strLabelClosingConnections { + get { + return ResourceManager.GetString("strLabelClosingConnections", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Connect:. + /// + internal static string strLabelConnect { + get { + return ResourceManager.GetString("strLabelConnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display Name. + /// + internal static string strLabelDisplayName { + get { + return ResourceManager.GetString("strLabelDisplayName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Domain:. + /// + internal static string strLabelDomain { + get { + return ResourceManager.GetString("strLabelDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filename:. + /// + internal static string strLabelFilename { + get { + return ResourceManager.GetString("strLabelFilename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hostname:. + /// + internal static string strLabelHostname { + get { + return ResourceManager.GetString("strLabelHostname", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Options:. + /// + internal static string strLabelOptions { + get { + return ResourceManager.GetString("strLabelOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password:. + /// + internal static string strLabelPassword { + get { + return ResourceManager.GetString("strLabelPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port:. + /// + internal static string strLabelPort { + get { + return ResourceManager.GetString("strLabelPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Portable Edition. + /// + internal static string strLabelPortableEdition { + get { + return ResourceManager.GetString("strLabelPortableEdition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol:. + /// + internal static string strLabelProtocol { + get { + return ResourceManager.GetString("strLabelProtocol", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To configure PuTTY sessions click this button:. + /// + internal static string strLabelPuttySessionsConfig { + get { + return ResourceManager.GetString("strLabelPuttySessionsConfig", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maximum PuTTY and integrated external tools wait time:. + /// + internal static string strLabelPuttyTimeout { + get { + return ResourceManager.GetString("strLabelPuttyTimeout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Released under the GNU General Public License (GPL). + /// + internal static string strLabelReleasedUnderGPL { + get { + return ResourceManager.GetString("strLabelReleasedUnderGPL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to seconds. + /// + internal static string strLabelSeconds { + get { + return ResourceManager.GetString("strLabelSeconds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select a panel from the list below or click New to add a new one. Click OK to continue.. + /// + internal static string strLabelSelectPanel { + get { + return ResourceManager.GetString("strLabelSelectPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Server Status:. + /// + internal static string strLabelServerStatus { + get { + return ResourceManager.GetString("strLabelServerStatus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Database:. + /// + internal static string strLabelSQLDatabaseName { + get { + return ResourceManager.GetString("strLabelSQLDatabaseName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Database:. + /// + internal static string strLabelSQLServerDatabaseName { + get { + return ResourceManager.GetString("strLabelSQLServerDatabaseName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Username:. + /// + internal static string strLabelUsername { + get { + return ResourceManager.GetString("strLabelUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verify:. + /// + internal static string strLabelVerify { + get { + return ResourceManager.GetString("strLabelVerify", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Language. + /// + internal static string strLanguage { + get { + return ResourceManager.GetString("strLanguage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to (Automatically Detect). + /// + internal static string strLanguageDefault { + get { + return ResourceManager.GetString("strLanguageDefault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} must be restarted before changes to the language will take effect.. + /// + internal static string strLanguageRestartRequired { + get { + return ResourceManager.GetString("strLanguageRestartRequired", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Load from SQL failed. + /// + internal static string strLoadFromSqlFailed { + get { + return ResourceManager.GetString("strLoadFromSqlFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The connection information could not be loaded from the SQL server.. + /// + internal static string strLoadFromSqlFailedContent { + get { + return ResourceManager.GetString("strLoadFromSqlFailedContent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Load From XML failed!. + /// + internal static string strLoadFromXmlFailed { + get { + return ResourceManager.GetString("strLoadFromXmlFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Local file. + /// + internal static string strLocalFile { + get { + return ResourceManager.GetString("strLocalFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Local file does not exist!. + /// + internal static string strLocalFileDoesNotExist { + get { + return ResourceManager.GetString("strLocalFileDoesNotExist", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Log file path. + /// + internal static string strLogFilePath { + get { + return ResourceManager.GetString("strLogFilePath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Logging. + /// + internal static string strLogging { + get { + return ResourceManager.GetString("strLogging", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Logoff. + /// + internal static string strLogOff { + get { + return ResourceManager.GetString("strLogOff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Log these message types. + /// + internal static string strLogTheseMessageTypes { + get { + return ResourceManager.GetString("strLogTheseMessageTypes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Log to application directory. + /// + internal static string strLogToAppDir { + get { + return ResourceManager.GetString("strLogToAppDir", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Writing to report file failed!. + /// + internal static string strLogWriteToFileFailed { + get { + return ResourceManager.GetString("strLogWriteToFileFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't save report to final location.. + /// + internal static string strLogWriteToFileFinalLocationFailed { + get { + return ResourceManager.GetString("strLogWriteToFileFinalLocationFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Uses the Magic library by [Crownwood Software]. + /// + internal static string strMagicLibraryAttribution { + get { + return ResourceManager.GetString("strMagicLibraryAttribution", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to http://www.dotnetmagic.com/. + /// + internal static string strMagicLibraryAttributionURL { + get { + return ResourceManager.GetString("strMagicLibraryAttributionURL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to About. + /// + internal static string strMenuAbout { + get { + return ResourceManager.GetString("strMenuAbout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Connection Panel. + /// + internal static string strMenuAddConnectionPanel { + get { + return ResourceManager.GetString("strMenuAddConnectionPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check for Updates. + /// + internal static string strMenuCheckForUpdates { + get { + return ResourceManager.GetString("strMenuCheckForUpdates", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Config. + /// + internal static string strMenuConfig { + get { + return ResourceManager.GetString("strMenuConfig", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect. + /// + internal static string strMenuConnect { + get { + return ResourceManager.GetString("strMenuConnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection Panels. + /// + internal static string strMenuConnectionPanels { + get { + return ResourceManager.GetString("strMenuConnectionPanels", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections. + /// + internal static string strMenuConnections { + get { + return ResourceManager.GetString("strMenuConnections", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections and Config. + /// + internal static string strMenuConnectionsAndConfig { + get { + return ResourceManager.GetString("strMenuConnectionsAndConfig", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy. + /// + internal static string strMenuCopy { + get { + return ResourceManager.GetString("strMenuCopy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ctrl-Alt-Del. + /// + internal static string strMenuCtrlAltDel { + get { + return ResourceManager.GetString("strMenuCtrlAltDel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ctrl-Esc. + /// + internal static string strMenuCtrlEsc { + get { + return ResourceManager.GetString("strMenuCtrlEsc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete.... + /// + internal static string strMenuDelete { + get { + return ResourceManager.GetString("strMenuDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Connection.... + /// + internal static string strMenuDeleteConnection { + get { + return ResourceManager.GetString("strMenuDeleteConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete External Tool.... + /// + internal static string strMenuDeleteExternalTool { + get { + return ResourceManager.GetString("strMenuDeleteExternalTool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete Folder.... + /// + internal static string strMenuDeleteFolder { + get { + return ResourceManager.GetString("strMenuDeleteFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disconnect. + /// + internal static string strMenuDisconnect { + get { + return ResourceManager.GetString("strMenuDisconnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Donate. + /// + internal static string strMenuDonate { + get { + return ResourceManager.GetString("strMenuDonate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Duplicate. + /// + internal static string strMenuDuplicate { + get { + return ResourceManager.GetString("strMenuDuplicate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Duplicate Connection. + /// + internal static string strMenuDuplicateConnection { + get { + return ResourceManager.GetString("strMenuDuplicateConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Duplicate Folder. + /// + internal static string strMenuDuplicateFolder { + get { + return ResourceManager.GetString("strMenuDuplicateFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Duplicate Tab. + /// + internal static string strMenuDuplicateTab { + get { + return ResourceManager.GetString("strMenuDuplicateTab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exit. + /// + internal static string strMenuExit { + get { + return ResourceManager.GetString("strMenuExit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to External Tools. + /// + internal static string strMenuExternalTools { + get { + return ResourceManager.GetString("strMenuExternalTools", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to External Tools Toolbar. + /// + internal static string strMenuExternalToolsToolbar { + get { + return ResourceManager.GetString("strMenuExternalToolsToolbar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &File. + /// + internal static string strMenuFile { + get { + return ResourceManager.GetString("strMenuFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Full Screen. + /// + internal static string strMenuFullScreen { + get { + return ResourceManager.GetString("strMenuFullScreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Full Screen (RDP). + /// + internal static string strMenuFullScreenRDP { + get { + return ResourceManager.GetString("strMenuFullScreenRDP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Help. + /// + internal static string strMenuHelp { + get { + return ResourceManager.GetString("strMenuHelp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to mRemoteNG Help. + /// + internal static string strMenuHelpContents { + get { + return ResourceManager.GetString("strMenuHelpContents", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Jump To. + /// + internal static string strMenuJumpTo { + get { + return ResourceManager.GetString("strMenuJumpTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Launch External Tool. + /// + internal static string strMenuLaunchExternalTool { + get { + return ResourceManager.GetString("strMenuLaunchExternalTool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Connection File. + /// + internal static string strMenuNewConnectionFile { + get { + return ResourceManager.GetString("strMenuNewConnectionFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New External Tool. + /// + internal static string strMenuNewExternalTool { + get { + return ResourceManager.GetString("strMenuNewExternalTool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Notifications. + /// + internal static string strMenuNotifications { + get { + return ResourceManager.GetString("strMenuNotifications", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copy All. + /// + internal static string strMenuNotificationsCopyAll { + get { + return ResourceManager.GetString("strMenuNotificationsCopyAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete. + /// + internal static string strMenuNotificationsDelete { + get { + return ResourceManager.GetString("strMenuNotificationsDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Delete All. + /// + internal static string strMenuNotificationsDeleteAll { + get { + return ResourceManager.GetString("strMenuNotificationsDeleteAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Connection File.... + /// + internal static string strMenuOpenConnectionFile { + get { + return ResourceManager.GetString("strMenuOpenConnectionFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Options. + /// + internal static string strMenuOptions { + get { + return ResourceManager.GetString("strMenuOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Paste. + /// + internal static string strMenuPaste { + get { + return ResourceManager.GetString("strMenuPaste", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port Scan. + /// + internal static string strMenuPortScan { + get { + return ResourceManager.GetString("strMenuPortScan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quick Connect Toolbar. + /// + internal static string strMenuQuickConnectToolbar { + get { + return ResourceManager.GetString("strMenuQuickConnectToolbar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reconnect. + /// + internal static string strMenuReconnect { + get { + return ResourceManager.GetString("strMenuReconnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reconnect All Open Connections. + /// + internal static string strMenuReconnectAll { + get { + return ResourceManager.GetString("strMenuReconnectAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Refresh Screen (VNC). + /// + internal static string strMenuRefreshScreen { + get { + return ResourceManager.GetString("strMenuRefreshScreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename. + /// + internal static string strMenuRename { + get { + return ResourceManager.GetString("strMenuRename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename Connection. + /// + internal static string strMenuRenameConnection { + get { + return ResourceManager.GetString("strMenuRenameConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename Folder. + /// + internal static string strMenuRenameFolder { + get { + return ResourceManager.GetString("strMenuRenameFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename Tab. + /// + internal static string strMenuRenameTab { + get { + return ResourceManager.GetString("strMenuRenameTab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Report a Bug. + /// + internal static string strMenuReportBug { + get { + return ResourceManager.GetString("strMenuReportBug", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset layout. + /// + internal static string strMenuResetLayout { + get { + return ResourceManager.GetString("strMenuResetLayout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Connection File. + /// + internal static string strMenuSaveConnectionFile { + get { + return ResourceManager.GetString("strMenuSaveConnectionFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save Connection File As.... + /// + internal static string strMenuSaveConnectionFileAs { + get { + return ResourceManager.GetString("strMenuSaveConnectionFileAs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Screenshot. + /// + internal static string strMenuScreenshot { + get { + return ResourceManager.GetString("strMenuScreenshot", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Screenshot Manager. + /// + internal static string strMenuScreenshotManager { + get { + return ResourceManager.GetString("strMenuScreenshotManager", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send Special Keys (VNC). + /// + internal static string strMenuSendSpecialKeys { + get { + return ResourceManager.GetString("strMenuSendSpecialKeys", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Retrieve. + /// + internal static string strMenuSessionRetrieve { + get { + return ResourceManager.GetString("strMenuSessionRetrieve", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sessions. + /// + internal static string strMenuSessions { + get { + return ResourceManager.GetString("strMenuSessions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sessions and Screenshots. + /// + internal static string strMenuSessionsAndScreenshots { + get { + return ResourceManager.GetString("strMenuSessionsAndScreenshots", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Show Help Text. + /// + internal static string strMenuShowHelpText { + get { + return ResourceManager.GetString("strMenuShowHelpText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show Text. + /// + internal static string strMenuShowText { + get { + return ResourceManager.GetString("strMenuShowText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SmartSize (RDP/VNC). + /// + internal static string strMenuSmartSize { + get { + return ResourceManager.GetString("strMenuSmartSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SSH File Transfer. + /// + internal static string strMenuSSHFileTransfer { + get { + return ResourceManager.GetString("strMenuSSHFileTransfer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Chat (VNC). + /// + internal static string strMenuStartChat { + get { + return ResourceManager.GetString("strMenuStartChat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Support Forum. + /// + internal static string strMenuSupportForum { + get { + return ResourceManager.GetString("strMenuSupportForum", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Tools. + /// + internal static string strMenuTools { + get { + return ResourceManager.GetString("strMenuTools", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Transfer File (SSH). + /// + internal static string strMenuTransferFile { + get { + return ResourceManager.GetString("strMenuTransferFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &View. + /// + internal static string strMenuView { + get { + return ResourceManager.GetString("strMenuView", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View Only (VNC). + /// + internal static string strMenuViewOnly { + get { + return ResourceManager.GetString("strMenuViewOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Website. + /// + internal static string strMenuWebsite { + get { + return ResourceManager.GetString("strMenuWebsite", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minimize to notification area. + /// + internal static string strMinimizeToSysTray { + get { + return ResourceManager.GetString("strMinimizeToSysTray", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move down. + /// + internal static string strMoveDown { + get { + return ResourceManager.GetString("strMoveDown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Move up. + /// + internal static string strMoveUp { + get { + return ResourceManager.GetString("strMoveUp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to mRemoteNG CSV. + /// + internal static string strMremoteNgCsv { + get { + return ResourceManager.GetString("strMremoteNgCsv", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to mRemoteNG XML. + /// + internal static string strMremoteNgXml { + get { + return ResourceManager.GetString("strMremoteNgXml", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to My current credentials (Windows logon information). + /// + internal static string strMyCurrentWindowsCreds { + get { + return ResourceManager.GetString("strMyCurrentWindowsCreds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Never. + /// + internal static string strNever { + get { + return ResourceManager.GetString("strNever", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Connection. + /// + internal static string strNewConnection { + get { + return ResourceManager.GetString("strNewConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Folder. + /// + internal static string strNewFolder { + get { + return ResourceManager.GetString("strNewFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Panel. + /// + internal static string strNewPanel { + get { + return ResourceManager.GetString("strNewPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Root. + /// + internal static string strNewRoot { + get { + return ResourceManager.GetString("strNewRoot", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New Title. + /// + internal static string strNewTitle { + get { + return ResourceManager.GetString("strNewTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No. + /// + internal static string strNo { + get { + return ResourceManager.GetString("strNo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Compression. + /// + internal static string strNoCompression { + get { + return ResourceManager.GetString("strNoCompression", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This node is already in this folder.. + /// + internal static string strNodeAlreadyInFolder { + get { + return ResourceManager.GetString("strNodeAlreadyInFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot drag node onto itself.. + /// + internal static string strNodeCannotDragOnSelf { + get { + return ResourceManager.GetString("strNodeCannotDragOnSelf", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot drag parent node onto child.. + /// + internal static string strNodeCannotDragParentOnChild { + get { + return ResourceManager.GetString("strNodeCannotDragParentOnChild", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This node is not draggable.. + /// + internal static string strNodeNotDraggable { + get { + return ResourceManager.GetString("strNodeNotDraggable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No Ext. App specified.. + /// + internal static string strNoExtAppDefined { + get { + return ResourceManager.GetString("strNoExtAppDefined", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None. + /// + internal static string strNoInformation { + get { + return ResourceManager.GetString("strNoInformation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to None. + /// + internal static string strNone { + get { + return ResourceManager.GetString("strNone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Normal. + /// + internal static string strNormal { + get { + return ResourceManager.GetString("strNormal", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No SmartSize. + /// + internal static string strNoSmartSize { + get { + return ResourceManager.GetString("strNoSmartSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No update available. + /// + internal static string strNoUpdateAvailable { + get { + return ResourceManager.GetString("strNoUpdateAvailable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You are trying to load a connection file that was created using an very early version of mRemote, this could result in an runtime error. + ///If you run into such an error, please create a new connection file!. + /// + internal static string strOldConffile { + get { + return ResourceManager.GetString("strOldConffile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open a different file. + /// + internal static string strOpenADifferentFile { + get { + return ResourceManager.GetString("strOpenADifferentFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open File. + /// + internal static string strOpenFile { + get { + return ResourceManager.GetString("strOpenFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open new tab to the right of the currently selected tab. + /// + internal static string strOpenNewTabRight { + get { + return ResourceManager.GetString("strOpenNewTabRight", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open Ports. + /// + internal static string strOpenPorts { + get { + return ResourceManager.GetString("strOpenPorts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Delete. + /// + internal static string strOptionsKeyboardButtonDelete { + get { + return ResourceManager.GetString("strOptionsKeyboardButtonDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &New. + /// + internal static string strOptionsKeyboardButtonNew { + get { + return ResourceManager.GetString("strOptionsKeyboardButtonNew", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Reset to Default. + /// + internal static string strOptionsKeyboardButtonReset { + get { + return ResourceManager.GetString("strOptionsKeyboardButtonReset", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reset &All to Default. + /// + internal static string strOptionsKeyboardButtonResetAll { + get { + return ResourceManager.GetString("strOptionsKeyboardButtonResetAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tabs. + /// + internal static string strOptionsKeyboardCommandsGroupTabs { + get { + return ResourceManager.GetString("strOptionsKeyboardCommandsGroupTabs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Next Tab. + /// + internal static string strOptionsKeyboardCommandsNextTab { + get { + return ResourceManager.GetString("strOptionsKeyboardCommandsNextTab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Previous Tab. + /// + internal static string strOptionsKeyboardCommandsPreviousTab { + get { + return ResourceManager.GetString("strOptionsKeyboardCommandsPreviousTab", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Modify Shortcut. + /// + internal static string strOptionsKeyboardGroupModifyShortcut { + get { + return ResourceManager.GetString("strOptionsKeyboardGroupModifyShortcut", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keyboard Shortcuts. + /// + internal static string strOptionsKeyboardLabelKeyboardShortcuts { + get { + return ResourceManager.GetString("strOptionsKeyboardLabelKeyboardShortcuts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Testing.... + /// + internal static string strOptionsProxyTesting { + get { + return ResourceManager.GetString("strOptionsProxyTesting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Keyboard. + /// + internal static string strOptionsTabKeyboard { + get { + return ResourceManager.GetString("strOptionsTabKeyboard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Theme. + /// + internal static string strOptionsTabTheme { + get { + return ResourceManager.GetString("strOptionsTabTheme", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Delete. + /// + internal static string strOptionsThemeButtonDelete { + get { + return ResourceManager.GetString("strOptionsThemeButtonDelete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &New. + /// + internal static string strOptionsThemeButtonNew { + get { + return ResourceManager.GetString("strOptionsThemeButtonNew", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you really want to delete the theme?. + /// + internal static string strOptionsThemeDeleteConfirmation { + get { + return ResourceManager.GetString("strOptionsThemeDeleteConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable Themes. + /// + internal static string strOptionsThemeEnableTheming { + get { + return ResourceManager.GetString("strOptionsThemeEnableTheming", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No themes are loaded, check that the default mremoteNG themes exist in the slash themes folder. + /// + internal static string strOptionsThemeErrorNoThemes { + get { + return ResourceManager.GetString("strOptionsThemeErrorNoThemes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to New theme name. + /// + internal static string strOptionsThemeNewThemeCaption { + get { + return ResourceManager.GetString("strOptionsThemeNewThemeCaption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot create theme, name already present or special characters in the name. + /// + internal static string strOptionsThemeNewThemeError { + get { + return ResourceManager.GetString("strOptionsThemeNewThemeError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type the new theme name. + /// + internal static string strOptionsThemeNewThemeText { + get { + return ResourceManager.GetString("strOptionsThemeNewThemeText", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warning: Restart is required to disable the themes or to completely apply a new one. + /// + internal static string strOptionsThemeThemeChaangeWarning { + get { + return ResourceManager.GetString("strOptionsThemeThemeChaangeWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Panel Name. + /// + internal static string strPanelName { + get { + return ResourceManager.GetString("strPanelName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password must contain at least {0} of the following characters: {1}. + /// + internal static string strPasswordConstainsSpecialCharactersConstraintHint { + get { + return ResourceManager.GetString("strPasswordConstainsSpecialCharactersConstraintHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password must contain at least {0} lower case character(s). + /// + internal static string strPasswordContainsLowerCaseConstraintHint { + get { + return ResourceManager.GetString("strPasswordContainsLowerCaseConstraintHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password must contain at least {0} number(s). + /// + internal static string strPasswordContainsNumbersConstraint { + get { + return ResourceManager.GetString("strPasswordContainsNumbersConstraint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password must contain at least {0} upper case character(s). + /// + internal static string strPasswordContainsUpperCaseConstraintHint { + get { + return ResourceManager.GetString("strPasswordContainsUpperCaseConstraintHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password length must be between {0} and {1}. + /// + internal static string strPasswordLengthConstraintHint { + get { + return ResourceManager.GetString("strPasswordLengthConstraintHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password protect. + /// + internal static string strPasswordProtect { + get { + return ResourceManager.GetString("strPasswordProtect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Both passwords must match.. + /// + internal static string strPasswordStatusMustMatch { + get { + return ResourceManager.GetString("strPasswordStatusMustMatch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The password must be at least 3 characters long.. + /// + internal static string strPasswordStatusTooShort { + get { + return ResourceManager.GetString("strPasswordStatusTooShort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please fill all fields. + /// + internal static string strPleaseFillAllFields { + get { + return ResourceManager.GetString("strPleaseFillAllFields", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Popups. + /// + internal static string strPopups { + get { + return ResourceManager.GetString("strPopups", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port scan complete.. + /// + internal static string strPortScanComplete { + get { + return ResourceManager.GetString("strPortScanComplete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't load PortScan panel!. + /// + internal static string strPortScanCouldNotLoadPanel { + get { + return ResourceManager.GetString("strPortScanCouldNotLoadPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to (These properties will only be saved if you select mRemote/mRemoteNG XML as output file format!). + /// + internal static string strPropertiesWillOnlyBeSavedMRemoteXML { + get { + return ResourceManager.GetString("strPropertiesWillOnlyBeSavedMRemoteXML", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the hostname or ip you want to connect to.. + /// + internal static string strPropertyDescriptionAddress { + get { + return ResourceManager.GetString("strPropertyDescriptionAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Toggle all inheritance options.. + /// + internal static string strPropertyDescriptionAll { + get { + return ResourceManager.GetString("strPropertyDescriptionAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select which authentication level this connection should use.. + /// + internal static string strPropertyDescriptionAuthenticationLevel { + get { + return ResourceManager.GetString("strPropertyDescriptionAuthenticationLevel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select how you want to authenticate against the VNC server.. + /// + internal static string strPropertyDescriptionAuthenticationMode { + get { + return ResourceManager.GetString("strPropertyDescriptionAuthenticationMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether to automatically resize the connection when the window is resized or when fullscreen mode is toggled. Requires RDC 8.0 or higher.. + /// + internal static string strPropertyDescriptionAutomaticResize { + get { + return ResourceManager.GetString("strPropertyDescriptionAutomaticResize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether to use bitmap caching or not.. + /// + internal static string strPropertyDescriptionCacheBitmaps { + get { + return ResourceManager.GetString("strPropertyDescriptionCacheBitmaps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the colour quality to be used.. + /// + internal static string strPropertyDescriptionColors { + get { + return ResourceManager.GetString("strPropertyDescriptionColors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the compression value to be used.. + /// + internal static string strPropertyDescriptionCompression { + get { + return ResourceManager.GetString("strPropertyDescriptionCompression", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select which credential to use for this connection.. + /// + internal static string strPropertyDescriptionCredential { + get { + return ResourceManager.GetString("strPropertyDescriptionCredential", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Put your notes or a description for the host here.. + /// + internal static string strPropertyDescriptionDescription { + get { + return ResourceManager.GetString("strPropertyDescriptionDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select yes if the theme of the remote host should be displayed.. + /// + internal static string strPropertyDescriptionDisplayThemes { + get { + return ResourceManager.GetString("strPropertyDescriptionDisplayThemes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select yes if the wallpaper of the remote host should be displayed.. + /// + internal static string strPropertyDescriptionDisplayWallpaper { + get { + return ResourceManager.GetString("strPropertyDescriptionDisplayWallpaper", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your domain.. + /// + internal static string strPropertyDescriptionDomain { + get { + return ResourceManager.GetString("strPropertyDescriptionDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether to use desktop composition or not.. + /// + internal static string strPropertyDescriptionEnableDesktopComposition { + get { + return ResourceManager.GetString("strPropertyDescriptionEnableDesktopComposition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether to use font smoothing or not.. + /// + internal static string strPropertyDescriptionEnableFontSmoothing { + get { + return ResourceManager.GetString("strPropertyDescriptionEnableFontSmoothing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the encoding mode to be used.. + /// + internal static string strPropertyDescriptionEncoding { + get { + return ResourceManager.GetString("strPropertyDescriptionEncoding", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the encryption strength of the remote host.. + /// + internal static string strPropertyDescriptionEncryptionStrength { + get { + return ResourceManager.GetString("strPropertyDescriptionEncryptionStrength", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the external tool to be started.. + /// + internal static string strPropertyDescriptionExternalTool { + get { + return ResourceManager.GetString("strPropertyDescriptionExternalTool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select a external tool to be started after the disconnection to the remote host.. + /// + internal static string strPropertyDescriptionExternalToolAfter { + get { + return ResourceManager.GetString("strPropertyDescriptionExternalToolAfter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select a external tool to be started before the connection to the remote host is established.. + /// + internal static string strPropertyDescriptionExternalToolBefore { + get { + return ResourceManager.GetString("strPropertyDescriptionExternalToolBefore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose a icon that will be displayed when connected to the host.. + /// + internal static string strPropertyDescriptionIcon { + get { + return ResourceManager.GetString("strPropertyDescriptionIcon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies the load balancing information for use by load balancing routers to choose the best server.. + /// + internal static string strPropertyDescriptionLoadBalanceInfo { + get { + return ResourceManager.GetString("strPropertyDescriptionLoadBalanceInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the MAC address of the remote host if you wish to use it in an external tool.. + /// + internal static string strPropertyDescriptionMACAddress { + get { + return ResourceManager.GetString("strPropertyDescriptionMACAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This is the name that will be displayed in the connections tree.. + /// + internal static string strPropertyDescriptionName { + get { + return ResourceManager.GetString("strPropertyDescriptionName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sets the panel in which the connection will open.. + /// + internal static string strPropertyDescriptionPanel { + get { + return ResourceManager.GetString("strPropertyDescriptionPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your password.. + /// + internal static string strPropertyDescriptionPassword { + get { + return ResourceManager.GetString("strPropertyDescriptionPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the port the selected protocol is listening on.. + /// + internal static string strPropertyDescriptionPort { + get { + return ResourceManager.GetString("strPropertyDescriptionPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose the protocol mRemoteNG should use to connect to the host.. + /// + internal static string strPropertyDescriptionProtocol { + get { + return ResourceManager.GetString("strPropertyDescriptionProtocol", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select a PuTTY session to be used when connecting.. + /// + internal static string strPropertyDescriptionPuttySession { + get { + return ResourceManager.GetString("strPropertyDescriptionPuttySession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies the domain name that a user provides to connect to the RD Gateway server.. + /// + internal static string strPropertyDescriptionRDGatewayDomain { + get { + return ResourceManager.GetString("strPropertyDescriptionRDGatewayDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies the host name of the Remote Desktop Gateway server.. + /// + internal static string strPropertyDescriptionRDGatewayHostname { + get { + return ResourceManager.GetString("strPropertyDescriptionRDGatewayHostname", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies when to use a Remote Desktop Gateway (RD Gateway) server.. + /// + internal static string strPropertyDescriptionRDGatewayUsageMethod { + get { + return ResourceManager.GetString("strPropertyDescriptionRDGatewayUsageMethod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies whether or not to log on to the gateway using the same username and password as the connection.. + /// + internal static string strPropertyDescriptionRDGatewayUseConnectionCredentials { + get { + return ResourceManager.GetString("strPropertyDescriptionRDGatewayUseConnectionCredentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies the user name that a user provides to connect to the RD Gateway server.. + /// + internal static string strPropertyDescriptionRDGatewayUsername { + get { + return ResourceManager.GetString("strPropertyDescriptionRDGatewayUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether to receive an alert after the RDP session disconnects due to inactivity. + /// + internal static string strPropertyDescriptionRDPAlertIdleTimeout { + get { + return ResourceManager.GetString("strPropertyDescriptionRDPAlertIdleTimeout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The number of minutes for the RDP session to sit idle before automatically disconnecting (for no limit use 0). + /// + internal static string strPropertyDescriptionRDPMinutesToIdleTimeout { + get { + return ResourceManager.GetString("strPropertyDescriptionRDPMinutesToIdleTimeout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether local disk drives should be shown on the remote host.. + /// + internal static string strPropertyDescriptionRedirectDrives { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectDrives", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host.. + /// + internal static string strPropertyDescriptionRedirectKeys { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectKeys", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether local ports (ie. com, parallel) should be shown on the remote host.. + /// + internal static string strPropertyDescriptionRedirectPorts { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectPorts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether local printers should be shown on the remote host.. + /// + internal static string strPropertyDescriptionRedirectPrinters { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectPrinters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether local smart cards should be available on the remote host.. + /// + internal static string strPropertyDescriptionRedirectSmartCards { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectSmartCards", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select how remote sound should be redirected.. + /// + internal static string strPropertyDescriptionRedirectSounds { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectSounds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select one of the available rendering engines that will be used to display HTML.. + /// + internal static string strPropertyDescriptionRenderingEngine { + get { + return ResourceManager.GetString("strPropertyDescriptionRenderingEngine", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose the resolution or mode this connection will open in.. + /// + internal static string strPropertyDescriptionResolution { + get { + return ResourceManager.GetString("strPropertyDescriptionResolution", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the SmartSize mode to be used.. + /// + internal static string strPropertyDescriptionSmartSizeMode { + get { + return ResourceManager.GetString("strPropertyDescriptionSmartSizeMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose the Sound Quality provided by the protocol: Dynamic, Medium, High. + /// + internal static string strPropertyDescriptionSoundQuality { + get { + return ResourceManager.GetString("strPropertyDescriptionSoundQuality", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect to the console session of the remote host.. + /// + internal static string strPropertyDescriptionUseConsoleSession { + get { + return ResourceManager.GetString("strPropertyDescriptionUseConsoleSession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use the Credential Security Support Provider (CredSSP) for authentication if it is available.. + /// + internal static string strPropertyDescriptionUseCredSsp { + get { + return ResourceManager.GetString("strPropertyDescriptionUseCredSsp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Feel free to enter any information you need here.. + /// + internal static string strPropertyDescriptionUser1 { + get { + return ResourceManager.GetString("strPropertyDescriptionUser1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your username.. + /// + internal static string strPropertyDescriptionUsername { + get { + return ResourceManager.GetString("strPropertyDescriptionUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If you want to establish a view only connection to the host select yes.. + /// + internal static string strPropertyDescriptionViewOnly { + get { + return ResourceManager.GetString("strPropertyDescriptionViewOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the proxy address to be used.. + /// + internal static string strPropertyDescriptionVNCProxyAddress { + get { + return ResourceManager.GetString("strPropertyDescriptionVNCProxyAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your password for authenticating against the proxy.. + /// + internal static string strPropertyDescriptionVNCProxyPassword { + get { + return ResourceManager.GetString("strPropertyDescriptionVNCProxyPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the port the proxy server listens on.. + /// + internal static string strPropertyDescriptionVNCProxyPort { + get { + return ResourceManager.GetString("strPropertyDescriptionVNCProxyPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If you use a proxy to tunnel VNC connections, select which type it is.. + /// + internal static string strPropertyDescriptionVNCProxyType { + get { + return ResourceManager.GetString("strPropertyDescriptionVNCProxyType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your username for authenticating against the proxy.. + /// + internal static string strPropertyDescriptionVNCProxyUsername { + get { + return ResourceManager.GetString("strPropertyDescriptionVNCProxyUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hostname/IP. + /// + internal static string strPropertyNameAddress { + get { + return ResourceManager.GetString("strPropertyNameAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All. + /// + internal static string strPropertyNameAll { + get { + return ResourceManager.GetString("strPropertyNameAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Server Authentication. + /// + internal static string strPropertyNameAuthenticationLevel { + get { + return ResourceManager.GetString("strPropertyNameAuthenticationLevel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Authentication Mode. + /// + internal static string strPropertyNameAuthenticationMode { + get { + return ResourceManager.GetString("strPropertyNameAuthenticationMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatic Resize. + /// + internal static string strPropertyNameAutomaticResize { + get { + return ResourceManager.GetString("strPropertyNameAutomaticResize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cache Bitmaps. + /// + internal static string strPropertyNameCacheBitmaps { + get { + return ResourceManager.GetString("strPropertyNameCacheBitmaps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Colours. + /// + internal static string strPropertyNameColors { + get { + return ResourceManager.GetString("strPropertyNameColors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Compression. + /// + internal static string strPropertyNameCompression { + get { + return ResourceManager.GetString("strPropertyNameCompression", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Description. + /// + internal static string strPropertyNameDescription { + get { + return ResourceManager.GetString("strPropertyNameDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display Themes. + /// + internal static string strPropertyNameDisplayThemes { + get { + return ResourceManager.GetString("strPropertyNameDisplayThemes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display Wallpaper. + /// + internal static string strPropertyNameDisplayWallpaper { + get { + return ResourceManager.GetString("strPropertyNameDisplayWallpaper", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Domain. + /// + internal static string strPropertyNameDomain { + get { + return ResourceManager.GetString("strPropertyNameDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Desktop Composition. + /// + internal static string strPropertyNameEnableDesktopComposition { + get { + return ResourceManager.GetString("strPropertyNameEnableDesktopComposition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font Smoothing. + /// + internal static string strPropertyNameEnableFontSmoothing { + get { + return ResourceManager.GetString("strPropertyNameEnableFontSmoothing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Encoding. + /// + internal static string strPropertyNameEncoding { + get { + return ResourceManager.GetString("strPropertyNameEncoding", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Encryption Strength. + /// + internal static string strPropertyNameEncryptionStrength { + get { + return ResourceManager.GetString("strPropertyNameEncryptionStrength", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to External Tool. + /// + internal static string strPropertyNameExternalTool { + get { + return ResourceManager.GetString("strPropertyNameExternalTool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to External Tool After. + /// + internal static string strPropertyNameExternalToolAfter { + get { + return ResourceManager.GetString("strPropertyNameExternalToolAfter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to External Tool Before. + /// + internal static string strPropertyNameExternalToolBefore { + get { + return ResourceManager.GetString("strPropertyNameExternalToolBefore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icon. + /// + internal static string strPropertyNameIcon { + get { + return ResourceManager.GetString("strPropertyNameIcon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Load Balance Info. + /// + internal static string strPropertyNameLoadBalanceInfo { + get { + return ResourceManager.GetString("strPropertyNameLoadBalanceInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MAC Address. + /// + internal static string strPropertyNameMACAddress { + get { + return ResourceManager.GetString("strPropertyNameMACAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + internal static string strPropertyNameName { + get { + return ResourceManager.GetString("strPropertyNameName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Panel. + /// + internal static string strPropertyNamePanel { + get { + return ResourceManager.GetString("strPropertyNamePanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password. + /// + internal static string strPropertyNamePassword { + get { + return ResourceManager.GetString("strPropertyNamePassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port. + /// + internal static string strPropertyNamePort { + get { + return ResourceManager.GetString("strPropertyNamePort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol. + /// + internal static string strPropertyNameProtocol { + get { + return ResourceManager.GetString("strPropertyNameProtocol", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY Session. + /// + internal static string strPropertyNamePuttySession { + get { + return ResourceManager.GetString("strPropertyNamePuttySession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gateway Domain. + /// + internal static string strPropertyNameRDGatewayDomain { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gateway Hostname. + /// + internal static string strPropertyNameRDGatewayHostname { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayHostname", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote Desktop Gateway Password. + /// + internal static string strPropertyNameRDGatewayPassword { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use Gateway. + /// + internal static string strPropertyNameRDGatewayUsageMethod { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayUsageMethod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gateway Credentials. + /// + internal static string strPropertyNameRDGatewayUseConnectionCredentials { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayUseConnectionCredentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gateway Username. + /// + internal static string strPropertyNameRDGatewayUsername { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alert on Idle Disconnect. + /// + internal static string strPropertyNameRDPAlertIdleTimeout { + get { + return ResourceManager.GetString("strPropertyNameRDPAlertIdleTimeout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minutes to Idle. + /// + internal static string strPropertyNameRDPMinutesToIdleTimeout { + get { + return ResourceManager.GetString("strPropertyNameRDPMinutesToIdleTimeout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disk Drives. + /// + internal static string strPropertyNameRedirectDrives { + get { + return ResourceManager.GetString("strPropertyNameRedirectDrives", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Key Combinations. + /// + internal static string strPropertyNameRedirectKeys { + get { + return ResourceManager.GetString("strPropertyNameRedirectKeys", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ports. + /// + internal static string strPropertyNameRedirectPorts { + get { + return ResourceManager.GetString("strPropertyNameRedirectPorts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Printers. + /// + internal static string strPropertyNameRedirectPrinters { + get { + return ResourceManager.GetString("strPropertyNameRedirectPrinters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Smart Cards. + /// + internal static string strPropertyNameRedirectSmartCards { + get { + return ResourceManager.GetString("strPropertyNameRedirectSmartCards", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sounds. + /// + internal static string strPropertyNameRedirectSounds { + get { + return ResourceManager.GetString("strPropertyNameRedirectSounds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rendering Engine. + /// + internal static string strPropertyNameRenderingEngine { + get { + return ResourceManager.GetString("strPropertyNameRenderingEngine", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Resolution. + /// + internal static string strPropertyNameResolution { + get { + return ResourceManager.GetString("strPropertyNameResolution", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SmartSize Mode. + /// + internal static string strPropertyNameSmartSizeMode { + get { + return ResourceManager.GetString("strPropertyNameSmartSizeMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sound Quality. + /// + internal static string strPropertyNameSoundQuality { + get { + return ResourceManager.GetString("strPropertyNameSoundQuality", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use Console Session. + /// + internal static string strPropertyNameUseConsoleSession { + get { + return ResourceManager.GetString("strPropertyNameUseConsoleSession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use CredSSP. + /// + internal static string strPropertyNameUseCredSsp { + get { + return ResourceManager.GetString("strPropertyNameUseCredSsp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User Field. + /// + internal static string strPropertyNameUser1 { + get { + return ResourceManager.GetString("strPropertyNameUser1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Username. + /// + internal static string strPropertyNameUsername { + get { + return ResourceManager.GetString("strPropertyNameUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View Only. + /// + internal static string strPropertyNameViewOnly { + get { + return ResourceManager.GetString("strPropertyNameViewOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy Address. + /// + internal static string strPropertyNameVNCProxyAddress { + get { + return ResourceManager.GetString("strPropertyNameVNCProxyAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy Password. + /// + internal static string strPropertyNameVNCProxyPassword { + get { + return ResourceManager.GetString("strPropertyNameVNCProxyPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy Port. + /// + internal static string strPropertyNameVNCProxyPort { + get { + return ResourceManager.GetString("strPropertyNameVNCProxyPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy Type. + /// + internal static string strPropertyNameVNCProxyType { + get { + return ResourceManager.GetString("strPropertyNameVNCProxyType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy Username. + /// + internal static string strPropertyNameVNCProxyUsername { + get { + return ResourceManager.GetString("strPropertyNameVNCProxyUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol Event Disconnected. + ///Message: + ///{0}. + /// + internal static string strProtocolEventDisconnected { + get { + return ResourceManager.GetString("strProtocolEventDisconnected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol Event Disconnected failed. + ///{0}. + /// + internal static string strProtocolEventDisconnectFailed { + get { + return ResourceManager.GetString("strProtocolEventDisconnectFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol to import. + /// + internal static string strProtocolToImport { + get { + return ResourceManager.GetString("strProtocolToImport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy test failed!. + /// + internal static string strProxyTestFailed { + get { + return ResourceManager.GetString("strProxyTestFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy test succeeded!. + /// + internal static string strProxyTestSucceeded { + get { + return ResourceManager.GetString("strProxyTestSucceeded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection failed!. + /// + internal static string strPuttyConnectionFailed { + get { + return ResourceManager.GetString("strPuttyConnectionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dispose of Putty process failed!. + /// + internal static string strPuttyDisposeFailed { + get { + return ResourceManager.GetString("strPuttyDisposeFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't set focus!. + /// + internal static string strPuttyFocusFailed { + get { + return ResourceManager.GetString("strPuttyFocusFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get Putty Sessions Failed!. + /// + internal static string strPuttyGetSessionsFailed { + get { + return ResourceManager.GetString("strPuttyGetSessionsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Putty Handle: {0}. + /// + internal static string strPuttyHandle { + get { + return ResourceManager.GetString("strPuttyHandle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Killing Putty Process failed!. + /// + internal static string strPuttyKillFailed { + get { + return ResourceManager.GetString("strPuttyKillFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Panel Handle: {0}. + /// + internal static string strPuttyParentHandle { + get { + return ResourceManager.GetString("strPuttyParentHandle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Putty Resize Failed!. + /// + internal static string strPuttyResizeFailed { + get { + return ResourceManager.GetString("strPuttyResizeFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY Saved Sessions. + /// + internal static string strPuttySavedSessionsRootName { + get { + return ResourceManager.GetString("strPuttySavedSessionsRootName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY Session Settings. + /// + internal static string strPuttySessionSettings { + get { + return ResourceManager.GetString("strPuttySessionSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY Settings. + /// + internal static string strPuttySettings { + get { + return ResourceManager.GetString("strPuttySettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show PuTTY Settings Dialog failed!. + /// + internal static string strPuttyShowSettingsDialogFailed { + get { + return ResourceManager.GetString("strPuttyShowSettingsDialogFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Putty Start Failed!. + /// + internal static string strPuttyStartFailed { + get { + return ResourceManager.GetString("strPuttyStartFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to --- PuTTY Stuff ---. + /// + internal static string strPuttyStuff { + get { + return ResourceManager.GetString("strPuttyStuff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY Title: {0}. + /// + internal static string strPuttyTitle { + get { + return ResourceManager.GetString("strPuttyTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quick: {0}. + /// + internal static string strQuick { + get { + return ResourceManager.GetString("strQuick", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quick Connect. + /// + internal static string strQuickConnect { + get { + return ResourceManager.GetString("strQuickConnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quick Connect Add Failed!. + /// + internal static string strQuickConnectAddFailed { + get { + return ResourceManager.GetString("strQuickConnectAddFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Creating quick connect failed. + /// + internal static string strQuickConnectFailed { + get { + return ResourceManager.GetString("strQuickConnectFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Warn me when closing connections. + /// + internal static string strRadioCloseWarnAll { + get { + return ResourceManager.GetString("strRadioCloseWarnAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warn me only when e&xiting mRemoteNG. + /// + internal static string strRadioCloseWarnExit { + get { + return ResourceManager.GetString("strRadioCloseWarnExit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warn me only when closing &multiple connections. + /// + internal static string strRadioCloseWarnMultiple { + get { + return ResourceManager.GetString("strRadioCloseWarnMultiple", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do &not warn me when closing connections. + /// + internal static string strRadioCloseWarnNever { + get { + return ResourceManager.GetString("strRadioCloseWarnNever", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RAW. + /// + internal static string strRAW { + get { + return ResourceManager.GetString("strRAW", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP. + /// + internal static string strRDP { + get { + return ResourceManager.GetString("strRDP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 16777216 Colours (24-bit). + /// + internal static string strRDP16777216Colors { + get { + return ResourceManager.GetString("strRDP16777216Colors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 256 Colours (8-bit). + /// + internal static string strRDP256Colors { + get { + return ResourceManager.GetString("strRDP256Colors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 32768 Colours (15-bit). + /// + internal static string strRDP32768Colors { + get { + return ResourceManager.GetString("strRDP32768Colors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 16777216 Colours (32-bit). + /// + internal static string strRDP4294967296Colors { + get { + return ResourceManager.GetString("strRDP4294967296Colors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 65536 Colours (16-bit). + /// + internal static string strRDP65536Colors { + get { + return ResourceManager.GetString("strRDP65536Colors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP Add Resolution failed!. + /// + internal static string strRdpAddResolutionFailed { + get { + return ResourceManager.GetString("strRdpAddResolutionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP Add Resolutions failed!. + /// + internal static string strRdpAddResolutionsFailed { + get { + return ResourceManager.GetString("strRdpAddResolutionsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Session failed. + /// + internal static string strRdpAddSessionFailed { + get { + return ResourceManager.GetString("strRdpAddSessionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close RDP Connection failed!. + /// + internal static string strRdpCloseConnectionFailed { + get { + return ResourceManager.GetString("strRdpCloseConnectionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opening connection failed!. + /// + internal static string strRdpConnectionOpenFailed { + get { + return ResourceManager.GetString("strRdpConnectionOpenFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't create RDP control, please check mRemoteNG requirements.. + /// + internal static string strRdpControlCreationFailed { + get { + return ResourceManager.GetString("strRdpControlCreationFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disable Cursor blinking. + /// + internal static string strRDPDisableCursorblinking { + get { + return ResourceManager.GetString("strRDPDisableCursorblinking", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disable Cursor Shadow. + /// + internal static string strRDPDisableCursorShadow { + get { + return ResourceManager.GetString("strRDPDisableCursorShadow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disable Full Window drag. + /// + internal static string strRDPDisableFullWindowdrag { + get { + return ResourceManager.GetString("strRDPDisableFullWindowdrag", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disable Menu Animations. + /// + internal static string strRDPDisableMenuAnimations { + get { + return ResourceManager.GetString("strRDPDisableMenuAnimations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disable Themes. + /// + internal static string strRDPDisableThemes { + get { + return ResourceManager.GetString("strRDPDisableThemes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disable Wallpaper. + /// + internal static string strRDPDisableWallpaper { + get { + return ResourceManager.GetString("strRDPDisableWallpaper", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP disconnected!. + /// + internal static string strRdpDisconnected { + get { + return ResourceManager.GetString("strRdpDisconnected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP Disconnect failed, trying to close!. + /// + internal static string strRdpDisconnectFailed { + get { + return ResourceManager.GetString("strRdpDisconnectFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Internal error code 1.. + /// + internal static string strRdpErrorCode1 { + get { + return ResourceManager.GetString("strRdpErrorCode1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Internal error code 2.. + /// + internal static string strRdpErrorCode2 { + get { + return ResourceManager.GetString("strRdpErrorCode2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Internal error code 3. This is not a valid state.. + /// + internal static string strRdpErrorCode3 { + get { + return ResourceManager.GetString("strRdpErrorCode3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Internal error code 4.. + /// + internal static string strRdpErrorCode4 { + get { + return ResourceManager.GetString("strRdpErrorCode4", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An unrecoverable error has occurred during client connection.. + /// + internal static string strRdpErrorConnection { + get { + return ResourceManager.GetString("strRdpErrorConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GetError failed (FatalErrors). + /// + internal static string strRdpErrorGetFailure { + get { + return ResourceManager.GetString("strRdpErrorGetFailure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An unknown fatal RDP error has occurred. Error code {0}.. + /// + internal static string strRdpErrorGetUnknown { + get { + return ResourceManager.GetString("strRdpErrorGetUnknown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An out-of-memory error has occurred.. + /// + internal static string strRdpErrorOutOfMemory { + get { + return ResourceManager.GetString("strRdpErrorOutOfMemory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An unknown error has occurred.. + /// + internal static string strRdpErrorUnknown { + get { + return ResourceManager.GetString("strRdpErrorUnknown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A window-creation error has occurred.. + /// + internal static string strRdpErrorWindowCreation { + get { + return ResourceManager.GetString("strRdpErrorWindowCreation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Winsock initialization error.. + /// + internal static string strRdpErrorWinsock { + get { + return ResourceManager.GetString("strRdpErrorWinsock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't import rdp file!. + /// + internal static string strRdpFileCouldNotBeImported { + get { + return ResourceManager.GetString("strRdpFileCouldNotBeImported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fit To Panel. + /// + internal static string strRDPFitToPanel { + get { + return ResourceManager.GetString("strRDPFitToPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP Focus failed!. + /// + internal static string strRdpFocusFailed { + get { + return ResourceManager.GetString("strRdpFocusFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RD Gateway is supported.. + /// + internal static string strRdpGatewayIsSupported { + get { + return ResourceManager.GetString("strRdpGatewayIsSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RD Gateway is not supported!. + /// + internal static string strRdpGatewayNotSupported { + get { + return ResourceManager.GetString("strRdpGatewayNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GetSessions failed!. + /// + internal static string strRdpGetSessionsFailed { + get { + return ResourceManager.GetString("strRdpGetSessionsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Open RDP Connection failed!. + /// + internal static string strRdpOpenConnectionFailed { + get { + return ResourceManager.GetString("strRdpOpenConnectionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP Connection Timeout. + /// + internal static string strRDPOverallConnectionTimeout { + get { + return ResourceManager.GetString("strRDPOverallConnectionTimeout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP reconnection count:. + /// + internal static string strRdpReconnectCount { + get { + return ResourceManager.GetString("strRdpReconnectCount", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP SetAuthenticationLevel failed!. + /// + internal static string strRdpSetAuthenticationLevelFailed { + get { + return ResourceManager.GetString("strRdpSetAuthenticationLevelFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP SetUseConsoleSession failed!. + /// + internal static string strRdpSetConsoleSessionFailed { + get { + return ResourceManager.GetString("strRdpSetConsoleSessionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Setting Console switch for RDC {0}.. + /// + internal static string strRdpSetConsoleSwitch { + get { + return ResourceManager.GetString("strRdpSetConsoleSwitch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP SetCredentials failed!. + /// + internal static string strRdpSetCredentialsFailed { + get { + return ResourceManager.GetString("strRdpSetCredentialsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP SetEventHandlers failed!. + /// + internal static string strRdpSetEventHandlersFailed { + get { + return ResourceManager.GetString("strRdpSetEventHandlersFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP SetRDGateway failed!. + /// + internal static string strRdpSetGatewayFailed { + get { + return ResourceManager.GetString("strRdpSetGatewayFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP SetPerformanceFlags failed!. + /// + internal static string strRdpSetPerformanceFlagsFailed { + get { + return ResourceManager.GetString("strRdpSetPerformanceFlagsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP SetPort failed!. + /// + internal static string strRdpSetPortFailed { + get { + return ResourceManager.GetString("strRdpSetPortFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP SetProps failed!. + /// + internal static string strRdpSetPropsFailed { + get { + return ResourceManager.GetString("strRdpSetPropsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rdp Set Redirection Failed!. + /// + internal static string strRdpSetRedirectionFailed { + get { + return ResourceManager.GetString("strRdpSetRedirectionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rdp Set Redirect Keys Failed!. + /// + internal static string strRdpSetRedirectKeysFailed { + get { + return ResourceManager.GetString("strRdpSetRedirectKeysFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP SetResolution failed!. + /// + internal static string strRdpSetResolutionFailed { + get { + return ResourceManager.GetString("strRdpSetResolutionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Smart Size. + /// + internal static string strRDPSmartSize { + get { + return ResourceManager.GetString("strRDPSmartSize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Bring to this computer. + /// + internal static string strRDPSoundBringToThisComputer { + get { + return ResourceManager.GetString("strRDPSoundBringToThisComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do not play. + /// + internal static string strRDPSoundDoNotPlay { + get { + return ResourceManager.GetString("strRDPSoundDoNotPlay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Leave at remote computer. + /// + internal static string strRDPSoundLeaveAtRemoteComputer { + get { + return ResourceManager.GetString("strRDPSoundLeaveAtRemoteComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dynamic. + /// + internal static string strRDPSoundQualityDynamic { + get { + return ResourceManager.GetString("strRDPSoundQualityDynamic", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to High. + /// + internal static string strRDPSoundQualityHigh { + get { + return ResourceManager.GetString("strRDPSoundQualityHigh", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Medium. + /// + internal static string strRDPSoundQualityMedium { + get { + return ResourceManager.GetString("strRDPSoundQualityMedium", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP ToggleFullscreen failed!. + /// + internal static string strRdpToggleFullscreenFailed { + get { + return ResourceManager.GetString("strRdpToggleFullscreenFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP ToggleSmartSize failed!. + /// + internal static string strRdpToggleSmartSizeFailed { + get { + return ResourceManager.GetString("strRdpToggleSmartSizeFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reconnect to previously opened sessions on startup. + /// + internal static string strReconnectAtStartup { + get { + return ResourceManager.GetString("strReconnectAtStartup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Refresh. + /// + internal static string strRefresh { + get { + return ResourceManager.GetString("strRefresh", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote file. + /// + internal static string strRemoteFile { + get { + return ResourceManager.GetString("strRemoteFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove. + /// + internal static string strRemove { + get { + return ResourceManager.GetString("strRemove", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove All. + /// + internal static string strRemoveAll { + get { + return ResourceManager.GetString("strRemoveAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rename. + /// + internal static string strRename { + get { + return ResourceManager.GetString("strRename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rlogin. + /// + internal static string strRlogin { + get { + return ResourceManager.GetString("strRlogin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save. + /// + internal static string strSave { + get { + return ResourceManager.GetString("strSave", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save All. + /// + internal static string strSaveAll { + get { + return ResourceManager.GetString("strSaveAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to save the current connections file before loading another?. + /// + internal static string strSaveConnectionsFileBeforeOpeningAnother { + get { + return ResourceManager.GetString("strSaveConnectionsFileBeforeOpeningAnother", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Save connections on exit. + /// + internal static string strSaveConsOnExit { + get { + return ResourceManager.GetString("strSaveConsOnExit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Graphics Interchange Format File (.gif)|*.gif|Joint Photographic Experts Group File (.jpeg)|*.jpeg|Joint Photographic Experts Group File (.jpg)|*.jpg|Portable Network Graphics File (.png)|*.png. + /// + internal static string strSaveImageFilter { + get { + return ResourceManager.GetString("strSaveImageFilter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Screen. + /// + internal static string strScreen { + get { + return ResourceManager.GetString("strScreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Screenshot. + /// + internal static string strScreenshot { + get { + return ResourceManager.GetString("strScreenshot", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Screenshots. + /// + internal static string strScreenshots { + get { + return ResourceManager.GetString("strScreenshots", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search. + /// + internal static string strSearchPrompt { + get { + return ResourceManager.GetString("strSearchPrompt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Send To.... + /// + internal static string strSendTo { + get { + return ResourceManager.GetString("strSendTo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get Sessions Background failed. + /// + internal static string strSessionGetFailed { + get { + return ResourceManager.GetString("strSessionGetFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Kill Session Background failed. + /// + internal static string strSessionKillFailed { + get { + return ResourceManager.GetString("strSessionKillFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set hostname like display name when creating or renaming connections. + /// + internal static string strSetHostnameLikeDisplayName { + get { + return ResourceManager.GetString("strSetHostnameLikeDisplayName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Setting main form text failed. + /// + internal static string strSettingMainFormTextFailed { + get { + return ResourceManager.GetString("strSettingMainFormTextFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't save settings or dispose SysTray Icon!. + /// + internal static string strSettingsCouldNotBeSavedOrTrayDispose { + get { + return ResourceManager.GetString("strSettingsCouldNotBeSavedOrTrayDispose", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show description tooltips in connection tree. + /// + internal static string strShowDescriptionTooltips { + get { + return ResourceManager.GetString("strShowDescriptionTooltips", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show full connections file path in window title. + /// + internal static string strShowFullConsFilePath { + get { + return ResourceManager.GetString("strShowFullConsFilePath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show logon information on tab names. + /// + internal static string strShowLogonInfoOnTabs { + get { + return ResourceManager.GetString("strShowLogonInfoOnTabs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show protocols on tab names. + /// + internal static string strShowProtocolOnTabs { + get { + return ResourceManager.GetString("strShowProtocolOnTabs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show these message types. + /// + internal static string strShowTheseMessageTypes { + get { + return ResourceManager.GetString("strShowTheseMessageTypes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single click on connection opens it. + /// + internal static string strSingleClickOnConnectionOpensIt { + get { + return ResourceManager.GetString("strSingleClickOnConnectionOpensIt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Single click on opened connection in Connection Tree switches to opened Connection Tab. + /// + internal static string strSingleClickOnOpenConnectionSwitchesToIt { + get { + return ResourceManager.GetString("strSingleClickOnOpenConnectionSwitchesToIt", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Aspect. + /// + internal static string strSmartSizeModeAspect { + get { + return ResourceManager.GetString("strSmartSizeModeAspect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Free. + /// + internal static string strSmartSizeModeFree { + get { + return ResourceManager.GetString("strSmartSizeModeFree", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No SmartSize. + /// + internal static string strSmartSizeModeNone { + get { + return ResourceManager.GetString("strSmartSizeModeNone", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Socks 5. + /// + internal static string strSocks5 { + get { + return ResourceManager.GetString("strSocks5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sort. + /// + internal static string strSort { + get { + return ResourceManager.GetString("strSort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ascending (A-Z). + /// + internal static string strSortAsc { + get { + return ResourceManager.GetString("strSortAsc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Descending (Z-A). + /// + internal static string strSortDesc { + get { + return ResourceManager.GetString("strSortDesc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Special Keys. + /// + internal static string strSpecialKeys { + get { + return ResourceManager.GetString("strSpecialKeys", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please see Help - Getting started - SQL Configuration for more Info!. + /// + internal static string strSQLInfo { + get { + return ResourceManager.GetString("strSQLInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SQL Server. + /// + internal static string strSQLServer { + get { + return ResourceManager.GetString("strSQLServer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SQL Update check finished and there is an update available! Going to refresh connections.. + /// + internal static string strSqlUpdateCheckUpdateAvailable { + get { + return ResourceManager.GetString("strSqlUpdateCheckUpdateAvailable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SSH version 1. + /// + internal static string strSsh1 { + get { + return ResourceManager.GetString("strSsh1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SSH version 2. + /// + internal static string strSsh2 { + get { + return ResourceManager.GetString("strSsh2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SSH background transfer failed!. + /// + internal static string strSSHStartTransferBG { + get { + return ResourceManager.GetString("strSSHStartTransferBG", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Transfer successful!. + /// + internal static string strSSHTranferSuccessful { + get { + return ResourceManager.GetString("strSSHTranferSuccessful", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SSH Transfer End (UI.Window.SSHTransfer) failed!. + /// + internal static string strSSHTransferEndFailed { + get { + return ResourceManager.GetString("strSSHTransferEndFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SSH transfer failed.. + /// + internal static string strSSHTransferFailed { + get { + return ResourceManager.GetString("strSSHTransferFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start IP. + /// + internal static string strStartIP { + get { + return ResourceManager.GetString("strStartIP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Start Port. + /// + internal static string strStartPort { + get { + return ResourceManager.GetString("strStartPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Startup/Exit. + /// + internal static string strStartupExit { + get { + return ResourceManager.GetString("strStartupExit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Status. + /// + internal static string strStatus { + get { + return ResourceManager.GetString("strStatus", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Switch to Notifications panel on:. + /// + internal static string strSwitchToErrorsAndInfos { + get { + return ResourceManager.GetString("strSwitchToErrorsAndInfos", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Advanced. + /// + internal static string strTabAdvanced { + get { + return ResourceManager.GetString("strTabAdvanced", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Appearance. + /// + internal static string strTabAppearance { + get { + return ResourceManager.GetString("strTabAppearance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Tabs && Panels. + /// + internal static string strTabsAndPanels { + get { + return ResourceManager.GetString("strTabsAndPanels", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Security. + /// + internal static string strTabSecurity { + get { + return ResourceManager.GetString("strTabSecurity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Updates. + /// + internal static string strTabUpdates { + get { + return ResourceManager.GetString("strTabUpdates", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Telnet. + /// + internal static string strTelnet { + get { + return ResourceManager.GetString("strTelnet", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The following:. + /// + internal static string strTheFollowing { + get { + return ResourceManager.GetString("strTheFollowing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Config Panel. + /// + internal static string strThemeCategoryConfigPanel { + get { + return ResourceManager.GetString("strThemeCategoryConfigPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections Panel. + /// + internal static string strThemeCategoryConnectionsPanel { + get { + return ResourceManager.GetString("strThemeCategoryConnectionsPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to General. + /// + internal static string strThemeCategoryGeneral { + get { + return ResourceManager.GetString("strThemeCategoryGeneral", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The background colour of the config panel.. + /// + internal static string strThemeDescriptionConfigPanelBackgroundColor { + get { + return ResourceManager.GetString("strThemeDescriptionConfigPanelBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The colour of the category text in the config panel.. + /// + internal static string strThemeDescriptionConfigPanelCategoryTextColor { + get { + return ResourceManager.GetString("strThemeDescriptionConfigPanelCategoryTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The colour of the grid lines in the config panel. + /// + internal static string strThemeDescriptionConfigPanelGridLineColor { + get { + return ResourceManager.GetString("strThemeDescriptionConfigPanelGridLineColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The background colour of the help area of the config panel.. + /// + internal static string strThemeDescriptionConfigPanelHelpBackgroundColor { + get { + return ResourceManager.GetString("strThemeDescriptionConfigPanelHelpBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The colour of the text in the help area of the config panel.. + /// + internal static string strThemeDescriptionConfigPanelHelpTextColor { + get { + return ResourceManager.GetString("strThemeDescriptionConfigPanelHelpTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The colour of the text in the config panel.. + /// + internal static string strThemeDescriptionConfigPanelTextColor { + get { + return ResourceManager.GetString("strThemeDescriptionConfigPanelTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The background colour of the connections panel.. + /// + internal static string strThemeDescriptionConnectionsPanelBackgroundColor { + get { + return ResourceManager.GetString("strThemeDescriptionConnectionsPanelBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The colour of the text in the connections panel.. + /// + internal static string strThemeDescriptionConnectionsPanelTextColor { + get { + return ResourceManager.GetString("strThemeDescriptionConnectionsPanelTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The colour of the tree lines in the connections panel.. + /// + internal static string strThemeDescriptionConnectionsPanelTreeLineColor { + get { + return ResourceManager.GetString("strThemeDescriptionConnectionsPanelTreeLineColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The background colour of the menus.. + /// + internal static string strThemeDescriptionMenuBackgroundColor { + get { + return ResourceManager.GetString("strThemeDescriptionMenuBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The colour of the text in the menus.. + /// + internal static string strThemeDescriptionMenuTextColor { + get { + return ResourceManager.GetString("strThemeDescriptionMenuTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The background colour of the search box.. + /// + internal static string strThemeDescriptionSearchBoxBackgroundColor { + get { + return ResourceManager.GetString("strThemeDescriptionSearchBoxBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The colour of the text in the search box.. + /// + internal static string strThemeDescriptionSearchBoxTextColor { + get { + return ResourceManager.GetString("strThemeDescriptionSearchBoxTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The colour of the prompt text in the search box.. + /// + internal static string strThemeDescriptionSearchBoxTextPromptColor { + get { + return ResourceManager.GetString("strThemeDescriptionSearchBoxTextPromptColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The background colour of the toolbars.. + /// + internal static string strThemeDescriptionToolbarBackgroundColor { + get { + return ResourceManager.GetString("strThemeDescriptionToolbarBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The colour of the text in the toolbars.. + /// + internal static string strThemeDescriptionToolbarTextColor { + get { + return ResourceManager.GetString("strThemeDescriptionToolbarTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The background colour of the main window.. + /// + internal static string strThemeDescriptionWindowBackgroundColor { + get { + return ResourceManager.GetString("strThemeDescriptionWindowBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Config Panel Background Colour. + /// + internal static string strThemeNameConfigPanelBackgroundColor { + get { + return ResourceManager.GetString("strThemeNameConfigPanelBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Config Panel Category Text Colour. + /// + internal static string strThemeNameConfigPanelCategoryTextColor { + get { + return ResourceManager.GetString("strThemeNameConfigPanelCategoryTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Config Panel Grid Line Colour. + /// + internal static string strThemeNameConfigPanelGridLineColor { + get { + return ResourceManager.GetString("strThemeNameConfigPanelGridLineColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Config Panel Help Background Colour. + /// + internal static string strThemeNameConfigPanelHelpBackgroundColor { + get { + return ResourceManager.GetString("strThemeNameConfigPanelHelpBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Config Panel Help Text Colour. + /// + internal static string strThemeNameConfigPanelHelpTextColor { + get { + return ResourceManager.GetString("strThemeNameConfigPanelHelpTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Config Panel Text Colour. + /// + internal static string strThemeNameConfigPanelTextColor { + get { + return ResourceManager.GetString("strThemeNameConfigPanelTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections Panel Background Colour. + /// + internal static string strThemeNameConnectionsPanelBackgroundColor { + get { + return ResourceManager.GetString("strThemeNameConnectionsPanelBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections Panel Text Colour. + /// + internal static string strThemeNameConnectionsPanelTextColor { + get { + return ResourceManager.GetString("strThemeNameConnectionsPanelTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections Panel Tree Line Colour. + /// + internal static string strThemeNameConnectionsPanelTreeLineColor { + get { + return ResourceManager.GetString("strThemeNameConnectionsPanelTreeLineColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Menu Background Colour. + /// + internal static string strThemeNameMenuBackgroundColor { + get { + return ResourceManager.GetString("strThemeNameMenuBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Menu Text Colour. + /// + internal static string strThemeNameMenuTextColor { + get { + return ResourceManager.GetString("strThemeNameMenuTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Box Background Colour. + /// + internal static string strThemeNameSearchBoxBackgroundColor { + get { + return ResourceManager.GetString("strThemeNameSearchBoxBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Box Text Colour. + /// + internal static string strThemeNameSearchBoxTextColor { + get { + return ResourceManager.GetString("strThemeNameSearchBoxTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Search Box Text Prompt Colour. + /// + internal static string strThemeNameSearchBoxTextPromptColor { + get { + return ResourceManager.GetString("strThemeNameSearchBoxTextPromptColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Toolbar Background Colour. + /// + internal static string strThemeNameToolbarBackgroundColor { + get { + return ResourceManager.GetString("strThemeNameToolbarBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Toolbar Text Colour. + /// + internal static string strThemeNameToolbarTextColor { + get { + return ResourceManager.GetString("strThemeNameToolbarTextColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Window Background Colour. + /// + internal static string strThemeNameWindowBackgroundColor { + get { + return ResourceManager.GetString("strThemeNameWindowBackgroundColor", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Title. + /// + internal static string strTitle { + get { + return ResourceManager.GetString("strTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Error ({0}). + /// + internal static string strTitleError { + get { + return ResourceManager.GetString("strTitleError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Information ({0}). + /// + internal static string strTitleInformation { + get { + return ResourceManager.GetString("strTitleInformation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password. + /// + internal static string strTitlePassword { + get { + return ResourceManager.GetString("strTitlePassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password for {0}. + /// + internal static string strTitlePasswordWithName { + get { + return ResourceManager.GetString("strTitlePasswordWithName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select Panel. + /// + internal static string strTitleSelectPanel { + get { + return ResourceManager.GetString("strTitleSelectPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warning ({0}). + /// + internal static string strTitleWarning { + get { + return ResourceManager.GetString("strTitleWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Transfer. + /// + internal static string strTransfer { + get { + return ResourceManager.GetString("strTransfer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Transfer failed!. + /// + internal static string strTransferFailed { + get { + return ResourceManager.GetString("strTransferFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try to integrate. + /// + internal static string strTryIntegrate { + get { + return ResourceManager.GetString("strTryIntegrate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type. + /// + internal static string strType { + get { + return ResourceManager.GetString("strType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ultra VNC Repeater. + /// + internal static string strUltraVncRepeater { + get { + return ResourceManager.GetString("strUltraVncRepeater", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to UltraVNC SingleClick port:. + /// + internal static string strUltraVNCSCListeningPort { + get { + return ResourceManager.GetString("strUltraVNCSCListeningPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Uncheck the properties you want not to be saved!. + /// + internal static string strUncheckProperties { + get { + return ResourceManager.GetString("strUncheckProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unnamed Theme. + /// + internal static string strUnnamedTheme { + get { + return ResourceManager.GetString("strUnnamedTheme", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to mRemoteNG requires an update. + /// + internal static string strUpdateAvailable { + get { + return ResourceManager.GetString("strUpdateAvailable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to mRemoteNG can periodically connect to the mRemoteNG website to check for updates.. + /// + internal static string strUpdateCheck { + get { + return ResourceManager.GetString("strUpdateCheck", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The update information could not be downloaded.. + /// + internal static string strUpdateCheckCompleteFailed { + get { + return ResourceManager.GetString("strUpdateCheckCompleteFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check failed. + /// + internal static string strUpdateCheckFailedLabel { + get { + return ResourceManager.GetString("strUpdateCheckFailedLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Checking for updates.... + /// + internal static string strUpdateCheckingLabel { + get { + return ResourceManager.GetString("strUpdateCheckingLabel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to mRemoteNG Portable Edition does not currently support automatic updates.. + /// + internal static string strUpdateCheckPortableEdition { + get { + return ResourceManager.GetString("strUpdateCheckPortableEdition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Download complete! + ///mRemoteNG will now quit and begin with the installation.. + /// + internal static string strUpdateDownloadComplete { + get { + return ResourceManager.GetString("strUpdateDownloadComplete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The update could not be downloaded.. + /// + internal static string strUpdateDownloadCompleteFailed { + get { + return ResourceManager.GetString("strUpdateDownloadCompleteFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The update download could not be initiated.. + /// + internal static string strUpdateDownloadFailed { + get { + return ResourceManager.GetString("strUpdateDownloadFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Every {0} days. + /// + internal static string strUpdateFrequencyCustom { + get { + return ResourceManager.GetString("strUpdateFrequencyCustom", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Daily. + /// + internal static string strUpdateFrequencyDaily { + get { + return ResourceManager.GetString("strUpdateFrequencyDaily", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Monthly. + /// + internal static string strUpdateFrequencyMonthly { + get { + return ResourceManager.GetString("strUpdateFrequencyMonthly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Weekly. + /// + internal static string strUpdateFrequencyWeekly { + get { + return ResourceManager.GetString("strUpdateFrequencyWeekly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The change log could not be downloaded.. + /// + internal static string strUpdateGetChangeLogFailed { + get { + return ResourceManager.GetString("strUpdateGetChangeLogFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Download Completed!. + /// + internal static string strUpdatePortableDownloadComplete { + get { + return ResourceManager.GetString("strUpdatePortableDownloadComplete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Upgrade. + /// + internal static string strUpgrade { + get { + return ResourceManager.GetString("strUpgrade", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use Default. + /// + internal static string strUseDefault { + get { + return ResourceManager.GetString("strUseDefault", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use a different username and password. + /// + internal static string strUseDifferentUsernameAndPassword { + get { + return ResourceManager.GetString("strUseDifferentUsernameAndPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User. + /// + internal static string strUser { + get { + return ResourceManager.GetString("strUser", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use the same username and password. + /// + internal static string strUseSameUsernameAndPassword { + get { + return ResourceManager.GetString("strUseSameUsernameAndPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use a smart card. + /// + internal static string strUseSmartCard { + get { + return ResourceManager.GetString("strUseSmartCard", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use SQL Server to load && save connections. + /// + internal static string strUseSQLServer { + get { + return ResourceManager.GetString("strUseSQLServer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Version. + /// + internal static string strVersion { + get { + return ResourceManager.GetString("strVersion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VNC. + /// + internal static string strVnc { + get { + return ResourceManager.GetString("strVnc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VNC disconnect failed!. + /// + internal static string strVncConnectionDisconnectFailed { + get { + return ResourceManager.GetString("strVncConnectionDisconnectFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opening connection failed!. + /// + internal static string strVncConnectionOpenFailed { + get { + return ResourceManager.GetString("strVncConnectionOpenFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VNC Refresh Screen Failed!. + /// + internal static string strVncRefreshFailed { + get { + return ResourceManager.GetString("strVncRefreshFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VNC SendSpecialKeys failed!. + /// + internal static string strVncSendSpecialKeysFailed { + get { + return ResourceManager.GetString("strVncSendSpecialKeysFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VNC Set Event Handlers failed!. + /// + internal static string strVncSetEventHandlersFailed { + get { + return ResourceManager.GetString("strVncSetEventHandlersFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VNC Set Props Failed!. + /// + internal static string strVncSetPropsFailed { + get { + return ResourceManager.GetString("strVncSetPropsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VNC Start Chat Failed!. + /// + internal static string strVncStartChatFailed { + get { + return ResourceManager.GetString("strVncStartChatFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VNC Toggle SmartSize Failed!. + /// + internal static string strVncToggleSmartSizeFailed { + get { + return ResourceManager.GetString("strVncToggleSmartSizeFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VNC Toggle ViewOnly Failed!. + /// + internal static string strVncToggleViewOnlyFailed { + get { + return ResourceManager.GetString("strVncToggleViewOnlyFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warn me if authentication fails. + /// + internal static string strWarnIfAuthFails { + get { + return ResourceManager.GetString("strWarnIfAuthFails", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warnings. + /// + internal static string strWarnings { + get { + return ResourceManager.GetString("strWarnings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Uses the DockPanel Suite by [Weifen Luo]. + /// + internal static string strWeifenLuoAttribution { + get { + return ResourceManager.GetString("strWeifenLuoAttribution", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to http://sourceforge.net/projects/dockpanelsuite/. + /// + internal static string strWeifenLuoAttributionURL { + get { + return ResourceManager.GetString("strWeifenLuoAttributionURL", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to XULrunner path:. + /// + internal static string strXULrunnerPath { + get { + return ResourceManager.GetString("strXULrunnerPath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Yes. + /// + internal static string strYes { + get { + return ResourceManager.GetString("strYes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unlock. + /// + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unlock Credential Repository. + /// + internal static string UnlockCredentialRepository { + get { + return ResourceManager.GetString("UnlockCredentialRepository", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unlocking. + /// + internal static string Unlocking { + get { + return ResourceManager.GetString("Unlocking", resourceCulture); + } + } + } +} diff --git a/mRemoteV1/Resources/Language/Language.resx b/mRemoteV1/Resources/Language/Language.resx index ea355473b..4578e09fc 100644 --- a/mRemoteV1/Resources/Language/Language.resx +++ b/mRemoteV1/Resources/Language/Language.resx @@ -2595,4 +2595,16 @@ This page will walk you through the process of upgrading your connections file o Could not find external tool with name "{0}" + + Create a New Configuration File + + + The Configuration File is Missing. + + + Import an Existing File + + + Use a Custom File Path + \ No newline at end of file From 8319ec988fc9bad2baeb81f04148ea13aaaccac6 Mon Sep 17 00:00:00 2001 From: Bruce Peterson Date: Thu, 9 Nov 2017 23:03:16 -0500 Subject: [PATCH 2/3] Added File Not Found test --- .../Connections/XmlConnectionsLoaderTests.cs | 21 +++++++++++++++++++ mRemoteNGTests/mRemoteNGTests.csproj | 1 + 2 files changed, 22 insertions(+) create mode 100644 mRemoteNGTests/Config/Connections/XmlConnectionsLoaderTests.cs diff --git a/mRemoteNGTests/Config/Connections/XmlConnectionsLoaderTests.cs b/mRemoteNGTests/Config/Connections/XmlConnectionsLoaderTests.cs new file mode 100644 index 000000000..fa83cc400 --- /dev/null +++ b/mRemoteNGTests/Config/Connections/XmlConnectionsLoaderTests.cs @@ -0,0 +1,21 @@ +using mRemoteNG.Config.Connections; +using mRemoteNGTests.TestHelpers; +using NUnit.Framework; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace mRemoteNGTests.Config.Connections +{ + class XmlConnectionsLoaderTests + { + [Test] + public void ThrowsFileNotFound() + { + Assert.Throws(() => (new XmlConnectionsLoader(FileTestHelpers.NewTempFilePath())).Load()); + } + } +} diff --git a/mRemoteNGTests/mRemoteNGTests.csproj b/mRemoteNGTests/mRemoteNGTests.csproj index 6a7818fc4..da1745ab0 100644 --- a/mRemoteNGTests/mRemoteNGTests.csproj +++ b/mRemoteNGTests/mRemoteNGTests.csproj @@ -111,6 +111,7 @@ + From ca369e2df5b382bdb6fa06d0f27ed35a0d7877c1 Mon Sep 17 00:00:00 2001 From: Bruce Peterson Date: Sat, 11 Nov 2017 08:45:20 -0500 Subject: [PATCH 3/3] Merge Conflict --- mRemoteNGTests/mRemoteNGTests.csproj | 324 --------------------------- 1 file changed, 324 deletions(-) diff --git a/mRemoteNGTests/mRemoteNGTests.csproj b/mRemoteNGTests/mRemoteNGTests.csproj index 8207f1124..6937cd196 100644 --- a/mRemoteNGTests/mRemoteNGTests.csproj +++ b/mRemoteNGTests/mRemoteNGTests.csproj @@ -1,326 +1,3 @@ -<<<<<<< HEAD - - - - Debug - AnyCPU - {1453B37F-8621-499E-B0B2-6091F76DC0BB} - Library - Properties - mRemoteNGTests - mRemoteNGTests - v4.6 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages - False - UnitTest - - - - true - bin\Debug\ - DEBUG;TRACE - full - x86 - prompt - MinimumRecommendedRules.ruleset - - - bin\Release\ - TRACE - true - pdbonly - x86 - prompt - MinimumRecommendedRules.ruleset - - - true - bin\Debug Portable\ - TRACE;DEBUG;PORTABLE - full - x86 - prompt - MinimumRecommendedRules.ruleset - - - bin\Release Portable\ - TRACE;PORTABLE - true - pdbonly - x86 - prompt - MinimumRecommendedRules.ruleset - - - - ..\packages\BouncyCastle.1.8.1\lib\BouncyCastle.Crypto.dll - - - ..\packages\Castle.Core.4.2.0\lib\net45\Castle.Core.dll - - - ..\packages\log4net.2.0.8\lib\net45-full\log4net.dll - - - - ..\packages\NSubstitute.3.1.0\lib\net46\NSubstitute.dll - - - ..\packages\NUnit.3.8.1\lib\net45\nunit.framework.dll - - - nUnitForms\bin\NUnitForms.dll - - - ..\packages\ObjectListView.Official.2.9.1\lib\net20\ObjectListView.dll - - - - - - - - ..\packages\System.Threading.Tasks.Extensions.4.4.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll - - - - - - ..\packages\DockPanelSuite.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.dll - - - - - - - - - - - - - False - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - True - Resources.resx - - - - - - - - - - - - - - - - - Form - - - SecureTextBoxTestForm.cs - - - - Form - - - TestForm.cs - - - Form - - - TextBoxExtensionsTestForm.cs - - - - - - - - - - - - - ResXFileCodeGenerator - Resources.Designer.cs - - - SecureTextBoxTestForm.cs - - - TestForm.cs - - - TextBoxExtensionsTestForm.cs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {4934a491-40bc-4e5b-9166-ea1169a220f6} - mRemoteV1 - - - - - - - False - - - False - - - False - - - False - - - - - - - -=======  @@ -642,5 +319,4 @@ --> ->>>>>>> develop \ No newline at end of file