From 41e0228c03d2ffc852f4d03c8ced03ef5adbe436 Mon Sep 17 00:00:00 2001 From: Sean Kaim Date: Mon, 30 Oct 2017 13:42:26 -0400 Subject: [PATCH] re-target for .net 4.6 --- mRemoteNG.Specs/App.config | 36 +- mRemoteNG.Specs/SpecFlowNUnitExtension.cs | 78 + mRemoteNG.Specs/mRemoteNG.Specs.csproj | 180 +- mRemoteNG.Specs/packages.config | 26 +- .../Properties/Resources.Designer.cs | 715 +- mRemoteNGTests/app.config | 22 +- mRemoteNGTests/mRemoteNGTests.csproj | 615 +- mRemoteNGTests/packages.config | 34 +- mRemoteV1/App/Update/AppUpdater.cs | 4 +- mRemoteV1/Firefox/AccessibleMarshal.dll | Bin 20992 -> 14416 bytes mRemoteV1/Firefox/breakpadinjector.dll | Bin 111104 -> 104528 bytes mRemoteV1/Firefox/freebl3.dll | Bin 331264 -> 324688 bytes mRemoteV1/Firefox/icudt56.dll | Bin 10438656 -> 10432080 bytes mRemoteV1/Firefox/icuin56.dll | Bin 1400832 -> 1394256 bytes mRemoteV1/Firefox/icuuc56.dll | Bin 936960 -> 930384 bytes mRemoteV1/Firefox/lgpllibs.dll | Bin 64512 -> 57936 bytes mRemoteV1/Firefox/libEGL.dll | Bin 108544 -> 101968 bytes mRemoteV1/Firefox/libGLESv2.dll | Bin 1209856 -> 1203280 bytes mRemoteV1/Firefox/mozglue.dll | Bin 102400 -> 95824 bytes mRemoteV1/Firefox/nss3.dll | Bin 1609728 -> 1603152 bytes mRemoteV1/Firefox/nssckbi.dll | Bin 416768 -> 410192 bytes mRemoteV1/Firefox/nssdbm3.dll | Bin 94208 -> 87632 bytes mRemoteV1/Firefox/plugin-container.exe | Bin 285184 -> 278608 bytes mRemoteV1/Firefox/plugin-hang-ui.exe | Bin 173568 -> 166992 bytes mRemoteV1/Firefox/sandboxbroker.dll | Bin 219648 -> 213072 bytes mRemoteV1/Firefox/softokn3.dll | Bin 154112 -> 147536 bytes mRemoteV1/Firefox/xul.dll | Bin 38640640 -> 38634064 bytes mRemoteV1/Properties/Resources.Designer.cs | 2846 +-- mRemoteV1/Properties/Settings.Designer.cs | 5116 +++--- .../Resources/Language/Language.Designer.cs | 14778 ++++++++-------- .../Themes/ColorMapTheme.Designer.cs | 1692 +- mRemoteV1/app.config | 1596 +- mRemoteV1/mRemoteV1.csproj | 3170 ++-- mRemoteV1/packages.config | 24 +- 34 files changed, 15501 insertions(+), 15431 deletions(-) create mode 100644 mRemoteNG.Specs/SpecFlowNUnitExtension.cs diff --git a/mRemoteNG.Specs/App.config b/mRemoteNG.Specs/App.config index f77e579d8..223ff3f27 100644 --- a/mRemoteNG.Specs/App.config +++ b/mRemoteNG.Specs/App.config @@ -1,17 +1,19 @@ - - - -
- - - - - - - - - - - - - \ No newline at end of file + + + +
+ + + + + + + + + + + + + + + diff --git a/mRemoteNG.Specs/SpecFlowNUnitExtension.cs b/mRemoteNG.Specs/SpecFlowNUnitExtension.cs new file mode 100644 index 000000000..39415f60c --- /dev/null +++ b/mRemoteNG.Specs/SpecFlowNUnitExtension.cs @@ -0,0 +1,78 @@ +// ------------------------------------------------------------------------------ +// +// SpecFlow NUnit Runner AddIn +// +// This AddIn ensures the [AfterTestRun] hook to be fired when the tests are +// executed with *nunit-console.exe* or *nunit-console-x86.exe*. +// For executing the tests with other runner, this code is not necessary. +// +// See also: https://github.com/techtalk/SpecFlow/wiki/Unit-test-providers +// Copyright © SpecFlow 2012, http://www.specflow.org +// +// ------------------------------------------------------------------------------ +using System; +using System.Reflection; +using NUnit.Core; +using NUnit.Core.Extensibility; + +namespace TechTalk.SpecFlow +{ + [NUnitAddin(Type = ExtensionType.Core, Name = "SpecFlow")] + public class SpecFlowNUnitExtension : IAddin, EventListener + { + public bool Install(IExtensionHost host) + { + IExtensionPoint listeners = host.GetExtensionPoint("EventListeners"); + + listeners.Install(this); + + return true; + } + + private void TriggerTestRunEnd() + { + ITestRunner testRunner = (ITestRunner)typeof(ScenarioContext).GetProperty("TestRunner", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(ScenarioContext.Current, null); + testRunner.OnTestRunEnd(); + } + + public void RunFinished(TestResult result) + { + TriggerTestRunEnd(); + } + + public void RunFinished(Exception exception) + { + TriggerTestRunEnd(); + } + + #region Not-affected listener methods + public void RunStarted(string name, int testCount) + { + } + + public void TestStarted(TestName testName) + { + } + + public void TestFinished(TestResult result) + { + } + + public void SuiteStarted(TestName testName) + { + } + + public void SuiteFinished(TestResult result) + { + } + + public void UnhandledException(Exception exception) + { + } + + public void TestOutput(TestOutput testOutput) + { + } + #endregion + } +} diff --git a/mRemoteNG.Specs/mRemoteNG.Specs.csproj b/mRemoteNG.Specs/mRemoteNG.Specs.csproj index 666477994..44bdbf035 100644 --- a/mRemoteNG.Specs/mRemoteNG.Specs.csproj +++ b/mRemoteNG.Specs/mRemoteNG.Specs.csproj @@ -1,97 +1,97 @@ - - - - - Debug - AnyCPU - {16AA21E2-D6B7-427D-AB7D-AA8C611B724E} - Library - Properties - mRemoteNG.Specs - mRemoteNG.Specs - v4.5.2 - 512 - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\packages\NUnit.3.6.1\lib\net45\nunit.framework.dll - True - - - - - - - - - - - ..\packages\SpecFlow.2.1.0\lib\net45\TechTalk.SpecFlow.dll - True - - - - - True - True - CredentialRepository.feature - - - True - True - CredentialRepositoryList.feature - - - - - - - - - - - SpecFlowSingleFileGenerator - CredentialRepository.feature.cs - - - SpecFlowSingleFileGenerator - CredentialRepositoryList.feature.cs - - - - - - - - - {4934a491-40bc-4e5b-9166-ea1169a220f6} - mRemoteV1 - - - - + + + + + Debug + AnyCPU + {16AA21E2-D6B7-427D-AB7D-AA8C611B724E} + Library + Properties + mRemoteNG.Specs + mRemoteNG.Specs + v4.6 + 512 + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\packages\NUnit.3.6.1\lib\net45\nunit.framework.dll + + + + + + + + + + + ..\packages\SpecFlow.2.1.0\lib\net45\TechTalk.SpecFlow.dll + + + + + True + True + CredentialRepository.feature + + + True + True + CredentialRepositoryList.feature + + + + + + + + + + + + SpecFlowSingleFileGenerator + CredentialRepository.feature.cs + + + SpecFlowSingleFileGenerator + CredentialRepositoryList.feature.cs + + + + + + + + + {4934a491-40bc-4e5b-9166-ea1169a220f6} + mRemoteV1 + + + + + --> \ No newline at end of file diff --git a/mRemoteNG.Specs/packages.config b/mRemoteNG.Specs/packages.config index d801bfc94..b12b39af6 100644 --- a/mRemoteNG.Specs/packages.config +++ b/mRemoteNG.Specs/packages.config @@ -1,14 +1,14 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + \ No newline at end of file diff --git a/mRemoteNGTests/Properties/Resources.Designer.cs b/mRemoteNGTests/Properties/Resources.Designer.cs index ebc09adb6..2f7599682 100644 --- a/mRemoteNGTests/Properties/Resources.Designer.cs +++ b/mRemoteNGTests/Properties/Resources.Designer.cs @@ -1,357 +1,358 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace mRemoteNGTests.Properties { - using System; - - - /// - /// 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", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// - /// 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("mRemoteNGTests.Properties.Resources", typeof(Resources).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 Version: 1.75.6164.27544 - ///dURL: https://github.com/mRemoteNG/mRemoteNG/releases/download/v1.75Beta3/mRemoteNG-Installer-1.75.6179.28160.msi - ///clURL: https://raw.githubusercontent.com/mRemoteNG/mRemoteNG/v1.75Beta3/CHANGELOG.TXT - ///CertificateThumbprint: 0CEA828E5C787EA8AA89268D83816C1EA03375BA - ///Checksum: A1E50ACAC4CB8023527E1E7A0E682459 - ///. - /// - internal static string beta_update { - get { - return ResourceManager.GetString("beta_update", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version: 1.75.6170.27478 - ///dURL: https://github.com/mRemoteNG/mRemoteNG/releases/download/v1.75Beta3/mRemoteNG-Portable-1.75.6179.28241.zip - ///clURL: https://raw.githubusercontent.com/mRemoteNG/mRemoteNG/v1.75Beta3/CHANGELOG.TXT - ///Checksum: 1C35EA199F58001BC4EBB164D8B3D11C. - /// - internal static string beta_update_portable { - get { - return ResourceManager.GetString("beta_update_portable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> - ///<Connections Name="Connections" Export="False" Protected="95syzRuZ4mRxpNkZQzoyX8SDpQXLyMq3GncO8o4SyTBoYvn3TAWgn05ZEU2DrjkM" ConfVersion="2.5"> - /// <Node Name="Folder1" Type="Container" Expanded="True" Descr="" Icon="mRemoteNG" Panel="General" Username="" Domain="" Password="" Hostname="" Protocol="ICA" PuttySession="Default Settings" Port="1494" ConnectToConsole="False" UseCredSsp="True" RenderingEngine="IE" ICAEncryptionStrength="Encr128Bit" RDPAuthenticationLevel=" [rest of string was truncated]";. - /// - internal static string confCons_v2_5 { - get { - return ResourceManager.GetString("confCons_v2_5", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to qqv8WEdruAEzSfdnPZMQ8w5cLhsl55V/Vu6h81Ucv7s7OT3vwnocgLmfId8rxpfVBnZwdn1Pdvea0XgwnQKJV5qdrVZEiy694Vv84B3wXjxU1wT72rWu1C5TNLhNEZp9JqjjAxOttIbOFL5X0dM+zI4YrCmTZI2Qt04TaC47MTr2niO7XvQSvjDeZRPnzeHsEiJvxHvBSm9yJ64Iupect0zKIpFPiDuOoHDhFQegUCZ26IdZCX2IHb3pH866rYV+yiAGhqt7pokBHUKURVtN6eKpbYzlDyGPbLRJf/eD13KnlaVC6sbf7YiCP3JwJrkN5mLdnrZbmZGQJG3Sn9rrGeShItYG/vvayFAQ5jxz1Wddixik/1frJOtUCaKW1svh8X9EvJo/RaBwgbTLIWth/WTgT4E+9DAVocdgMDGXrpsulnLTkX8doxeWHmBq2vAOhlYFNlhw2ZL3Yp/fbuVK9OMt7PbGkf3x3nThSf0R61Ip4NRjCzWempepEHoLMeiv [rest of string was truncated]";. - /// - internal static string confCons_v2_5_fullencryption { - get { - return ResourceManager.GetString("confCons_v2_5_fullencryption", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to cpfCUuZuIpTYihGooKKG5eRIZVB8P4bANitHVY57yrzyr9wf6lHlgUKx3Y3/YDYXDeS9uawycgbGSVOCnKmah3zEJ31V3BMlA809AdgQoYV9GFXLhgz8auO0mdcfYo2FP7UYS/I2bAfoNOaLvvgmqamm7Lu5FtvSvqdCf3PmpJAW042BijgkDhqritfDAyBvqUbNtE7yvrJohiSv5Ur7qFMXMIUCK0Fc4o3PXM++exN9XfTrtPAwQpjchxoEEmXBOQVnPB4QIn6eg6Wr/4XgtWYFIbtCCzyA5/L91CsDdKBZZktNSRrJTyMmPYGLn1k3Ted77rsoVUovrhxqfXgErPxDLBFAOA9wAjk7NscTRQJGxbgEU5H514g4U6h9wWlLaFyswQQCIskAbmoBrFJz72X9ooS4IVh1q9gLvCKuqb1VM6tNC0RCcLS5EHpxG6kIVpmnNtSa/0EvwaiSLMskC74TpYJ6nBUpfZT783jTikAFNDVI4eA43mJLEIBvrxBR [rest of string was truncated]";. - /// - internal static string confCons_v2_5_passwordis_Password_fullencryption { - get { - return ResourceManager.GetString("confCons_v2_5_passwordis_Password_fullencryption", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> - ///<Connections Name="Connections" Export="False" EncryptionEngine="AES" BlockCipherMode="GCM" KdfIterations="1000" FullFileEncryption="False" Protected="8LmIO3+MWBY0zTmfjfOEdCGxhTAwnlohb1veTGNZFt6lAYvY2UOzWyjVzkx6V93smpbP0ZOuexN15u7rvwJEjawC" ConfVersion="2.6"> - /// <Node Name="Folder1" Type="Container" Expanded="True" Descr="" Icon="mRemoteNG" Panel="General" Username="" Domain="" Password="" Hostname="" Protocol="ICA" PuttySession="Default Settings" Port="1494" Connec [rest of string was truncated]";. - /// - internal static string confCons_v2_6 { - get { - return ResourceManager.GetString("confCons_v2_6", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> - ///<Connections Name="Connections" Export="False" EncryptionEngine="AES" BlockCipherMode="GCM" KdfIterations="5000" FullFileEncryption="False" Protected="Z1IOT8h7neJ5V7es5Iv63A2WsDG6QWl10F/Rb9ljKxvCseEITty1BfMNgiaVPfm7w61uabQKqu2waDCXUpLo1OZW" ConfVersion="2.6"> - /// <Node Name="Folder1" Type="Container" Expanded="True" Descr="" Icon="mRemoteNG" Panel="General" Username="" Domain="" Password="" Hostname="" Protocol="ICA" PuttySession="Default Settings" Port="1494" Connec [rest of string was truncated]";. - /// - internal static string confCons_v2_6_5k_iterations { - get { - return ResourceManager.GetString("confCons_v2_6_5k_iterations", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> - ///<Connections Name="Connections" Export="False" EncryptionEngine="AES" BlockCipherMode="GCM" KdfIterations="1000" FullFileEncryption="True" Protected="qrOUhRlBLCnjjmfU1r8uwhgIBwZ+D1+trBgPmcQyEnW0xf2adLeOfUhZHnto2NOsMneXDibsS8PH0B1moOyvua22" ConfVersion="2.6">pCvan5X5+bSJy8oZq3QhrYs9zAS4v2tu9/4eYk4GAeB2EDep9Ed1zkshaLP165sWHE9oJ6bHnWSrSr/XXiDGdosvxl+O3hSSi02On9/TspuHhPDuuDb7UY2+mLh/LVoJqAjz2NmK7f3QkID2aanHkHzE/MDFiez8gLU8SdW9RxlSXT+L8MEjIXnq34yDVsfV89tGoP01T84ShTCZpRAQMq [rest of string was truncated]";. - /// - internal static string confCons_v2_6_fullencryption { - get { - return ResourceManager.GetString("confCons_v2_6_fullencryption", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> - ///<Connections Name="Connections" Export="False" EncryptionEngine="AES" BlockCipherMode="GCM" KdfIterations="1000" FullFileEncryption="False" Protected="e/T6ajrPtNNlHreSeD4QBqToTuiqtNACKiPJv7vU+l6TWCu9JNsmL+Y8lJ4aTl5YVcstXpQjxsZ9i8+YV4Gs" ConfVersion="2.6"> - /// <Node Name="Folder1" Type="Container" Expanded="True" Descr="" Icon="mRemoteNG" Panel="General" Username="" Domain="" Password="" Hostname="" Protocol="ICA" PuttySession="Default Settings" Port="1494" ConnectToC [rest of string was truncated]";. - /// - internal static string confCons_v2_6_passwordis_Password { - get { - return ResourceManager.GetString("confCons_v2_6_passwordis_Password", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> - ///<Connections Name="Connections" Export="False" EncryptionEngine="AES" BlockCipherMode="GCM" KdfIterations="1000" FullFileEncryption="True" Protected="d7pvbk1N6aswOmTgjCKkkavQKM2xTpknkdnMgzi+bOPgwr9WirGy82kaQldQ06af7MrZgJwvc9hKAcGxBfYt" ConfVersion="2.6">P9haenvGQ9HxnJSUUY+3SdALKoWQau0gF3Vxk6eCERKJ9G2gi87zhBcMCH+PwSsh/5ohPfOansFvUcDvPeE10slCTVqQmQFeU+daQY4OMk+2Q0UR/rEDRlbjGlM8YKVv2xjLRPRs6AbNJsKLv4zo8T/x3ySlZnuiMiGTGt4Wstfle/QfwNbBeV88N5IPbbKy2FWQf5yOlPtrjgPrcl0cRtRI3c [rest of string was truncated]";. - /// - internal static string confCons_v2_6_passwordis_Password_fullencryption { - get { - return ResourceManager.GetString("confCons_v2_6_passwordis_Password_fullencryption", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version: 1.75.6164.27544 - ///dURL: https://github.com/mRemoteNG/mRemoteNG/releases/download/v1.75Beta3/mRemoteNG-Installer-1.75.6179.28160.msi - ///clURL: https://raw.githubusercontent.com/mRemoteNG/mRemoteNG/v1.75Beta3/CHANGELOG.TXT - ///CertificateThumbprint: 0CEA828E5C787EA8AA89268D83816C1EA03375BA - ///Checksum: A1E50ACAC4CB8023527E1E7A0E682459 - ///. - /// - internal static string dev_update { - get { - return ResourceManager.GetString("dev_update", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version: 1.75.6170.27478 - ///dURL: https://github.com/mRemoteNG/mRemoteNG/releases/download/v1.75Beta3/mRemoteNG-Portable-1.75.6179.28241.zip - ///clURL: https://raw.githubusercontent.com/mRemoteNG/mRemoteNG/v1.75Beta3/CHANGELOG.TXT - ///Checksum: 1C35EA199F58001BC4EBB164D8B3D11C. - /// - internal static string dev_update_portable { - get { - return ResourceManager.GetString("dev_update_portable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-16"?> - ///<!-- ****************************************************************--> - ///<!-- * *--> - ///<!-- * PuTTY Configuration Manager save file - All right reserved. *--> - ///<!-- * *--> - ///<!-- ****************************************************************--> - ///<!-- The following lines can be modified at your own risks. --> - ///<configuration version="0.7.1.136" [rest of string was truncated]";. - /// - internal static string test_puttyConnectionManager_database { - get { - return ResourceManager.GetString("test_puttyConnectionManager_database", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> - ///<RDCMan schemaVersion="1"> - /// <version>99.99</version> - /// <file> - /// </file> - ///</RDCMan>. - /// - internal static string test_rdcman_badVersionNumber { - get { - return ResourceManager.GetString("test_rdcman_badVersionNumber", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> - ///<RDCMan schemaVersion="1"> - /// <file> - /// </file> - ///</RDCMan>. - /// - internal static string test_rdcman_noversion { - get { - return ResourceManager.GetString("test_rdcman_noversion", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> - ///<RDCMan schemaVersion="-99"> - /// <version>2.2</version> - /// <file> - /// </file> - ///</RDCMan>. - /// - internal static string test_rdcman_v2_2_badschemaversion { - get { - return ResourceManager.GetString("test_rdcman_v2_2_badschemaversion", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> - ///<RDCMan schemaVersion="1"> - /// <version>2.2</version> - /// <file> - /// <properties> - /// <name>test_rdcman_v2_2_schema1</name> - /// <expanded>True</expanded> - /// <comment /> - /// <logonCredentials inherit="FromParent" /> - /// <connectionSettings inherit="FromParent" /> - /// <gatewaySettings inherit="FromParent" /> - /// <remoteDesktop inherit="FromParent" /> - /// <localResources inherit="FromParent" [rest of string was truncated]";. - /// - internal static string test_rdcman_v2_2_schema1 { - get { - return ResourceManager.GetString("test_rdcman_v2_2_schema1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> - ///<RDCMan programVersion="2.7" schemaVersion="3"> - /// <file> - /// <credentialsProfiles /> - /// <properties> - /// <expanded>True</expanded> - /// <name>test_RDCMan_connections</name> - /// </properties> - /// <smartGroup> - /// <properties> - /// <expanded>False</expanded> - /// <name>AllServers</name> - /// </properties> - /// <ruleGroup operator="All"> - /// <rule> - /// <property>DisplayName</property> - /// <operator>Matches</operator> - /// [rest of string was truncated]";. - /// - internal static string test_rdcman_v2_7_schema3 { - get { - return ResourceManager.GetString("test_rdcman_v2_7_schema3", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to screen mode id:i:1 - ///use multimon:i:0 - ///desktopwidth:i:800 - ///desktopheight:i:600 - ///session bpp:i:24 - ///winposstr:s:0,3,0,0,800,600 - ///compression:i:1 - ///keyboardhook:i:2 - ///audiocapturemode:i:0 - ///videoplaybackmode:i:1 - ///connection type:i:7 - ///networkautodetect:i:1 - ///bandwidthautodetect:i:1 - ///displayconnectionbar:i:1 - ///username:s:myusernamehere - ///enableworkspacereconnect:i:0 - ///disable wallpaper:i:1 - ///allow font smoothing:i:1 - ///allow desktop composition:i:1 - ///disable full window drag:i:1 - ///disable menu anims:i:1 - ///disable themes:i:1 - /// [rest of string was truncated]";. - /// - internal static string test_remotedesktopconnection_rdp { - get { - return ResourceManager.GetString("test_remotedesktopconnection_rdp", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version: 1.72.5065.32737 - ///dURL: http://downloads.mremoteng.org/mRemoteNG-Installer-1.72.exe - ///clURL: http://update.mremoteng.org/changes-1.72.txt - ///CertificateThumbprint: 1cbd910dbd6e77f26506e7f600736972f700673f - ///. - /// - internal static string update { - get { - return ResourceManager.GetString("update", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Version: 1.75.6170.27478 - ///dURL: https://github.com/mRemoteNG/mRemoteNG/releases/download/v1.75Beta3/mRemoteNG-Portable-1.75.6179.28241.zip - ///clURL: https://raw.githubusercontent.com/mRemoteNG/mRemoteNG/v1.75Beta3/CHANGELOG.TXT - ///Checksum: 1C35EA199F58001BC4EBB164D8B3D11C. - /// - internal static string update_portable { - get { - return ResourceManager.GetString("update_portable", resourceCulture); - } - } - } -} +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace mRemoteNGTests.Properties { + using System; + + + /// + /// 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 Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// 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("mRemoteNGTests.Properties.Resources", typeof(Resources).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 Version: 1.75.6164.27544 + ///dURL: https://github.com/mRemoteNG/mRemoteNG/releases/download/v1.75Beta3/mRemoteNG-Installer-1.75.6179.28160.msi + ///clURL: https://raw.githubusercontent.com/mRemoteNG/mRemoteNG/v1.75Beta3/CHANGELOG.TXT + ///CertificateThumbprint: 0CEA828E5C787EA8AA89268D83816C1EA03375BA + ///Checksum: A1E50ACAC4CB8023527E1E7A0E682459. + /// + internal static string beta_update { + get { + return ResourceManager.GetString("beta_update", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Version: 1.75.6170.27478 + ///dURL: https://github.com/mRemoteNG/mRemoteNG/releases/download/v1.75Beta3/mRemoteNG-Portable-1.75.6179.28241.zip + ///clURL: https://raw.githubusercontent.com/mRemoteNG/mRemoteNG/v1.75Beta3/CHANGELOG.TXT + ///CertificateThumbprint: 0CEA828E5C787EA8AA89268D83816C1EA03375BA + ///Checksum: 1C35EA199F58001BC4EBB164D8B3D11C. + /// + internal static string beta_update_portable { + get { + return ResourceManager.GetString("beta_update_portable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> + ///<Connections Name="Connections" Export="False" Protected="95syzRuZ4mRxpNkZQzoyX8SDpQXLyMq3GncO8o4SyTBoYvn3TAWgn05ZEU2DrjkM" ConfVersion="2.5"> + /// <Node Name="Folder1" Type="Container" Expanded="True" Descr="" Icon="mRemoteNG" Panel="General" Username="" Domain="" Password="" Hostname="" Protocol="ICA" PuttySession="Default Settings" Port="1494" ConnectToConsole="False" UseCredSsp="True" RenderingEngine="IE" ICAEncryptionStrength="Encr128Bit" RDPAuthenticationLevel=" [rest of string was truncated]";. + /// + internal static string confCons_v2_5 { + get { + return ResourceManager.GetString("confCons_v2_5", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to qqv8WEdruAEzSfdnPZMQ8w5cLhsl55V/Vu6h81Ucv7s7OT3vwnocgLmfId8rxpfVBnZwdn1Pdvea0XgwnQKJV5qdrVZEiy694Vv84B3wXjxU1wT72rWu1C5TNLhNEZp9JqjjAxOttIbOFL5X0dM+zI4YrCmTZI2Qt04TaC47MTr2niO7XvQSvjDeZRPnzeHsEiJvxHvBSm9yJ64Iupect0zKIpFPiDuOoHDhFQegUCZ26IdZCX2IHb3pH866rYV+yiAGhqt7pokBHUKURVtN6eKpbYzlDyGPbLRJf/eD13KnlaVC6sbf7YiCP3JwJrkN5mLdnrZbmZGQJG3Sn9rrGeShItYG/vvayFAQ5jxz1Wddixik/1frJOtUCaKW1svh8X9EvJo/RaBwgbTLIWth/WTgT4E+9DAVocdgMDGXrpsulnLTkX8doxeWHmBq2vAOhlYFNlhw2ZL3Yp/fbuVK9OMt7PbGkf3x3nThSf0R61Ip4NRjCzWempepEHoLMeiv [rest of string was truncated]";. + /// + internal static string confCons_v2_5_fullencryption { + get { + return ResourceManager.GetString("confCons_v2_5_fullencryption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to cpfCUuZuIpTYihGooKKG5eRIZVB8P4bANitHVY57yrzyr9wf6lHlgUKx3Y3/YDYXDeS9uawycgbGSVOCnKmah3zEJ31V3BMlA809AdgQoYV9GFXLhgz8auO0mdcfYo2FP7UYS/I2bAfoNOaLvvgmqamm7Lu5FtvSvqdCf3PmpJAW042BijgkDhqritfDAyBvqUbNtE7yvrJohiSv5Ur7qFMXMIUCK0Fc4o3PXM++exN9XfTrtPAwQpjchxoEEmXBOQVnPB4QIn6eg6Wr/4XgtWYFIbtCCzyA5/L91CsDdKBZZktNSRrJTyMmPYGLn1k3Ted77rsoVUovrhxqfXgErPxDLBFAOA9wAjk7NscTRQJGxbgEU5H514g4U6h9wWlLaFyswQQCIskAbmoBrFJz72X9ooS4IVh1q9gLvCKuqb1VM6tNC0RCcLS5EHpxG6kIVpmnNtSa/0EvwaiSLMskC74TpYJ6nBUpfZT783jTikAFNDVI4eA43mJLEIBvrxBR [rest of string was truncated]";. + /// + internal static string confCons_v2_5_passwordis_Password_fullencryption { + get { + return ResourceManager.GetString("confCons_v2_5_passwordis_Password_fullencryption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> + ///<Connections Name="Connections" Export="False" EncryptionEngine="AES" BlockCipherMode="GCM" KdfIterations="1000" FullFileEncryption="False" Protected="8LmIO3+MWBY0zTmfjfOEdCGxhTAwnlohb1veTGNZFt6lAYvY2UOzWyjVzkx6V93smpbP0ZOuexN15u7rvwJEjawC" ConfVersion="2.6"> + /// <Node Name="Folder1" Type="Container" Expanded="True" Descr="" Icon="mRemoteNG" Panel="General" Username="" Domain="" Password="" Hostname="" Protocol="ICA" PuttySession="Default Settings" Port="1494" Connec [rest of string was truncated]";. + /// + internal static string confCons_v2_6 { + get { + return ResourceManager.GetString("confCons_v2_6", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> + ///<Connections Name="Connections" Export="False" EncryptionEngine="AES" BlockCipherMode="GCM" KdfIterations="5000" FullFileEncryption="False" Protected="Z1IOT8h7neJ5V7es5Iv63A2WsDG6QWl10F/Rb9ljKxvCseEITty1BfMNgiaVPfm7w61uabQKqu2waDCXUpLo1OZW" ConfVersion="2.6"> + /// <Node Name="Folder1" Type="Container" Expanded="True" Descr="" Icon="mRemoteNG" Panel="General" Username="" Domain="" Password="" Hostname="" Protocol="ICA" PuttySession="Default Settings" Port="1494" Connec [rest of string was truncated]";. + /// + internal static string confCons_v2_6_5k_iterations { + get { + return ResourceManager.GetString("confCons_v2_6_5k_iterations", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> + ///<Connections Name="Connections" Export="False" EncryptionEngine="AES" BlockCipherMode="GCM" KdfIterations="1000" FullFileEncryption="True" Protected="qrOUhRlBLCnjjmfU1r8uwhgIBwZ+D1+trBgPmcQyEnW0xf2adLeOfUhZHnto2NOsMneXDibsS8PH0B1moOyvua22" ConfVersion="2.6">pCvan5X5+bSJy8oZq3QhrYs9zAS4v2tu9/4eYk4GAeB2EDep9Ed1zkshaLP165sWHE9oJ6bHnWSrSr/XXiDGdosvxl+O3hSSi02On9/TspuHhPDuuDb7UY2+mLh/LVoJqAjz2NmK7f3QkID2aanHkHzE/MDFiez8gLU8SdW9RxlSXT+L8MEjIXnq34yDVsfV89tGoP01T84ShTCZpRAQMq [rest of string was truncated]";. + /// + internal static string confCons_v2_6_fullencryption { + get { + return ResourceManager.GetString("confCons_v2_6_fullencryption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> + ///<Connections Name="Connections" Export="False" EncryptionEngine="AES" BlockCipherMode="GCM" KdfIterations="1000" FullFileEncryption="False" Protected="e/T6ajrPtNNlHreSeD4QBqToTuiqtNACKiPJv7vU+l6TWCu9JNsmL+Y8lJ4aTl5YVcstXpQjxsZ9i8+YV4Gs" ConfVersion="2.6"> + /// <Node Name="Folder1" Type="Container" Expanded="True" Descr="" Icon="mRemoteNG" Panel="General" Username="" Domain="" Password="" Hostname="" Protocol="ICA" PuttySession="Default Settings" Port="1494" ConnectToC [rest of string was truncated]";. + /// + internal static string confCons_v2_6_passwordis_Password { + get { + return ResourceManager.GetString("confCons_v2_6_passwordis_Password", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> + ///<Connections Name="Connections" Export="False" EncryptionEngine="AES" BlockCipherMode="GCM" KdfIterations="1000" FullFileEncryption="True" Protected="d7pvbk1N6aswOmTgjCKkkavQKM2xTpknkdnMgzi+bOPgwr9WirGy82kaQldQ06af7MrZgJwvc9hKAcGxBfYt" ConfVersion="2.6">P9haenvGQ9HxnJSUUY+3SdALKoWQau0gF3Vxk6eCERKJ9G2gi87zhBcMCH+PwSsh/5ohPfOansFvUcDvPeE10slCTVqQmQFeU+daQY4OMk+2Q0UR/rEDRlbjGlM8YKVv2xjLRPRs6AbNJsKLv4zo8T/x3ySlZnuiMiGTGt4Wstfle/QfwNbBeV88N5IPbbKy2FWQf5yOlPtrjgPrcl0cRtRI3c [rest of string was truncated]";. + /// + internal static string confCons_v2_6_passwordis_Password_fullencryption { + get { + return ResourceManager.GetString("confCons_v2_6_passwordis_Password_fullencryption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Version: 1.75.6164.27544 + ///dURL: https://github.com/mRemoteNG/mRemoteNG/releases/download/v1.75Beta3/mRemoteNG-Installer-1.75.6179.28160.msi + ///clURL: https://raw.githubusercontent.com/mRemoteNG/mRemoteNG/v1.75Beta3/CHANGELOG.TXT + ///CertificateThumbprint: 0CEA828E5C787EA8AA89268D83816C1EA03375BA + ///Checksum: A1E50ACAC4CB8023527E1E7A0E682459. + /// + internal static string dev_update { + get { + return ResourceManager.GetString("dev_update", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Version: 1.75.6170.27478 + ///dURL: https://github.com/mRemoteNG/mRemoteNG/releases/download/v1.75Beta3/mRemoteNG-Portable-1.75.6179.28241.zip + ///clURL: https://raw.githubusercontent.com/mRemoteNG/mRemoteNG/v1.75Beta3/CHANGELOG.TXT + ///CertificateThumbprint: 0CEA828E5C787EA8AA89268D83816C1EA03375BA + ///Checksum: 1C35EA199F58001BC4EBB164D8B3D11C. + /// + internal static string dev_update_portable { + get { + return ResourceManager.GetString("dev_update_portable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-16"?> + ///<!-- ****************************************************************--> + ///<!-- * *--> + ///<!-- * PuTTY Configuration Manager save file - All right reserved. *--> + ///<!-- * *--> + ///<!-- ****************************************************************--> + ///<!-- The following lines can be modified at your own risks. --> + ///<configuration version="0.7.1.136" [rest of string was truncated]";. + /// + internal static string test_puttyConnectionManager_database { + get { + return ResourceManager.GetString("test_puttyConnectionManager_database", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> + ///<RDCMan schemaVersion="1"> + /// <version>99.99</version> + /// <file> + /// </file> + ///</RDCMan>. + /// + internal static string test_rdcman_badVersionNumber { + get { + return ResourceManager.GetString("test_rdcman_badVersionNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> + ///<RDCMan schemaVersion="1"> + /// <file> + /// </file> + ///</RDCMan>. + /// + internal static string test_rdcman_noversion { + get { + return ResourceManager.GetString("test_rdcman_noversion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> + ///<RDCMan schemaVersion="-99"> + /// <version>2.2</version> + /// <file> + /// </file> + ///</RDCMan>. + /// + internal static string test_rdcman_v2_2_badschemaversion { + get { + return ResourceManager.GetString("test_rdcman_v2_2_badschemaversion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> + ///<RDCMan schemaVersion="1"> + /// <version>2.2</version> + /// <file> + /// <properties> + /// <name>test_rdcman_v2_2_schema1</name> + /// <expanded>True</expanded> + /// <comment /> + /// <logonCredentials inherit="FromParent" /> + /// <connectionSettings inherit="FromParent" /> + /// <gatewaySettings inherit="FromParent" /> + /// <remoteDesktop inherit="FromParent" /> + /// <localResources inherit="FromParent" [rest of string was truncated]";. + /// + internal static string test_rdcman_v2_2_schema1 { + get { + return ResourceManager.GetString("test_rdcman_v2_2_schema1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8"?> + ///<RDCMan programVersion="2.7" schemaVersion="3"> + /// <file> + /// <credentialsProfiles /> + /// <properties> + /// <expanded>True</expanded> + /// <name>test_RDCMan_connections</name> + /// </properties> + /// <smartGroup> + /// <properties> + /// <expanded>False</expanded> + /// <name>AllServers</name> + /// </properties> + /// <ruleGroup operator="All"> + /// <rule> + /// <property>DisplayName</property> + /// <operator>Matches</operator> + /// [rest of string was truncated]";. + /// + internal static string test_rdcman_v2_7_schema3 { + get { + return ResourceManager.GetString("test_rdcman_v2_7_schema3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to screen mode id:i:1 + ///use multimon:i:0 + ///desktopwidth:i:800 + ///desktopheight:i:600 + ///session bpp:i:24 + ///winposstr:s:0,3,0,0,800,600 + ///compression:i:1 + ///keyboardhook:i:2 + ///audiocapturemode:i:0 + ///videoplaybackmode:i:1 + ///connection type:i:7 + ///networkautodetect:i:1 + ///bandwidthautodetect:i:1 + ///displayconnectionbar:i:1 + ///username:s:myusernamehere + ///enableworkspacereconnect:i:0 + ///disable wallpaper:i:1 + ///allow font smoothing:i:1 + ///allow desktop composition:i:1 + ///disable full window drag:i:1 + ///disable menu anims:i:1 + ///disable themes:i:1 + /// [rest of string was truncated]";. + /// + internal static string test_remotedesktopconnection_rdp { + get { + return ResourceManager.GetString("test_remotedesktopconnection_rdp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Version: 1.75.6164.27544 + ///dURL: https://github.com/mRemoteNG/mRemoteNG/releases/download/v1.75Beta3/mRemoteNG-Installer-1.75.6179.28160.msi + ///clURL: https://raw.githubusercontent.com/mRemoteNG/mRemoteNG/v1.75Beta3/CHANGELOG.TXT + ///CertificateThumbprint: 0CEA828E5C787EA8AA89268D83816C1EA03375BA + ///Checksum: A1E50ACAC4CB8023527E1E7A0E682459. + /// + internal static string update { + get { + return ResourceManager.GetString("update", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Version: 1.75.6170.27478 + ///dURL: https://github.com/mRemoteNG/mRemoteNG/releases/download/v1.75Beta3/mRemoteNG-Portable-1.75.6179.28241.zip + ///clURL: https://raw.githubusercontent.com/mRemoteNG/mRemoteNG/v1.75Beta3/CHANGELOG.TXT + ///CertificateThumbprint: 0CEA828E5C787EA8AA89268D83816C1EA03375BA + ///Checksum: 1C35EA199F58001BC4EBB164D8B3D11C. + /// + internal static string update_portable { + get { + return ResourceManager.GetString("update_portable", resourceCulture); + } + } + } +} diff --git a/mRemoteNGTests/app.config b/mRemoteNGTests/app.config index c1d7119d1..c1e6cc48b 100644 --- a/mRemoteNGTests/app.config +++ b/mRemoteNGTests/app.config @@ -1,11 +1,11 @@ - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + diff --git a/mRemoteNGTests/mRemoteNGTests.csproj b/mRemoteNGTests/mRemoteNGTests.csproj index 5bcf7f8d8..9c5f6dc63 100644 --- a/mRemoteNGTests/mRemoteNGTests.csproj +++ b/mRemoteNGTests/mRemoteNGTests.csproj @@ -1,317 +1,312 @@ - - - - Debug - AnyCPU - {1453B37F-8621-499E-B0B2-6091F76DC0BB} - Library - Properties - mRemoteNGTests - mRemoteNGTests - v4.5 - 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 - True - - - False - ..\mRemoteV1\References\log4net.dll - - - ..\packages\NSubstitute.2.0.3\lib\net45\NSubstitute.dll - True - - - ..\packages\NUnit.3.6.1\lib\net45\nunit.framework.dll - True - - - nUnitForms\bin\NUnitForms.dll - - - ..\packages\ObjectListView.Official.2.9.1\lib\net20\ObjectListView.dll - True - - - - - - - - - - ..\packages\DockPanelSuite.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.dll - True - - - - - - - - - - - - - False - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - True - Resources.resx - - - - - - - - - - - - - - - - - Form - - - SecureTextBoxTestForm.cs - - - - Form - - - TestForm.cs - - - Form - - - TextBoxExtensionsTestForm.cs - - - - - - - - - - - - - - {4934a491-40bc-4e5b-9166-ea1169a220f6} - mRemoteV1 - - - - - ResXFileCodeGenerator - Resources.Designer.cs - - - SecureTextBoxTestForm.cs - - - TestForm.cs - - - TextBoxExtensionsTestForm.cs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - False - - - False - - - False - - - False - - - - - - + + + + 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\log4net.2.0.8\lib\net45-full\log4net.dll + + + ..\packages\NSubstitute.2.0.3\lib\net45\NSubstitute.dll + + + ..\packages\NUnit.3.6.1\lib\net45\nunit.framework.dll + + + nUnitForms\bin\NUnitForms.dll + + + ..\packages\ObjectListView.Official.2.9.1\lib\net20\ObjectListView.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 + + + + + + + --> \ No newline at end of file diff --git a/mRemoteNGTests/packages.config b/mRemoteNGTests/packages.config index ef206d06d..3829543f4 100644 --- a/mRemoteNGTests/packages.config +++ b/mRemoteNGTests/packages.config @@ -1,18 +1,18 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/mRemoteV1/App/Update/AppUpdater.cs b/mRemoteV1/App/Update/AppUpdater.cs index 798f448fd..2e7282919 100644 --- a/mRemoteV1/App/Update/AppUpdater.cs +++ b/mRemoteV1/App/Update/AppUpdater.cs @@ -199,10 +199,12 @@ namespace mRemoteNG.App.Update var constructor = type.GetConstructor(bindingFlags, null, argumentTypes, null); object[] arguments = {result, exception, cancelled, userToken}; + if (constructor == null) + return null; return (DownloadStringCompletedEventArgs) constructor.Invoke(arguments); } - public DownloadStringCompletedEventArgs DownloadString(Uri address) + private DownloadStringCompletedEventArgs DownloadString(Uri address) { var webClient = CreateWebClient(); var result = string.Empty; diff --git a/mRemoteV1/Firefox/AccessibleMarshal.dll b/mRemoteV1/Firefox/AccessibleMarshal.dll index b541db4c252fc2834796124baf2dfb6d51bb4655..c4486e87ae37b30ccc4d4b852f4851224a8d0106 100644 GIT binary patch delta 1931 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 diff --git a/mRemoteV1/Firefox/breakpadinjector.dll b/mRemoteV1/Firefox/breakpadinjector.dll index 717ced02025d2919ccfa27e45082b6eb8d81f1bd..0e41a1ed26eb38d26f9da80349a3574e09c5ab49 100644 GIT binary patch delta 1940 zcmaLXc{r4d9tZGw-(eUGA$w-XAnUxt5K8u?kad)One2wij4YiD!@;@M5R+Yq$}W+m zET@P{7m+0t5++d{OUpPt&$;(L=iWc=pTF<(`~LTRKJm+l7fpyJI{;L%&vgKdK|Aim ze4sra0D?0ycHA%+3dBc#%uiRgrx8ikl0_{L;uxvv@?Mi1#;y8hW>=bTe_X8o=cEfiR%MH zM^*yUN2R}#WZl&+`VpsD%GW2I@ziOI$mtQFPz)Naswhx>cvsp6A`CwS8WoD5Qy({ykzm!Pyaz_KzcO}CDhIM-EXcvgKXvcr=(N7-BshW9V~#juiQv;zzg zN>*NU@~~RI4m+9C5%0Xr|Fi?pJRvsn>`Dp6#_xPd5}%*2SJr+ALqoX8)+a(qu@)&G zmH5Cc+sn~+%sg_nCf10k6>S~#kf!7{*)d4c;c1|2nS%m{|pb#00Ef)8Eupc$*GFp ze;f-{CmoXqVprLAQ2h72tTNoE@M?@%lj!}3G|yKx*2^oM1|bnvHQZZ^?N7x!gn3(` z)(LuE%85P3><6JYP7A{m@m#$1>y$jB78=V<_{##%=w|#J{dX9mm%Wf5R;FsQ^voaZ^a@(Uur(l<{1b80r`+I7o&> z5Z-0XNO=0vFH+qKS@`>)R%PU!$#8?=tx8r5x`wsVvZDOqAN@s+JIzT^X`O`280})( ziHJf`|5<op7R{?OUB@5BHF@zF4 z@|lSd9r-xc#)Xrw*t3nYxb&0 zX5GX?03my$Kaf+gPrvWtyZd{N{)p;rNo0=vv^rAmYwtb!yY^>tJPfP@?1xPV?o{DrJ8C@M;6b8=t$T8Pl9ER&t$vccLa*NBG**kYA_o`EhNwU{T zl6pU>iJwS@Q_=Fz2|aZgdK(`BteFTk)7Gl%W>>0}P%Q6rJOkYSY1AJe06>cWkE6dM zhD30x@WVk#PFQ(DZNZg#04?=z1(BS1fuC+^L)wroUI$Om(r_(c)&r(=Wdx530^k4` z$3cJ(e*}`O5RVrPq|qpPI9yazlsfq@{nSa}!#)M4_P6M5;|Kd zBlS|>A}(0w1`ByLWWsQ=wJ)S-rCD2RB^4?%Zfg4H;jNo?B)AI;bd2 zS8Ny$DjBGcK|Qu<)lJCB@=1w}J8WFlhip)qUreP)RkJ-WkcZea?GAdnh4l+k&CVV} z5;vc;n%%-OF|uPQ3#1TNKc&{vI8XLRQCeJa%={h|PF-m5dHuXF+9eljta!Uc1XD4e z+a>;xLEW_rX0GzmvnOf(y`BQ^EM@2`UE{0Y?%1tZcUJ23zC4-rMV$Ge;p^D>Xf}>& zpK}CW(n6>f^FYlvN_p2Mh3)N!y|uXGvcJ1@%CUz>rVP%*HHr`R4a*4OdPKxw#XHa= zDmrJkR8{`iYS7A+3nc63UTdK28SV`B>N#MSWqT#N=oe8h1*$!-w93uFyvOLC&I$1u zZTU3uE%}hSneCUb5%WTnZm>`jzq7mcn>DFUK{Er^apKHssq*6f$*0u`FE&L9E(CLq zGTEK<;ggj7_M_{Sh)!c^a^Rr-Y#QlUfP@uLW{kAGylr1Lrr54(+9T_-ohR1f>%d>n zPuw@x-y)-kl{Vk?@UPpnDojp~@tScZ#U^!G^QE^=%yNg#k1fB?ftI@1a*39_>ELAl lTK+LkSln8vV5~w@=t#9TP3>yora)y%G&?)|Q0;*v>`!s^OiKU& delta 8570 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 Lnm2&{uj2mzV$i00 diff --git a/mRemoteV1/Firefox/freebl3.dll b/mRemoteV1/Firefox/freebl3.dll index baaf9b10b22e69c3dd54cfe59bb69123d9226b91..cd0554d6450842380485334d1a47b84d2dc2e082 100644 GIT binary patch delta 1952 zcmaLXc{tRI8VB(C{btEvgs~T+7$VGXG-J&{C~KxOgF>XS@0mf!jE1O)PL{F9DWR)q zL#Rk7OB@^;oQBgVF=Xk;Qk?E{?!C{s_mBI>_mB5|-tT|!^GPa}8JNM=9S1<~&}?_$ z5J(Y8E(Ov`fqw@49(Y43fH*yiqlmy@Fc5@691$xNT07M?^$P~r0hVz@NZ(fw7birV zV&?-1rc_kb7@1}PC0AUPD=1pyb|=@bzk6dLNIde|q# zPu0p2Qjy0H$&j%=nMi{4NhEi9%mFfFK-B-&2<;*&Lh^rgCI72SrC326uG&`wj{Qm~ zR=Sj_mrYWgX0?H#J=1|1{mL8kJ)XK}{9JfK?Sc_kB7=vMwd(;2<)QwY z345sL3)eLA(gIwHPnFG57)Z9u!`lbugYgytdiIOeFrFf0=DS0@e`2_ncMQ2a^P65& z`m;wt#TVQAi&1smr=aMo?{4X~C#$GCZyK8#eKC8nn7{9~yErw}q^6vt7TyTX|9@~~^KTa-S5uC?^}@t3x1;$nh|r8c>|FOF^=q3o z8MdpZ8E2_3D_ht7E=kv{Rdy}r7;ZbZG(>F+9c)T79Fr8?ny*_N)fd?9Oatj^%x(&;$FKFWSG5G{JrWL$z-4 z^MYK_9?YtHxzo9KN;k7=MXFkk#LyZK_j$z4BH){~Xq7AOS7}@ohNy=|$`b>{{#sS9 zS;d!)gWT;@NEUVKdVVxKLh12(^wdXHCFQTsA zONmWyA|>DqikYTSg>wGm{_HOug}%ZNU4;PFQR?33v23*1OBGp-|lRHs+etsT^)NC_rJM;eW8r2_Fv805)hUe*_)izq|+3y?r)I>Sz zKf=B_g%EzIXfM~y*kj2*eITuN*7}k)+eX#c=rjfg=X^p;v=oOE+Vmx& zB(r~_rCFtVAEfI&r`Jiiguxjq_}8Q-HCIgLJ^|`BvW!e;hvr+&7agSI#az5>7=i=BsCfrj zZ;$k5`Cy3?LSi_zaO3jajo@g)ruVH6n;(+^b&uwzt@vmgywSYf*-+BdXFtI4w!le} z*j@k3#qa>SlwFwCb#WQqiaR`Wu2C&HplIhrOiym%ooM)jvX2)CmWd41`P5J@e_>F0dBV>3M*LlW{;?{B#F!UK!SIzHLivw|xt4}$gcp%#1Th17*bBoo zV2C9NQlfJNp1Jie>gp(7O6-y#fe4=yRm|o!_B5Vh)7;c8nzk^_1a%xs^7WlHPs)%? zZ2dLpl53~*>9V+T=5D~4wd=Um&}y!T-=Z< z=wz}-G4;}Bq3)EcV%)d5D4bw6n@v{dNm35Yyddpjls$Y8ywCX+^S>mcr z{c;A5x9Ej8&E320;khb}PWfYf%{u;)N7pBBx%R?&TTa`K>JFk?Z|}BNho4=$u)csN zms<4-Z)dXm?p>(_OZn{So)6Eg6^kp9rPZETbv%A~xkM%@M??D9uZ%;knm!|MS{O8K wUOV delta 8582 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 SJcjTO<>#J@K7~WStN1_i&ZW)( diff --git a/mRemoteV1/Firefox/icudt56.dll b/mRemoteV1/Firefox/icudt56.dll index cb842d86052a5408d605591125edcbdcab3a2ca0..103de2c513538d1b50d39b940326e51ce93f64eb 100644 GIT binary patch delta 2584 zcmaLXS6Gv27Qpf3O9%;FLlp@i0R$;uFoY&0Qlu$30SjFty-1Zd5)2HzDPU+48AY)T zqBx*Z?E@&vph!_HfJ(ff7&#n}7})WK$;0W`rDparyn4$uWCpaDIw70`h` zU;qPP2#kO+Fag_uDKG=(zydJAc3=stfHklIJAf^)1NOiHID(yE7jOd3U^n;)uz(A2 z1$)3=un+79ZonOQ08iirynzom01g5+I0SrwAMghOAP@wBU=RXAK^Qm;!a)Rx1W_Ow z#DF6p7Q}&gkN^_F&)_IX0vwPGjsY%60jb~@kOtC02FL_iARFX>T#yIyK>;`pPJlvC z1d72)zyl?q6qJE-PytSX%7!*9--4>>OvGR?2!cVmL`womGtD+_K@=;9oaPeg@P+ae z)%ZVi@HbE{z7FLgr3eZ0C1y#%boA*vRP;adSYZJSx`8H(N)vFdc$|p%&cg|TAt48p zYz_qbDp@j7ii{{tA2rg`r_oV8I^9i1bgMqfpy~bViOSRDP?^7WCH`xdpaB*KbyR>_DWSm-M1M=_uQGjV#+s zbW-)xuxLe)a;UUk)`rBq-87)LYxX zTj2A@S2~f|tv3QIGVXR)5UzIkpfLsS&uQOHp-`QE7?~I@nBJQ$*?iGWgcV|Zxr(k5 z)`(2KE69Bxex#)^XmX!c)c3qOz4AZkcR#CnYN<)|v3taD&k(vF5_%E|%dpKW*WldF zJLe}a6*m&(Qlv5WP@ln39jjH6(Y+X3SYP7gA%l1ydp#XKpSt_Cm*|n`wV2@}_>i0c z@WLqhb8P1iM#ZsQzpV0oGuK~UJpXXE$Y9N}sUdQ0(!shi$1z!M?`^)tE}g!Z zMz4~g@ad5t+?^5M_{r1(hQ9?t!@-*q+M#{Ya5YVUMcXqX*42pJY9iD5_~@zdoxb}{ zrHc5Hz4MoXxq9Ssrvs51>NO*&Q@L|;%OZN-)->%n;?ijI*gbw6kNZ(eqU5?2 zxbP@ZLhfp*%?!EjS|zV>xkrsXytOn`ir~X9iNWQ(|5?6CEuVH1(LWP&>BV95j@dJl z@s#tEqt`|?r?T#pv*znkW3zA36BQX1(I$~)(td+}oQ3;khbDuyW&M+Ou{Pa_<&cEW zYD@1BPwO}KA23z?IN4%;%T!JOCX0Pl=uol^`N2v@_I;bEfBp$jBg5*DQ=w-yTIiJ80Oe z!CU80+Ry2jZ?`CJI^Ui1*iE&qO80}4^~-XlaZ68eg7U9-0tD3CP1_^JZZ5L?2-R~N zNGDYLbx11T+kWSaH9S@k;!=OYtn3WdHLJc`rJkeA96q=;y>{Fx(~4uQWMp_yR1wFW z!4EZ6gz2_#DUzg=yC)S5Ebf&kJnoWindZHXt#gNcRm?RM7e!HhLT|pDYdkT7rCLix z?H0gft{p(A1=i)kriZeZfAF zuUxnf_EyEGx>9N=j`UTT;<&f`x~m>Bac+LvduP9Yh-yAVW}E0LJWmVBe8v@_)Jv^g z`&L&;eKY(pZg~sBs8zjgb)r>L@KI94)HM}OSK61p+DyK*6)inI+cu)x)%^lub5T_B zYeKIttFTON;#6m^dw1(X^Os7yffoHNd*X4XK7Dt|*bOG5{lmV1o6Ilv`Ii<60mqw$ zd}($sGztimk5qgVYpB&g{V6Nsl79q?93M=HHUHkB!{0`Jnj&dRX!Fr(dmZxe%=|0M z68oOOshWQ3t7*M)Hd}jutl)XS#PQSev4*=n>-A?I4O0s%CPc(k6#U1M>$=iHtChbM UZF)^@mm9R$qhRHtx?KhH4`d!%DF6Tf delta 9210 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 delta 8651 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 HUB&+a)rP!U diff --git a/mRemoteV1/Firefox/icuuc56.dll b/mRemoteV1/Firefox/icuuc56.dll index 724e483fb69f8fb9d85a82e645305745b7ea56ec..4d9a4d56bed400dbda5278b3722b71708ff67170 100644 GIT binary patch delta 1992 zcmaLXdpy(oAHeZ_zq{CGo8q{|Y;tR2`;J*C;UGj&vo5Z&+(K?+mGadRos$r&tw@wY zr(8PZni`cNm!pg8Nf%O#6p1=8S8ls5&ts}D54S2 zDy9achCy;sNP^Oq=tJR=k%81rff2z}2YX0IoyfF+tjsK!EXa(-@>VCBTR?24*}tBU z7E=>a|9f}Ef9-NS9U!4t&zeMmAITI8K4#K$S=6y)DHz!?7M9UX{>sz!HH{7C4#S8MAE2nZb^zzqq3+@$vB{lk@)nTLNODc*KlpCsihYOI?rOHuH?y{V)rRTu^e=bp z%PJaAu^vXD_V0N~x}2lu7Yxs)hjR1x6i#@?qhW6KHS?)`26mzJ z%`;_)0ZqteuL7Za_-Vz!HuR@=ztiJR-l+-CKhfHqkEv|m10`g?xoX;aOh@12o7H;D zFE;mPBx|mD6F8C9*Na$s`|H4|*V(7u#3VN7?vw2@iT|4U(Jb!~tM!wipNZj$K3*>g z`5VXz0i(`>`%k!J=F#BB%&Q?ZLO_Y}>YjTh~<()$wX{3XLN)1&*4Eu+B)WvPSgP&*9GEdY*cH$7{)l!oRocZ`xA z*8%41)jK+mT!`5cyz4?LAy_3KYcWD-rjq9o7)LWI#Tf{WJ@y?q{?e~I*>;4oJ6ZHH ztWb3_`j(jJ2JU!4odyv8f&H%zOxL<8%pXEt+Dt3+!(T}H;mX4lwbMh`!6<&O$wJlb zmD0P;PXa3z`#j-w$7XheNB{x+&*343Ab<$j%qH&Uc@>jFp6EkYQr8#&hsKvYp_D&F zSr-|fqOVY#D%I-aPWtzkxQ~uC*ha*;m0)LH);`v#Q&IdC`t>O+N?*Sq9GX&ohVLOTcb7)ahVQ`n@Jp-CjGehr@GYwXTiWED=vB9= z)92s>3i+)9r*q0X+e@qykM}W5z0KC_uAur)Xg;j#6)&ejs+c_&B?-ukH;1*F46~T^ zpvC2cU!F(Xw$EIa9n>k2jolnGp8B~Zk27DDDmdA|N}{my`Rn7(tAz}Oz+dj4-z$qS z)d)@A%30kafN_e&rfSYgX#>`wgEo|RvS!-`8$*kF4zCiwH)WH`gYWGp?|Uqs+&SH3 z;Y$ls)%%EPwQ&z9pmXht1|+NJmW<0WD&qjycQXsqF!_+UQhQcHQS127TSFKfvS)1E zkE@o(s}v7eKBb9Qx}6(<+vlZrXPQd7GdjHu?iMk|J)HXUs1pu;N*LWsEn#RQsf{%D zZT$i#1asx%DqN1i03E0I_3kbBZEdF>UZ}qv@qJ4KW8;<9BBKml`;j2?^oj|`pB!N) zs+DCBk%AO{Kn*wL?`KHYihj_^^GOyBF6>;9d)h1AAuV77kKV$oByppV@j3=wtlQU5 zSxwVR#Bdn&S`rdmg+>$}EfpVe zCh2JXyMj10Q%T+}HpGUkn3jL_%UdjQCON{!82nlcfC7Z;K!Cv1hE^46q^O1Q`7zcE zhCm>oNBvztIxjlvpSKF25hx*upyq^6+BY?KS2ME@+%s~mG|j1YuMjI&&Ml3{3b(V( z?=4?ieXC@U9L}9r+Lriz+C=t3TkFubdd5QVvyJ2%T^C_~TJ|%=+HHvkHQBVmp|SJi zNQuj>i2l!>Z<@c*BPD0T$X`#)(Bq5V_oy=N9(l4i*BWR1=$Xr8r`KQ^O%I=z?%i-|kumh}w$1MS+$`K9|qQb1c z;U9O>l6CH$kTqB$5%#v|=I>BlX#WvzeAWO=%B ziQ6Upv6WIJ*~B*W#)iskTUT+dbB!Jva|%9bCBYJHtqYWyYr3%8O*69Y(UsPoIW+gK z?_Vw<-}^R17r&D96h|C?($aI{L8AF{=i#I~&tdJR8rl){e3P=I%42a|=2!2#ayFZu zH6sXYYpfQHUakm2irN4kntP&GK&$Y!&nLk?Fq|<9&Z(8jed+%MnY4h@sKD#H9 W=4jL!(zYYl$)4ZZC=diDA^rp|cV77b delta 8622 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 delta 8563 zcmcI~2{@E(`@R`t?7PU8G4^ddGxltGN0yL1O4JyGk*%4rFApOm?MhKuB4r6>DP>8v zvh;ejk&p<{Dk2sCXDsFIUB2)5j{nbb%;C77=f3Xyn%i}r*LhvH?q=q=dFFCo7_(aq zENvgm1kQx6D1|xnN-?3Cn3&*jCV(#e5y`HcWRWz-4P%Ap(4}8Oj|S7Eo<)NaXn@ZA z4*Iy{FvDSRIA3hq)Ys_N?K>x}GQ%Drzv%0Djkb>}CCfE&t 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 I`oD_*13B25O#lD@ diff --git a/mRemoteV1/Firefox/libGLESv2.dll b/mRemoteV1/Firefox/libGLESv2.dll index 4f7ddc63c469bcb5a4797cd208dc2838007753ca..5e97e24f4e8815cd943158fd5807e2f6e4c9a52d 100644 GIT binary patch delta 2009 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 a4sjjIRyj3g^IW$h+~s54c7DWL#J>Q8nM6bY delta 8570 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 GRs0_icCbqT diff --git a/mRemoteV1/Firefox/nss3.dll b/mRemoteV1/Firefox/nss3.dll index 639efe057d569c439e41559306762ce23e6a9437..91747c48b29f5687fcd34350e107b00253b522cc 100644 GIT binary patch delta 2020 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 K&e71{Rs0_@vB2s8 diff --git a/mRemoteV1/Firefox/nssckbi.dll b/mRemoteV1/Firefox/nssckbi.dll index 69b8a83562e4b42d176d37936621a2be39b9c638..fee9b5d87c5e55c0bfb67c5bb81432999650c695 100644 GIT binary patch delta 1947 zcmaLXc|4Sh8o=>+-!ZQl3^7?o%*Zy4GTxcSHjZ%6LK!u-DAd@>dd3!&cbXguk;vGW zvb7zQLR6MhM5Sd;k+KwWG`4iC2gm)Kd++Dmf9@Z@Kc46FJpX?A^~9I)#A%YufX-t>q)GKsVfH{cN4NB7KK8AAPN>>ts$IV!tR85JRk`c3$V=f z6)YsPpi_v%U05Jd0}H?$5QmzLTvRt7dHD&(|Mwn{#-LzTx(ciWp`9hrGIIMuV~+&| z9nsi%B+ysG+6pEq(D7z;y;>ikS4|YsS?Zrb=Z3fF?s2zIg==qDyJMJ;CR~Yv;FYYwgca5MT z!m=s;R=;ykZswfHUC_-+^moqpE*^Ib#~{wN*SAj`*Rk}c*-c+V^%7xoA4!?+52C8x z{g`iKA8EYgM|Y3qpKI&RhpIch;mC`h%k|sNlC;^&re-Gd=D$v7Z@KO+!wF*DEMaPe z)PobBE?)Q?7WFXWxY%u5_)_W&Bkw7*?VIl5ZMqxYabL@#Ux7?NFgObgIk!7CkBT&= zmiui|JTZLSDU&+WZfJz)j8KJ zzINW#zO;NZW%u0C@Dm*8+0`Q7^9nZ?D%z(rjo0=z)$!KE_O^v7d-+7y#v)4x+Plbl z&+HFjlf%c+t;4=C;`sMQ{+1Bc-U|ut)Xy?mO~7#IF2l0V>VfTM%3aS-7liHebt{OM z@g;brEd~l0ggo{U9+gsw(}_O&>`?E|gNM80EC$F2<1z;WiWR?x-V@^OL6?4wNdV<} zq-W^FWSza_TrB#E9rfB_se+Rm%R2Z<>3!Ju!4a>wEz~@aZ)x83=1A4zJ4c-H+3ABI z8bATUbSAhF@v}3+ALKff%KE+0hRfo&=m4=_RvlsfpP6Yz2H!%<$hOr=4ZLK}o{GK0 zBlj%=dG;09>A|{ZD)j{EJMbM5l9_0>An2P=7;+lu6!9gcZ;gj#THTHidl0@4NOe#0 zKm3Y!{14GveKFSn7x?nI@x4+h#H`%H3PMo@AWFAIa`+WW@~<5 z)%yh^d;!3Bx6`2eUpw&fYO~p7rLL*hcV&kAtPFO9;A&gK38j4|BC1f{KBu>HuEp|l zQ$=^mb9bHQ5`!;n+nzj)aqGi!(B>4=S5c#a+_rrQx)en(rZ_ zb>l};@C+WOkKDc>-^>qr+wp9#IW!pEFH=eWKsSqpu zf-V3T*H!uh1OS-w{{Z?YTQ~@_RTd4ZVo=3rDut(AA=0M*xQD~g<<_M#f{kEPx(VHo zVdO5%c7<#ZJxFRR1V{h^V-S#`tHG)zDtx7Yh=?$jfkAY1G%fgV?`Yi6;D53RU{DeQ z5Jje+fX^|IGjh3(vyM0>Y;0E-j2#@lsuoDM@<7k z2Q=h&GjLE6CU;whTma%=UCf{VQAJ21ak2?@c5hg1RJkl6D$D2o@Ar84473uZ{1NY& zC_e`Om|p-noi{PEti5E@@$q%+VQC=VxrAJk(EJ9c`&;0h52&9Rl_KpNlZ~cC{dQJ= z7jA2M#ud%ax0Gvi-IJY`Z#44UtX|+@s=Ye<=@uY~`bt@S0(oY-9Nb|dB4SNfm_0Fq@(~Qaq(ubao|?Z_X^hr6SYC zSah8_?QAkzqE0N*YPTi4iY=BG4c-~bzSEH7lGPIx6|GHsT>9h{N1SXEry0Wfp7j-* z-xku>}V#&beT?>y;bikL+x})&wrX*>9-=GU!#Ni3rTiJ AKL7v# delta 5879 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 xRkUp^|bG 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�Z-UK#MQI;Y_~ zJ*DyI)zeAK)1=#{XLc9F*G#_%r}QV)y&ZZLHz^UgDm9an!FB9viHf*u(6YZo(^oNt z^&$;Ns~&A+=K^*Ba(EVL>QO@@PE$seYm8s!Ql48E46wx3@DiYxf;csQc%t_p~j5WRYt#(E)>kI0sjK$#7MLN delta 8583 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 QeCubV)X;Ms`d!8U0STm_hX4Qo diff --git a/mRemoteV1/Firefox/plugin-hang-ui.exe b/mRemoteV1/Firefox/plugin-hang-ui.exe index 664d25ea0a2bf3f7e0ab54bca34ec5949d6e44eb..62061d088ddb20522511e5866d93ec8e923ea831 100644 GIT binary patch delta 1944 zcmaLXX*iS%9|rJwo?*<4Ehc*zyX?;}#@2)^VRSelA|{P3yRnsynQ4eR){bFlgy|4D zgd#-NR@<~FgpegiL$pW~Z`XC+_r1>hemEch_w~QO-PeyXfPPYlt~UihWObf7a1eAw zrqF#SV(E|h!X<0j`gwSz zd0ICZ-aj9b$=kb0Q9iC06X-F<*DiW_6c;;&m2&I{F3Ui?axPo9vvKcXP^3-FF+J|V zcTGp+B6`nIhnbq8x#i45#1mJ)8@3~qQ{Whz_L4(OrUdR_WQUP1n!(n8QqC&7ox8lD zQIH<&QGB9o$u(Ax?$KCnv>d8#6|C>HdL1?<2N45=M0gX!bz?sZepsB;r)G3EohrW2 z%PU6I_nm;^b7!yV^`t(5ExMaMqY5p=4jE|vabaxNS&Swb!Ta~}LbFWvT*HeFf?I)TLw-Y~=AP}Azf_c~1r1slZO{T;8$=K6w z9v`<$120O}Y*ap6Wtr?aw>MLF_$0fMOlO9iXIrV&Px>SAEq;X)(JOPI@SeHAGyK$7 zgkUR#7Ku!c=+i4O-A)s9!yTOy8)yNHEM)ozldnV{4)nT`DiVkx=X?!g8e%vu{!}f^ zDwKL+%E0ll^V7aOn&lMs7>zX@QYQ5->NZ=H1Ri~@v;x5V{6}X_uQZc{)|22@owTm| zqOY9YUGaz^eQ6x|DkAQg?nc91iSDjL&;9GZj=0iIQdWsr%G{q_^9y5aSywr_|s>R0YZ<;Wt|8JU4&GGK@;9M6OOZ56HG) zgl|E&hUu(yiw)-ZvgC~WRNpW|NVs+>nq_@6j_-r{G==7^Fed2tV2G~mse)5SQ9f~1 z4f*r=wIy3Qb;zprLkaFJ_JclWmIUBibtuIw?_77bVl3K6BlRvpj#sDTwa2 z3B_?1)XUOA<3aQ<_b&(V!}Mf>X+OEC^d!hs4vy%!6MMv5Wi;%R593<5o9H zJvxA4k9qLDFXO(;*9^~( z6}?=|Ol9k-lSb)vOSTtn>2^wHrYA+QaOQh~iT2`1gKizxZbgm{jrD57b64Ia_jH>y z@_veb52aqrBLW_)s6K?hTa#t}?meJpCl#CRLTbC#c7Y_BBs_#;f?t0a^%(>JNb{dK z`a5DMgrJTX9F!M?m7S|%Cv!nXh5sms62yuBaEkyDATyjP&e+Jvn_b8SZRy$wv+cJ{dnlBUWwDXH^>#D&g@h*2mvvuAJ>_%qR7=MM*$~^W>PsFTWz$aRc{@q9 z5gxO>$x(v`H|1=G-q-SV1C}$-vaSdC$eD0vFJ`cr!xO6NAD%Z~wMFevJI^ zx#THRQ2OR6qrm&YBFTnizqJ@TH@>={p@^-j72j)CR35tIGZZ3tX|SScMcP?c{Dyj{hZ>Ps$5M>Ewb2Xch}*%zJPtZ9eshk|CT=q p=*(5Y?7JAdb8B|l*0?0AHE(y~rJy}c;&Ifn^VSWcXY(du{{kL8Qtbc$ delta 8574 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 K$19-!tN4Gtzn}jA diff --git a/mRemoteV1/Firefox/sandboxbroker.dll b/mRemoteV1/Firefox/sandboxbroker.dll index 201dccf0f9bd8d9c6ffff465537e10f7142d142c..ef4ebde2f59fba611d27975b8da1603f91956edb 100644 GIT binary patch delta 1948 zcmaLXc{tRI8VB(C{bpe>qG{|gVmP*$-!LY0MOjjIV;>H<&sPHJmB7CTY^ns{K2!}iNf-h&YkfSdnq+hN90P{>Pu$xlAZ2oYnIh9q5e!}h#q zoYAD6ySk#2pB_dp3M`#-i$k*LjWUe|)G`=#Km}`%hwQ z=5Ke87G3P>FGAJz214NTef_-RPfUc9~s&)i<@N>t>ew$hc}nA zreYEv@KW4-^gSNN5%ikCF90zAppn-n7n&R; zzMY2uazL-fPpbILwu;9o3RlJ?N28c83|H#!%L_X84F=V&4!f~-o?kiy!T}iYr{clc zAOH(JK*bzlc$UkC4r)UcsXq~b)9*Ijpp@_2oNJ^{(G?nYbqX!9nf@bHPSZ23R*|ue zRgz1un);NQvC?;-J3}mP`mPoB*oUpJJtupIQY55r&Bbu{G%!WJ*e{b({R=7MtcNgE z$L3`IQ7^PFv${TSChu0sdQPomb^E>q&u05)zNh98@by}>dX~>+Po8?5l&?&e;b8; z2Y|y3IjGk8#~69F&jlI^PZwX@m6;yfL)v{D-6)8|mXDbY>G9+p3x%xSZvyMQ_Nso) zGao`n8R?y?-3T8)XXCd8rTI%|I8s+&DLC=AWrY@ss`#ja{+S>oqP5mK?y=rBJ=2n6 zYkR;poFhrQE4s>bIhuPWkC>#_&e>kFW!d4)&5mF+;Os@jcze-tlE8qwO`Y$X%pF}h zD3^Q1GuKE&ZI#23LO= z^%VpFNcXQe`Xgd!6w*Kz4yqtwrRS=7XX$Wt)&DApMv}MuaEl62A#<`B+0?|;hgU#{ z+p_dgQU)jh0kC(1fDBm;QYlkPQ3z);V=PFd#Kc5m)bIKc8PQRH>?(kSA=n_SCs;Pd zx#itbw1IAO_djg%jgXzitpZM`go9UCS$Q;{8{QyJP)o0UF_ovH>dnj~P6haV9Sb6@ zx90Z6M6`Z!VGTeM12uaQE^XY7z~X&4%^X-#wNOA_Sw4fq15wSf;xC55h*?doZr-y2 zt)QGx32_Ov=xA^8^XUbl`aWQ$dCQPe3Jkb3!+M#Z*4cDMdHqz))U%Pk) z>x$TMd(%6;SGkP{v+y?&Pf2IZ_HgoU1Tt}SZIYU1;f}AP%C!XCJ?ebXgE6@Da~%s$W@KeA&oo?!J9F!Ty=%LY?YVn5{Hs4#&}BDV z#aQ{%O;_47Jm6m2OuzT9+gFCPs%Gx)E1I+GJrK8ZIZLU|y=boXk&~?hvVo92lA)Je zz_S@NOizt?znH*unkdRFzV3ow<*&DPxGiVcjC*z2hIg9mXax4T1+5LrEgB~T*8$?R w-ugR_l4x`B4;D8Kjc9J&W40?zV&#d{8biECNP}FMQ>Z20z+vL--C5Yb08YtNqW}N^ delta 8578 zcmcI~2{=^k`@dQ2`x4p5zH?^mA$doZP?khw8DlVIYi4X&4pRuxqKIV4k}V{ZvV>4V zUTsuF3sNfLC5rzUOL=>j@Avv%|DWqRm+Lv_xu55rGxz6nfA0I4zG(L78ulu87@TuB z)dTh$oKEs+5iGt4M!VqGi(m*REpa+YIyyQyoDQH$OfxVm#+k*Ng zaUDbiC?W|^5g(z;Ar}FM!Qos{sqdE}I(F}$w8#v3#PCfIVEVv^9T05b!^ z9?8H9cQQh60eEQxCSEoN0+~V}`J=G7KmwW%;Gx}Si?G7t1-`X7%mO!Eqy@+@mg&5$E76(LWj}g55>yP&m{h)1det|@P zZxq%D5EEcWW6&538d&{v5@5#wXpB05QPJ0SR~% zHh>fuKw8@m094oZlUsWZJ*Mr5vfJ3wjz9_~;t6DEZgbJ z9mWEu!eDe)%deU5wMZA?VHuDKJ1yy;81UkT>>VumP;0ZQwG+6+*BYFHg~?!R@?Pzn zowy#}M(LJ(T62~TK5sSETyx!6`cRMCPQBlad$BxZ0csMlM(KWrSUE{p*6OhMRrJu3 z4GwNsR61v_OdqKv?3Cd%l4V`ocl`-QP)~7zlqFoM#dhYCTH;LNY z!W+>ZHhr(&WMLFspNSxmnX6IdJg2u#ojHKK~~u z{ZB{&H$!O+%K%#EPgut2ZeZEt-?99Q0~$~;tx|{5zd#vW#j+jI+n+$9;aTH9;`tJu zRoD2&Evd`K=C?Rj@;>8O>{6@FKfj{PxvSlOB~IVYo^wkt(opGpNm|-q6E2L^`JQE5 z@Y@lrh2*)9txDLIoB^MjlpT9M#_H5_w}VnMo{pclU;=hK#-Oe!ao*B zz&KaAW;hjJl(*&(_?Y$_r?=Ba^a0O4)-$Hx$}0ZwGB7OsJjRA)llM*&KMQJmrnCd(6NPMlWB4lx$@c~VRXdCuXCN!pjB-Z+Q{ z@0wrS*4{p;&e}hnFFc#nGCUQKh0^(@Gs^NCH%K&$84fGlMZ4&$1Xmx$Cl4*@dAdfS`F-DfH=($DdbjwABw_7GBa|c3XsP}c) zeF-0iXLXnwzvfwGS-koib5B3^u{LjxdHMoP--rbMj(62BtKSWwIu3L8oC7H@>JAJy zYKvn-$3km+{XLGnOC|;@N>yqZOfr& zZQA0lQjfcQHmI@53sYB84X=LzqL_IPzdtDG{9vLGa8OP#H>`gE-fP}2>4Ue+Y$Q_3 z+eP)kGb3#cA_K@EfJ#3A@zw2hzVg-Uj~dcHn|&@tzT{e`L+)n2Vuh4Sw?y*; ze9&u$v1OP-4kmNus z0CKd+2ws{bSX<>!iUnm9MDYnA5h-D-(nJ#yCt3haoM=MQ1PZ&KLm&w958O~v|KuR# z-};uU|9MNa6dM7I*(JQGTzPgnH}6Dl#VQFrPKIXDYXHEK(_87N#f5Kaj=Kk>A_ zWV=srK|-!%xxf>JgSRQtnd z>9pu`39@%1cOO^zkf$px*pw-YPS6j{Jl-E#q>C|+B0S4RV5@7tW#?Q!7dX3A+Ulhw zu+u{*Y<|YFW$@)*sYlx>`{O~I+9=YIW&W7L3Hh_^!~0P#rkJ{K@f#H91ih?%f64kZ z!TXCeK>V!=p(P-QZ=e7JH6kB(wWOfML56J5cJ{7$qs* zsW^pBA^1b&2wW7Qh111OC-RLQ4WZP>Y%4SE5q`C}gL1wsUY-pjJrApO#E)P>?{@fOvvxb}uwBIj#|G{Qfz`DhQSSY9zDIndteUD?eCkuXC*cl z^ou!55V180@gFj3$GtBGG`)OtMql>Y%SrtMwl}QAPnfn(6$m{*8nb`TOR)RB|CB_d zyr23JzR@GYTsC};CXCno-Egk_7++88g4_&+Dw7J`x+N2F>cfDXtdNPM;z}iY_$+U^ zldVoiR0n$MR<`6~D%hZ)^xGmDUB6O{ZcS43xvhEd9RTtC3rL*aS?77KW6}De17gTz3 z1DrH&W@2N)2KYktre^?D4$G|8!;EYU#svRh0%@a~MzFCNxa_*hRXz4>SCfzA-Sj(kv|p-SzKTru@16`a$PHjlDwwvnO+@$jdH zUSID#gCCkS;A@cV$3IWs?>M11fWB?Ng0{YK-)Q7wDho4*m)e-rD;0b@abTtHZC2dS z`M8N4-zy*Q{TxN~n0K}CV=2&3f9g*NB@U2NlaDjzQ|`L$QITMJE-L{$oO4BJeFuCwA|kL zKJCt#;^n$QS?PU#A>Gr+KZYhmn3xz;lTU*=6J^@_6y;Pyt?MI&w$HpUjNPhqk)>g; zk{$)Ky)lO3I%gKG(4nf-J;biT%{P&u*6Dcv;q7ue2bSx5WSf+2?V?@^6}f<_K#K6U={={-^^d9d6DnK(Q z7+Z7a?M7lsg%Z=rKPM(gRsU^bqCrEH7fDm+v|h?u^_@Ig$$6stcMMB!(KpSiD9M$( zIfwtm_*9POtw%Zdy%(0iFa%uahW%)>{5l15^N|Tu>ob zE>7mx1o|U?LMk7>Zs-e0(F}QzB7o43l=+t=1lZ6fp^&=(Gk}SK!8?WxhJ-;S0xQ&j zK*C~bwPA32+Qu6n8H6&LIBk0})PwlTYClujpE4Sx+xbd~5ltG);?X;jYvgj=g$oo; zU1T1VxlhQ^dWk65TX#LX$=zT0!kbfW!E_3}%{x1USF*iH=H2#g-ws*RNAORn35)5P ztz>}b#|_7sUP{$IMiqqiM}Dxw>A`b2hc#QNBPCZtFpXXsdUf{&+uU`!cd84`og47V zD0n<#|7J{cSF}lGM7i6%YyQ`Q-!hTDw%-K{KPP_4;T*XC&H`mPC}AuvGUlP(z=!AUiIz7 z7g@fQm0BZjYdrg|@U%=e33|;|!OD|vNw~SF=p_&z#w?`)RK|M{r(a#;a~Nzhfzw)w z|BX=hR0aPpg*wFBx@c{*u7;Mn7EP#c9a)M!RsA7Seym8| zLxUQ1rH5*j%ac_``@QS#FhsIsQ(~WlSw?Fgd8tcpyMKOG*aTb99~;}>cKAz>hsI6i zL{RMH$0?0I?#{FxTZ5bGPll|9S@m{-7CEi5YKyh}A|%a_E`67=u2I<}A+6v8u;&y$ zndPb4+~b@>p;=9}Tfg}~0mBiaK4?ES%e99B+U ze|@@t=u@lvb?e#$=;5f^ty%0#9Xf8!KJMob+rd<^%Lp@70ECbPQ*1H z_n9MVG0*e;S7d?oxul^4hq@~U*D96TuLr|F7d}zSjN?-z{qb7;gbT9;@5@^!Knky| z#d;Ee+X7Vh?)3%?k{&=nZ5M!*Mrxd^?a7KweE+us-gAv!T>xi5Iae`PK2COnU79MKo&;Y&c_ zD5yVuGLTj@ZoKAA?}D3w**(q-7Ps&ll$oL4G#w+L^Ya!vQi)&T$L1y^0@Tm2v-~G7 zexc{pvW(w1W7dmJV-D<#b&X{C@QiD>j)?2aA{ly%)0mbCy=j9XV`gVY^F)RFUhwNz zGv{T_GwY`aj}B?YD_Pv~d8q4UkSp6cqkCG^ri>aM^|;sR%`1dMATgcktE*!X%gYlC znLGLUby!>-{_yBL0;eBq5UZWZo-I*0x=_vc+Fw52xb2kCuuh3SSdO*w+}S%MUvglE z9FANNm?*pYMfHHEKN-D^=SIUd?l+MqV{9_@k`rdFQoX|U5mOH{MKiw;tmkt3f^yU< zKTlGz=NE`s31N4zDJG=Xo?1MW^D<&O38zA$+72D8Z@X`7Q673KX}nWe%!1qau7<5# z4~t7qY)ispq0pIgT%a9hDEgRJ&|s~P{1Q&J=~%JO?F^o{LNRa8D-5b?C4sS>X`B%W zgt-*#UXHS%!f4&I?zc7Wr3EVI^UR5xg*S>s9lCz;)U2dl#lknmu0^VC?x#u%`_%U> zwVx%E$~AV&N+R>(m4kL&e;djB^ah*fZLR)$YH>U#q?lWTsd{A4JpZ6W{MolpLfbR2 z_}5k=Au6MU3=$D3WXe3o3EL;VB;L#sR^q5ye}@?sb?&Ag9mDqO$z5E!1AR(!%^!lA z)8XyR!b~shwO_?7X&=LSpt{EQSr8_deOshcrSml2)30PoR$PcQoF>??6afdX%^nwt zX8%S?oH*)=rqXYN&I{_sg%JBo?0aD%;nwCBx@oxyFvnsg)V0Zjh>|hOUlYY;P^}q^fs* z;~7XuaKucv->Cnp6k>I*3%d|dO?&)qrlh*-t@$XYgYU-g)O%e%1- zQr)(J>#fxp4`#ZZZ=XLEcEcB$d&8KN=TN-^jQd8=HN=0yb|vOtQ})?$x8I9zg!@&C z*|ayutdZ%3fsx|q{@!CLvAwca4ka6A(VrJRoS$dLMLh9jA$0zw!uJbSPuueAN#xU3BH}_ts$UaKO6tKtjpF%-Sy&hI;NOA zxTQhKp~U_fp$G-PZcgV)6CQ;bIkTk4`Lv8O8ttc) zOJl1nY%7(Xip)Lm=Y(%g z2CJZe(VYt7a*@uiRuJj=z3LJFLE?>`CXPvUswD4@(b4P*@9-u@`f;*BNVEDMy`x@B z1G`6&MaW1#WigZKu#=5LmsDqW(D;8uL6w*Qo}`QhZV6*(Ty PBrxuLW87KL?<)Qu&pxw5 diff --git a/mRemoteV1/Firefox/softokn3.dll b/mRemoteV1/Firefox/softokn3.dll index f194b3421b9f07e113b9f68747e61de61dcd0a27..a125f8e6e8b6a195e5642fb0169a2ba8cb31ff78 100644 GIT binary patch delta 1945 zcmaLXXH-)O8V2BdZ$e0bU_l6?CPbQuBsY}M1qP)U5EzI`3t*&IDaHax2n?toU4uka zkfsY#28J#K#u2HGq7Xnqr6@)O3sMx;b7ptX?EcuF-+R9I-+LZz9p(`iQ|$vH(hHy* zCTIycp%Y8Nlu{6EC7_M^Dckht<`GsT7@mo$wCIb{O|pck_RBU7W079$&>4B5)pxrLQlh zlXCQwr`bX%w0Al%ZE)8rljx~^(vL0@@4fo$2qjuXkhkjv^KtNCaUp+Sd)+PvNTx;B zE+yuV?;3XKH&QzX?is1-7@NO*fO_P_xO-rj83c*=>}LXYJkxJOPH_nBs1acKmU)io zl90cwekCPK-3BHuH6Zyb`LhoN?UV0sQ z>RwK;_}ISa)$~Oj!9%^SkLq6g)He?^AIl>Cg!KHOuq#mbdE0b>CZ{F6)PINk>8W7X zT+PJ?`c#hEOqDW@e20}&m*?n-gS-=7%ttOIIlo|FPsMD+PMku9rUlBq>#0}GUaLs6 zT{<3p+J*jU{f6I#trg2<4;FF_Htbs)qBg{|gV)pSx!aGn+^{%I8jfvb+O#(h;;BfR*)p)C+D5962jAw z6FB-tX=;>X)L4mqo}ynSy$0Fl69hMQ?quLi`F9b&@v$`M$P49p5McO@ygWVMK$BcL zizqszdD}~>;M}&7ZmvSs7||n*Vi(t(B-W*r(7GY`#sLgArWg;82lyoOjkZWTFOH`sg1gQuu7RR zx4paZF@GZ&mPh&A$csg!y^h<_s-8hm-yJhF6Jc2^+hsX6YQ)8Co{o$B8VYFQFnBkBne+%uZh|{wqw7A?_Hkj7$ zuGUdVo^?DpB2b>Q^4f$V7Ig+nXb8=OCuf?LUHnlci%OVmH4zD;vfA+*XQrWFMT)2T zGw|IZguK6`t5742XgP6QH>GOsz=Z>xgUUvR$FT$i?*nqY^;$StsFk}7FYsXJjxHbF zoRj66VwLP|$|Q9%t7Yk7h-kdpfL>e0CF6G=K-Git(dmw~meQ8l(Q8^XSk4 z&R&$1779dyJOc=nq3nc}3Kh8ufiW?W#$+;!#Uh3Mr5}kI5%%}3f)W6d2LZMQt|!>t zC3&vJQLOkmf2}sNPu#im2|DT6`|HHj9(tiQHiP z{0#lv$>&`*Y0ZOPl?L+gNl0$PbiYybcN delta 8575 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 KCLf^xtN4GtA(@;2 diff --git a/mRemoteV1/Firefox/xul.dll b/mRemoteV1/Firefox/xul.dll index 5fb67afdeb9b54d193c99082a5830c1a6ca73cc2..7dc254e24d49958fdbb5c444b014a369f43af318 100644 GIT binary patch delta 4630 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 Va-Mj-nX=!jd=8Bv2l!ta{s%RT_+9`2 diff --git a/mRemoteV1/Properties/Resources.Designer.cs b/mRemoteV1/Properties/Resources.Designer.cs index 84b6fe233..0a65f4942 100644 --- a/mRemoteV1/Properties/Resources.Designer.cs +++ b/mRemoteV1/Properties/Resources.Designer.cs @@ -1,1423 +1,1423 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace mRemoteNG { - using System; - - - /// - /// 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", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// - /// 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.Properties.Resources", typeof(Resources).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 resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap _Error { - get { - object obj = ResourceManager.GetObject("_Error", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap _lock { - get { - object obj = ResourceManager.GetObject("_lock", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap ActiveDirectory { - get { - object obj = ResourceManager.GetObject("ActiveDirectory", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon ActiveDirectory_Icon { - get { - object obj = ResourceManager.GetObject("ActiveDirectory_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Appearance_Icon { - get { - object obj = ResourceManager.GetObject("Appearance_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap application_side_tree { - get { - object obj = ResourceManager.GetObject("application_side_tree", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Arrow_Down { - get { - object obj = ResourceManager.GetObject("Arrow_Down", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap arrow_left { - get { - object obj = ResourceManager.GetObject("arrow_left", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap arrow_out { - get { - object obj = ResourceManager.GetObject("arrow_out", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Arrow_Up { - get { - object obj = ResourceManager.GetObject("Arrow_Up", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Bad_Symbol { - get { - object obj = ResourceManager.GetObject("Bad_Symbol", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap brick { - get { - object obj = ResourceManager.GetObject("brick", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Bug { - get { - object obj = ResourceManager.GetObject("Bug", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Chat { - get { - object obj = ResourceManager.GetObject("Chat", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap cog { - get { - object obj = ResourceManager.GetObject("cog", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap cog_error { - get { - object obj = ResourceManager.GetObject("cog_error", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Collapse { - get { - object obj = ResourceManager.GetObject("Collapse", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap ComponentsCheck { - get { - object obj = ResourceManager.GetObject("ComponentsCheck", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon ComponentsCheck_Icon { - get { - object obj = ResourceManager.GetObject("ComponentsCheck_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Config { - get { - object obj = ResourceManager.GetObject("Config", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Config_Icon { - get { - object obj = ResourceManager.GetObject("Config_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap ConnectedOverlay { - get { - object obj = ResourceManager.GetObject("ConnectedOverlay", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Connection_Add { - get { - object obj = ResourceManager.GetObject("Connection_Add", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Connection_Duplicate { - get { - object obj = ResourceManager.GetObject("Connection_Duplicate", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Connections_Load { - get { - object obj = ResourceManager.GetObject("Connections_Load", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Connections_New { - get { - object obj = ResourceManager.GetObject("Connections_New", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Connections_Save { - get { - object obj = ResourceManager.GetObject("Connections_Save", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Connections_SaveAs { - get { - object obj = ResourceManager.GetObject("Connections_SaveAs", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Connections_SaveAs_Icon { - get { - object obj = ResourceManager.GetObject("Connections_SaveAs_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Console { - get { - object obj = ResourceManager.GetObject("Console", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Copy { - get { - object obj = ResourceManager.GetObject("Copy", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Delete { - get { - object obj = ResourceManager.GetObject("Delete", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Donate { - get { - object obj = ResourceManager.GetObject("Donate", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap ErrorsAndInfos { - get { - object obj = ResourceManager.GetObject("ErrorsAndInfos", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap ErrorSmall { - get { - object obj = ResourceManager.GetObject("ErrorSmall", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap exclamation { - get { - object obj = ResourceManager.GetObject("exclamation", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Expand { - get { - object obj = ResourceManager.GetObject("Expand", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap ExtApp { - get { - object obj = ResourceManager.GetObject("ExtApp", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap ExtApp_Add { - get { - object obj = ResourceManager.GetObject("ExtApp_Add", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap ExtApp_Delete { - get { - object obj = ResourceManager.GetObject("ExtApp_Delete", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon ExtApp_Icon { - get { - object obj = ResourceManager.GetObject("ExtApp_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap ExtApp_Start { - get { - object obj = ResourceManager.GetObject("ExtApp_Start", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap File { - get { - object obj = ResourceManager.GetObject("File", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Folder { - get { - object obj = ResourceManager.GetObject("Folder", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Folder_Add { - get { - object obj = ResourceManager.GetObject("Folder_Add", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap folder_key { - get { - object obj = ResourceManager.GetObject("folder_key", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Fullscreen { - get { - object obj = ResourceManager.GetObject("Fullscreen", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Good_Symbol { - get { - object obj = ResourceManager.GetObject("Good_Symbol", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap green_arrow1 { - get { - object obj = ResourceManager.GetObject("green_arrow1", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap green_arrow2 { - get { - object obj = ResourceManager.GetObject("green_arrow2", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Help { - get { - object obj = ResourceManager.GetObject("Help", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Help_Icon { - get { - object obj = ResourceManager.GetObject("Help_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap HostStatus_Check { - get { - object obj = ResourceManager.GetObject("HostStatus_Check", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap HostStatus_Off { - get { - object obj = ResourceManager.GetObject("HostStatus_Off", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap HostStatus_On { - get { - object obj = ResourceManager.GetObject("HostStatus_On", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Info { - get { - object obj = ResourceManager.GetObject("Info", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Info_Icon { - get { - object obj = ResourceManager.GetObject("Info_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Information { - get { - object obj = ResourceManager.GetObject("Information", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap InformationSmall { - get { - object obj = ResourceManager.GetObject("InformationSmall", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Inheritance { - get { - object obj = ResourceManager.GetObject("Inheritance", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Inheritance_Default { - get { - object obj = ResourceManager.GetObject("Inheritance_Default", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap JumpTo { - get { - object obj = ResourceManager.GetObject("JumpTo", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap keepass_32x32 { - get { - object obj = ResourceManager.GetObject("keepass_32x32", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap key { - get { - object obj = ResourceManager.GetObject("key", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap key_add { - get { - object obj = ResourceManager.GetObject("key_add", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap key_delete { - get { - object obj = ResourceManager.GetObject("key_delete", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon key_Icon { - get { - object obj = ResourceManager.GetObject("key_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Keyboard { - get { - object obj = ResourceManager.GetObject("Keyboard", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Lock { - get { - object obj = ResourceManager.GetObject("Lock", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Logo { - get { - object obj = ResourceManager.GetObject("Logo", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Monitor { - get { - object obj = ResourceManager.GetObject("Monitor", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap monitor_delete { - get { - object obj = ResourceManager.GetObject("monitor_delete", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap monitor_go { - get { - object obj = ResourceManager.GetObject("monitor_go", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Monitor_GoTo { - get { - object obj = ResourceManager.GetObject("Monitor_GoTo", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap mRemote { - get { - object obj = ResourceManager.GetObject("mRemote", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon mRemote_Icon { - get { - object obj = ResourceManager.GetObject("mRemote_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap News { - get { - object obj = ResourceManager.GetObject("News", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon News_Icon { - get { - object obj = ResourceManager.GetObject("News_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Options { - get { - object obj = ResourceManager.GetObject("Options", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Options_Icon { - get { - object obj = ResourceManager.GetObject("Options_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Page { - get { - object obj = ResourceManager.GetObject("Page", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap page_copy { - get { - object obj = ResourceManager.GetObject("page_copy", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Panel_Add { - get { - object obj = ResourceManager.GetObject("Panel_Add", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Panel_Close { - get { - object obj = ResourceManager.GetObject("Panel_Close", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Panels { - get { - object obj = ResourceManager.GetObject("Panels", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Panels_Icon { - get { - object obj = ResourceManager.GetObject("Panels_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Pause { - get { - object obj = ResourceManager.GetObject("Pause", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Play { - get { - object obj = ResourceManager.GetObject("Play", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Play_Quick { - get { - object obj = ResourceManager.GetObject("Play_Quick", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Play_Quick_Icon { - get { - object obj = ResourceManager.GetObject("Play_Quick_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap PortScan { - get { - object obj = ResourceManager.GetObject("PortScan", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon PortScan_Icon { - get { - object obj = ResourceManager.GetObject("PortScan_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Properties { - get { - object obj = ResourceManager.GetObject("Properties", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Properties_Default { - get { - object obj = ResourceManager.GetObject("Properties_Default", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap puttycm { - get { - object obj = ResourceManager.GetObject("puttycm", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap PuttyConfig { - get { - object obj = ResourceManager.GetObject("PuttyConfig", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap PuttySessions { - get { - object obj = ResourceManager.GetObject("PuttySessions", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Quit { - get { - object obj = ResourceManager.GetObject("Quit", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon RDCMan_Icon { - get { - object obj = ResourceManager.GetObject("RDCMan_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap RDP { - get { - object obj = ResourceManager.GetObject("RDP", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Refresh { - get { - object obj = ResourceManager.GetObject("Refresh", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Rename { - get { - object obj = ResourceManager.GetObject("Rename", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Root { - get { - object obj = ResourceManager.GetObject("Root", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Root_Icon { - get { - object obj = ResourceManager.GetObject("Root_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Save { - get { - object obj = ResourceManager.GetObject("Save", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Save_Icon { - get { - object obj = ResourceManager.GetObject("Save_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Screenshot { - get { - object obj = ResourceManager.GetObject("Screenshot", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Screenshot_Add { - get { - object obj = ResourceManager.GetObject("Screenshot_Add", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Screenshot_Copy { - get { - object obj = ResourceManager.GetObject("Screenshot_Copy", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Screenshot_Delete { - get { - object obj = ResourceManager.GetObject("Screenshot_Delete", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Screenshot_Icon { - get { - object obj = ResourceManager.GetObject("Screenshot_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Screenshot_Save { - get { - object obj = ResourceManager.GetObject("Screenshot_Save", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Search { - get { - object obj = ResourceManager.GetObject("Search", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Session_LogOff { - get { - object obj = ResourceManager.GetObject("Session_LogOff", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Sessions { - get { - object obj = ResourceManager.GetObject("Sessions", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Sessions_Icon { - get { - object obj = ResourceManager.GetObject("Sessions_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon shield { - get { - object obj = ResourceManager.GetObject("shield", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap SmartSize { - get { - object obj = ResourceManager.GetObject("SmartSize", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Sort_AZ { - get { - object obj = ResourceManager.GetObject("Sort_AZ", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Sort_ZA { - get { - object obj = ResourceManager.GetObject("Sort_ZA", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap SSHTransfer { - get { - object obj = ResourceManager.GetObject("SSHTransfer", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon SSHTransfer_Icon { - get { - object obj = ResourceManager.GetObject("SSHTransfer_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon StartupExit_Icon { - get { - object obj = ResourceManager.GetObject("StartupExit_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Tab_Icon { - get { - object obj = ResourceManager.GetObject("Tab_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap tick { - get { - object obj = ResourceManager.GetObject("tick", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Tools { - get { - object obj = ResourceManager.GetObject("Tools", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Update { - get { - object obj = ResourceManager.GetObject("Update", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon Update_Icon { - get { - object obj = ResourceManager.GetObject("Update_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap user_comment { - get { - object obj = ResourceManager.GetObject("user_comment", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap UVNC_SC { - get { - object obj = ResourceManager.GetObject("UVNC_SC", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). - /// - internal static System.Drawing.Icon UVNC_SC_Icon { - get { - object obj = ResourceManager.GetObject("UVNC_SC_Icon", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap View { - get { - object obj = ResourceManager.GetObject("View", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Warning { - get { - object obj = ResourceManager.GetObject("Warning", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap WarningSmall { - get { - object obj = ResourceManager.GetObject("WarningSmall", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap Website { - get { - object obj = ResourceManager.GetObject("Website", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap xml { - get { - object obj = ResourceManager.GetObject("xml", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - } -} +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace mRemoteNG { + using System; + + + /// + /// 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 Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// 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.Properties.Resources", typeof(Resources).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 resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _Error { + get { + object obj = ResourceManager.GetObject("_Error", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _lock { + get { + object obj = ResourceManager.GetObject("_lock", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ActiveDirectory { + get { + object obj = ResourceManager.GetObject("ActiveDirectory", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon ActiveDirectory_Icon { + get { + object obj = ResourceManager.GetObject("ActiveDirectory_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Appearance_Icon { + get { + object obj = ResourceManager.GetObject("Appearance_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap application_side_tree { + get { + object obj = ResourceManager.GetObject("application_side_tree", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Arrow_Down { + get { + object obj = ResourceManager.GetObject("Arrow_Down", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap arrow_left { + get { + object obj = ResourceManager.GetObject("arrow_left", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap arrow_out { + get { + object obj = ResourceManager.GetObject("arrow_out", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Arrow_Up { + get { + object obj = ResourceManager.GetObject("Arrow_Up", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Bad_Symbol { + get { + object obj = ResourceManager.GetObject("Bad_Symbol", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap brick { + get { + object obj = ResourceManager.GetObject("brick", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Bug { + get { + object obj = ResourceManager.GetObject("Bug", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Chat { + get { + object obj = ResourceManager.GetObject("Chat", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap cog { + get { + object obj = ResourceManager.GetObject("cog", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap cog_error { + get { + object obj = ResourceManager.GetObject("cog_error", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Collapse { + get { + object obj = ResourceManager.GetObject("Collapse", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ComponentsCheck { + get { + object obj = ResourceManager.GetObject("ComponentsCheck", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon ComponentsCheck_Icon { + get { + object obj = ResourceManager.GetObject("ComponentsCheck_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Config { + get { + object obj = ResourceManager.GetObject("Config", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Config_Icon { + get { + object obj = ResourceManager.GetObject("Config_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ConnectedOverlay { + get { + object obj = ResourceManager.GetObject("ConnectedOverlay", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Connection_Add { + get { + object obj = ResourceManager.GetObject("Connection_Add", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Connection_Duplicate { + get { + object obj = ResourceManager.GetObject("Connection_Duplicate", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Connections_Load { + get { + object obj = ResourceManager.GetObject("Connections_Load", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Connections_New { + get { + object obj = ResourceManager.GetObject("Connections_New", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Connections_Save { + get { + object obj = ResourceManager.GetObject("Connections_Save", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Connections_SaveAs { + get { + object obj = ResourceManager.GetObject("Connections_SaveAs", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Connections_SaveAs_Icon { + get { + object obj = ResourceManager.GetObject("Connections_SaveAs_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Console { + get { + object obj = ResourceManager.GetObject("Console", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Copy { + get { + object obj = ResourceManager.GetObject("Copy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Delete { + get { + object obj = ResourceManager.GetObject("Delete", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Donate { + get { + object obj = ResourceManager.GetObject("Donate", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ErrorsAndInfos { + get { + object obj = ResourceManager.GetObject("ErrorsAndInfos", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ErrorSmall { + get { + object obj = ResourceManager.GetObject("ErrorSmall", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap exclamation { + get { + object obj = ResourceManager.GetObject("exclamation", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Expand { + get { + object obj = ResourceManager.GetObject("Expand", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ExtApp { + get { + object obj = ResourceManager.GetObject("ExtApp", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ExtApp_Add { + get { + object obj = ResourceManager.GetObject("ExtApp_Add", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ExtApp_Delete { + get { + object obj = ResourceManager.GetObject("ExtApp_Delete", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon ExtApp_Icon { + get { + object obj = ResourceManager.GetObject("ExtApp_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap ExtApp_Start { + get { + object obj = ResourceManager.GetObject("ExtApp_Start", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap File { + get { + object obj = ResourceManager.GetObject("File", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Folder { + get { + object obj = ResourceManager.GetObject("Folder", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Folder_Add { + get { + object obj = ResourceManager.GetObject("Folder_Add", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap folder_key { + get { + object obj = ResourceManager.GetObject("folder_key", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Fullscreen { + get { + object obj = ResourceManager.GetObject("Fullscreen", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Good_Symbol { + get { + object obj = ResourceManager.GetObject("Good_Symbol", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap green_arrow1 { + get { + object obj = ResourceManager.GetObject("green_arrow1", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap green_arrow2 { + get { + object obj = ResourceManager.GetObject("green_arrow2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Help { + get { + object obj = ResourceManager.GetObject("Help", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Help_Icon { + get { + object obj = ResourceManager.GetObject("Help_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap HostStatus_Check { + get { + object obj = ResourceManager.GetObject("HostStatus_Check", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap HostStatus_Off { + get { + object obj = ResourceManager.GetObject("HostStatus_Off", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap HostStatus_On { + get { + object obj = ResourceManager.GetObject("HostStatus_On", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Info { + get { + object obj = ResourceManager.GetObject("Info", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Info_Icon { + get { + object obj = ResourceManager.GetObject("Info_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Information { + get { + object obj = ResourceManager.GetObject("Information", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap InformationSmall { + get { + object obj = ResourceManager.GetObject("InformationSmall", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Inheritance { + get { + object obj = ResourceManager.GetObject("Inheritance", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Inheritance_Default { + get { + object obj = ResourceManager.GetObject("Inheritance_Default", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap JumpTo { + get { + object obj = ResourceManager.GetObject("JumpTo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap keepass_32x32 { + get { + object obj = ResourceManager.GetObject("keepass_32x32", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap key { + get { + object obj = ResourceManager.GetObject("key", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap key_add { + get { + object obj = ResourceManager.GetObject("key_add", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap key_delete { + get { + object obj = ResourceManager.GetObject("key_delete", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon key_Icon { + get { + object obj = ResourceManager.GetObject("key_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Keyboard { + get { + object obj = ResourceManager.GetObject("Keyboard", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Lock { + get { + object obj = ResourceManager.GetObject("Lock", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Logo { + get { + object obj = ResourceManager.GetObject("Logo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Monitor { + get { + object obj = ResourceManager.GetObject("Monitor", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap monitor_delete { + get { + object obj = ResourceManager.GetObject("monitor_delete", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap monitor_go { + get { + object obj = ResourceManager.GetObject("monitor_go", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Monitor_GoTo { + get { + object obj = ResourceManager.GetObject("Monitor_GoTo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap mRemote { + get { + object obj = ResourceManager.GetObject("mRemote", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon mRemote_Icon { + get { + object obj = ResourceManager.GetObject("mRemote_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap News { + get { + object obj = ResourceManager.GetObject("News", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon News_Icon { + get { + object obj = ResourceManager.GetObject("News_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Options { + get { + object obj = ResourceManager.GetObject("Options", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Options_Icon { + get { + object obj = ResourceManager.GetObject("Options_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Page { + get { + object obj = ResourceManager.GetObject("Page", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap page_copy { + get { + object obj = ResourceManager.GetObject("page_copy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Panel_Add { + get { + object obj = ResourceManager.GetObject("Panel_Add", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Panel_Close { + get { + object obj = ResourceManager.GetObject("Panel_Close", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Panels { + get { + object obj = ResourceManager.GetObject("Panels", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Panels_Icon { + get { + object obj = ResourceManager.GetObject("Panels_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Pause { + get { + object obj = ResourceManager.GetObject("Pause", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Play { + get { + object obj = ResourceManager.GetObject("Play", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Play_Quick { + get { + object obj = ResourceManager.GetObject("Play_Quick", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Play_Quick_Icon { + get { + object obj = ResourceManager.GetObject("Play_Quick_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap PortScan { + get { + object obj = ResourceManager.GetObject("PortScan", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon PortScan_Icon { + get { + object obj = ResourceManager.GetObject("PortScan_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Properties { + get { + object obj = ResourceManager.GetObject("Properties", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Properties_Default { + get { + object obj = ResourceManager.GetObject("Properties_Default", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap puttycm { + get { + object obj = ResourceManager.GetObject("puttycm", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap PuttyConfig { + get { + object obj = ResourceManager.GetObject("PuttyConfig", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap PuttySessions { + get { + object obj = ResourceManager.GetObject("PuttySessions", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Quit { + get { + object obj = ResourceManager.GetObject("Quit", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon RDCMan_Icon { + get { + object obj = ResourceManager.GetObject("RDCMan_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap RDP { + get { + object obj = ResourceManager.GetObject("RDP", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Refresh { + get { + object obj = ResourceManager.GetObject("Refresh", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Rename { + get { + object obj = ResourceManager.GetObject("Rename", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Root { + get { + object obj = ResourceManager.GetObject("Root", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Root_Icon { + get { + object obj = ResourceManager.GetObject("Root_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Save { + get { + object obj = ResourceManager.GetObject("Save", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Save_Icon { + get { + object obj = ResourceManager.GetObject("Save_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Screenshot { + get { + object obj = ResourceManager.GetObject("Screenshot", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Screenshot_Add { + get { + object obj = ResourceManager.GetObject("Screenshot_Add", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Screenshot_Copy { + get { + object obj = ResourceManager.GetObject("Screenshot_Copy", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Screenshot_Delete { + get { + object obj = ResourceManager.GetObject("Screenshot_Delete", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Screenshot_Icon { + get { + object obj = ResourceManager.GetObject("Screenshot_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Screenshot_Save { + get { + object obj = ResourceManager.GetObject("Screenshot_Save", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Search { + get { + object obj = ResourceManager.GetObject("Search", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Session_LogOff { + get { + object obj = ResourceManager.GetObject("Session_LogOff", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Sessions { + get { + object obj = ResourceManager.GetObject("Sessions", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Sessions_Icon { + get { + object obj = ResourceManager.GetObject("Sessions_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon shield { + get { + object obj = ResourceManager.GetObject("shield", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap SmartSize { + get { + object obj = ResourceManager.GetObject("SmartSize", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Sort_AZ { + get { + object obj = ResourceManager.GetObject("Sort_AZ", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Sort_ZA { + get { + object obj = ResourceManager.GetObject("Sort_ZA", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap SSHTransfer { + get { + object obj = ResourceManager.GetObject("SSHTransfer", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon SSHTransfer_Icon { + get { + object obj = ResourceManager.GetObject("SSHTransfer_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon StartupExit_Icon { + get { + object obj = ResourceManager.GetObject("StartupExit_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Tab_Icon { + get { + object obj = ResourceManager.GetObject("Tab_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap tick { + get { + object obj = ResourceManager.GetObject("tick", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Tools { + get { + object obj = ResourceManager.GetObject("Tools", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Update { + get { + object obj = ResourceManager.GetObject("Update", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon Update_Icon { + get { + object obj = ResourceManager.GetObject("Update_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap user_comment { + get { + object obj = ResourceManager.GetObject("user_comment", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap UVNC_SC { + get { + object obj = ResourceManager.GetObject("UVNC_SC", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). + /// + internal static System.Drawing.Icon UVNC_SC_Icon { + get { + object obj = ResourceManager.GetObject("UVNC_SC_Icon", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap View { + get { + object obj = ResourceManager.GetObject("View", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Warning { + get { + object obj = ResourceManager.GetObject("Warning", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap WarningSmall { + get { + object obj = ResourceManager.GetObject("WarningSmall", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Website { + get { + object obj = ResourceManager.GetObject("Website", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap xml { + get { + object obj = ResourceManager.GetObject("xml", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/mRemoteV1/Properties/Settings.Designer.cs b/mRemoteV1/Properties/Settings.Designer.cs index 7daaa2bea..95b346778 100644 --- a/mRemoteV1/Properties/Settings.Designer.cs +++ b/mRemoteV1/Properties/Settings.Designer.cs @@ -1,2558 +1,2558 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace mRemoteNG { - - - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.1.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { - - private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default { - get { - return defaultInstance; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("0, 0")] - public global::System.Drawing.Point MainFormLocation { - get { - return ((global::System.Drawing.Point)(this["MainFormLocation"])); - } - set { - this["MainFormLocation"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("0, 0")] - public global::System.Drawing.Size MainFormSize { - get { - return ((global::System.Drawing.Size)(this["MainFormSize"])); - } - set { - this["MainFormSize"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("Normal")] - public global::System.Windows.Forms.FormWindowState MainFormState { - get { - return ((global::System.Windows.Forms.FormWindowState)(this["MainFormState"])); - } - set { - this["MainFormState"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool MainFormKiosk { - get { - return ((bool)(this["MainFormKiosk"])); - } - set { - this["MainFormKiosk"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool DoUpgrade { - get { - return ((bool)(this["DoUpgrade"])); - } - set { - this["DoUpgrade"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string CustomPuttyPath { - get { - return ((string)(this["CustomPuttyPath"])); - } - set { - this["CustomPuttyPath"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool SwitchToMCOnInformation { - get { - return ((bool)(this["SwitchToMCOnInformation"])); - } - set { - this["SwitchToMCOnInformation"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool SwitchToMCOnWarning { - get { - return ((bool)(this["SwitchToMCOnWarning"])); - } - set { - this["SwitchToMCOnWarning"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool SwitchToMCOnError { - get { - return ((bool)(this["SwitchToMCOnError"])); - } - set { - this["SwitchToMCOnError"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool AutomaticallyGetSessionInfo { - get { - return ((bool)(this["AutomaticallyGetSessionInfo"])); - } - set { - this["AutomaticallyGetSessionInfo"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool LoadConsFromCustomLocation { - get { - return ((bool)(this["LoadConsFromCustomLocation"])); - } - set { - this["LoadConsFromCustomLocation"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string CustomConsPath { - get { - return ((string)(this["CustomConsPath"])); - } - set { - this["CustomConsPath"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool SaveConsOnExit { - get { - return ((bool)(this["SaveConsOnExit"])); - } - set { - this["SaveConsOnExit"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool CheckForUpdatesOnStartup { - get { - return ((bool)(this["CheckForUpdatesOnStartup"])); - } - set { - this["CheckForUpdatesOnStartup"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ShowDescriptionTooltipsInTree { - get { - return ((bool)(this["ShowDescriptionTooltipsInTree"])); - } - set { - this["ShowDescriptionTooltipsInTree"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ShowSystemTrayIcon { - get { - return ((bool)(this["ShowSystemTrayIcon"])); - } - set { - this["ShowSystemTrayIcon"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool OpenTabsRightOfSelected { - get { - return ((bool)(this["OpenTabsRightOfSelected"])); - } - set { - this["OpenTabsRightOfSelected"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ShowLogonInfoOnTabs { - get { - return ((bool)(this["ShowLogonInfoOnTabs"])); - } - set { - this["ShowLogonInfoOnTabs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool SingleClickOnConnectionOpensIt { - get { - return ((bool)(this["SingleClickOnConnectionOpensIt"])); - } - set { - this["SingleClickOnConnectionOpensIt"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("noinfo")] - public string EmptyCredentials { - get { - return ((string)(this["EmptyCredentials"])); - } - set { - this["EmptyCredentials"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string DefaultUsername { - get { - return ((string)(this["DefaultUsername"])); - } - set { - this["DefaultUsername"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string DefaultPassword { - get { - return ((string)(this["DefaultPassword"])); - } - set { - this["DefaultPassword"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string DefaultDomain { - get { - return ((string)(this["DefaultDomain"])); - } - set { - this["DefaultDomain"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool UseCustomPuttyPath { - get { - return ((bool)(this["UseCustomPuttyPath"])); - } - set { - this["UseCustomPuttyPath"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool FirstStart { - get { - return ((bool)(this["FirstStart"])); - } - set { - this["FirstStart"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ShowProtocolOnTabs { - get { - return ((bool)(this["ShowProtocolOnTabs"])); - } - set { - this["ShowProtocolOnTabs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ResetPanels { - get { - return ((bool)(this["ResetPanels"])); - } - set { - this["ResetPanels"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool UpdateUseProxy { - get { - return ((bool)(this["UpdateUseProxy"])); - } - set { - this["UpdateUseProxy"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string UpdateProxyAddress { - get { - return ((string)(this["UpdateProxyAddress"])); - } - set { - this["UpdateProxyAddress"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("80")] - public int UpdateProxyPort { - get { - return ((int)(this["UpdateProxyPort"])); - } - set { - this["UpdateProxyPort"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool UpdateProxyUseAuthentication { - get { - return ((bool)(this["UpdateProxyUseAuthentication"])); - } - set { - this["UpdateProxyUseAuthentication"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string UpdateProxyAuthUser { - get { - return ((string)(this["UpdateProxyAuthUser"])); - } - set { - this["UpdateProxyAuthUser"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string UpdateProxyAuthPass { - get { - return ((string)(this["UpdateProxyAuthPass"])); - } - set { - this["UpdateProxyAuthPass"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultDescription { - get { - return ((string)(this["ConDefaultDescription"])); - } - set { - this["ConDefaultDescription"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("RDP")] - public string ConDefaultProtocol { - get { - return ((string)(this["ConDefaultProtocol"])); - } - set { - this["ConDefaultProtocol"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("Default Settings")] - public string ConDefaultPuttySession { - get { - return ((string)(this["ConDefaultPuttySession"])); - } - set { - this["ConDefaultPuttySession"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultUseConsoleSession { - get { - return ((bool)(this["ConDefaultUseConsoleSession"])); - } - set { - this["ConDefaultUseConsoleSession"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("FitToWindow")] - public string ConDefaultResolution { - get { - return ((string)(this["ConDefaultResolution"])); - } - set { - this["ConDefaultResolution"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("Colors16Bit")] - public string ConDefaultColors { - get { - return ((string)(this["ConDefaultColors"])); - } - set { - this["ConDefaultColors"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultCacheBitmaps { - get { - return ((bool)(this["ConDefaultCacheBitmaps"])); - } - set { - this["ConDefaultCacheBitmaps"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultDisplayWallpaper { - get { - return ((bool)(this["ConDefaultDisplayWallpaper"])); - } - set { - this["ConDefaultDisplayWallpaper"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultDisplayThemes { - get { - return ((bool)(this["ConDefaultDisplayThemes"])); - } - set { - this["ConDefaultDisplayThemes"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultRedirectKeys { - get { - return ((bool)(this["ConDefaultRedirectKeys"])); - } - set { - this["ConDefaultRedirectKeys"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultRedirectDiskDrives { - get { - return ((bool)(this["ConDefaultRedirectDiskDrives"])); - } - set { - this["ConDefaultRedirectDiskDrives"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultRedirectPrinters { - get { - return ((bool)(this["ConDefaultRedirectPrinters"])); - } - set { - this["ConDefaultRedirectPrinters"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultRedirectPorts { - get { - return ((bool)(this["ConDefaultRedirectPorts"])); - } - set { - this["ConDefaultRedirectPorts"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultRedirectSmartCards { - get { - return ((bool)(this["ConDefaultRedirectSmartCards"])); - } - set { - this["ConDefaultRedirectSmartCards"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("DoNotPlay")] - public string ConDefaultRedirectSound { - get { - return ((string)(this["ConDefaultRedirectSound"])); - } - set { - this["ConDefaultRedirectSound"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("2")] - public int MaxPuttyWaitTime { - get { - return ((int)(this["MaxPuttyWaitTime"])); - } - set { - this["MaxPuttyWaitTime"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool SingleInstance { - get { - return ((bool)(this["SingleInstance"])); - } - set { - this["SingleInstance"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool OpenConsFromLastSession { - get { - return ((bool)(this["OpenConsFromLastSession"])); - } - set { - this["OpenConsFromLastSession"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool NoReconnect { - get { - return ((bool)(this["NoReconnect"])); - } - set { - this["NoReconnect"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("0")] - public int AutoSaveEveryMinutes { - get { - return ((int)(this["AutoSaveEveryMinutes"])); - } - set { - this["AutoSaveEveryMinutes"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ExtAppsTBVisible { - get { - return ((bool)(this["ExtAppsTBVisible"])); - } - set { - this["ExtAppsTBVisible"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool ExtAppsTBShowText { - get { - return ((bool)(this["ExtAppsTBShowText"])); - } - set { - this["ExtAppsTBShowText"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("0, 0")] - public global::System.Drawing.Point ExtAppsTBLocation { - get { - return ((global::System.Drawing.Point)(this["ExtAppsTBLocation"])); - } - set { - this["ExtAppsTBLocation"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("Bottom")] - public string ExtAppsTBParentDock { - get { - return ((string)(this["ExtAppsTBParentDock"])); - } - set { - this["ExtAppsTBParentDock"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool QuickyTBVisible { - get { - return ((bool)(this["QuickyTBVisible"])); - } - set { - this["QuickyTBVisible"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("3, 24")] - public global::System.Drawing.Point QuickyTBLocation { - get { - return ((global::System.Drawing.Point)(this["QuickyTBLocation"])); - } - set { - this["QuickyTBLocation"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("Top")] - public string QuickyTBParentDock { - get { - return ((string)(this["QuickyTBParentDock"])); - } - set { - this["QuickyTBParentDock"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ResetToolbars { - get { - return ((bool)(this["ResetToolbars"])); - } - set { - this["ResetToolbars"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool UseSQLServer { - get { - return ((bool)(this["UseSQLServer"])); - } - set { - this["UseSQLServer"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string SQLHost { - get { - return ((string)(this["SQLHost"])); - } - set { - this["SQLHost"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string SQLUser { - get { - return ((string)(this["SQLUser"])); - } - set { - this["SQLUser"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string SQLPass { - get { - return ((string)(this["SQLPass"])); - } - set { - this["SQLPass"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultCacheBitmaps { - get { - return ((bool)(this["InhDefaultCacheBitmaps"])); - } - set { - this["InhDefaultCacheBitmaps"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultColors { - get { - return ((bool)(this["InhDefaultColors"])); - } - set { - this["InhDefaultColors"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultDescription { - get { - return ((bool)(this["InhDefaultDescription"])); - } - set { - this["InhDefaultDescription"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultDisplayThemes { - get { - return ((bool)(this["InhDefaultDisplayThemes"])); - } - set { - this["InhDefaultDisplayThemes"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultDisplayWallpaper { - get { - return ((bool)(this["InhDefaultDisplayWallpaper"])); - } - set { - this["InhDefaultDisplayWallpaper"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultDomain { - get { - return ((bool)(this["InhDefaultDomain"])); - } - set { - this["InhDefaultDomain"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultIcon { - get { - return ((bool)(this["InhDefaultIcon"])); - } - set { - this["InhDefaultIcon"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultPassword { - get { - return ((bool)(this["InhDefaultPassword"])); - } - set { - this["InhDefaultPassword"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultPort { - get { - return ((bool)(this["InhDefaultPort"])); - } - set { - this["InhDefaultPort"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultProtocol { - get { - return ((bool)(this["InhDefaultProtocol"])); - } - set { - this["InhDefaultProtocol"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultPuttySession { - get { - return ((bool)(this["InhDefaultPuttySession"])); - } - set { - this["InhDefaultPuttySession"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRedirectDiskDrives { - get { - return ((bool)(this["InhDefaultRedirectDiskDrives"])); - } - set { - this["InhDefaultRedirectDiskDrives"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRedirectKeys { - get { - return ((bool)(this["InhDefaultRedirectKeys"])); - } - set { - this["InhDefaultRedirectKeys"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRedirectPorts { - get { - return ((bool)(this["InhDefaultRedirectPorts"])); - } - set { - this["InhDefaultRedirectPorts"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRedirectPrinters { - get { - return ((bool)(this["InhDefaultRedirectPrinters"])); - } - set { - this["InhDefaultRedirectPrinters"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRedirectSmartCards { - get { - return ((bool)(this["InhDefaultRedirectSmartCards"])); - } - set { - this["InhDefaultRedirectSmartCards"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRedirectSound { - get { - return ((bool)(this["InhDefaultRedirectSound"])); - } - set { - this["InhDefaultRedirectSound"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultResolution { - get { - return ((bool)(this["InhDefaultResolution"])); - } - set { - this["InhDefaultResolution"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultUseConsoleSession { - get { - return ((bool)(this["InhDefaultUseConsoleSession"])); - } - set { - this["InhDefaultUseConsoleSession"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultUsername { - get { - return ((bool)(this["InhDefaultUsername"])); - } - set { - this["InhDefaultUsername"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultPanel { - get { - return ((bool)(this["InhDefaultPanel"])); - } - set { - this["InhDefaultPanel"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("EncrBasic")] - public string ConDefaultICAEncryptionStrength { - get { - return ((string)(this["ConDefaultICAEncryptionStrength"])); - } - set { - this["ConDefaultICAEncryptionStrength"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultICAEncryptionStrength { - get { - return ((bool)(this["InhDefaultICAEncryptionStrength"])); - } - set { - this["InhDefaultICAEncryptionStrength"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultPreExtApp { - get { - return ((string)(this["ConDefaultPreExtApp"])); - } - set { - this["ConDefaultPreExtApp"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultPostExtApp { - get { - return ((string)(this["ConDefaultPostExtApp"])); - } - set { - this["ConDefaultPostExtApp"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultPreExtApp { - get { - return ((bool)(this["InhDefaultPreExtApp"])); - } - set { - this["InhDefaultPreExtApp"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultPostExtApp { - get { - return ((bool)(this["InhDefaultPostExtApp"])); - } - set { - this["InhDefaultPostExtApp"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool SetHostnameLikeDisplayName { - get { - return ((bool)(this["SetHostnameLikeDisplayName"])); - } - set { - this["SetHostnameLikeDisplayName"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool DoubleClickOnTabClosesIt { - get { - return ((bool)(this["DoubleClickOnTabClosesIt"])); - } - set { - this["DoubleClickOnTabClosesIt"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ReconnectOnDisconnect { - get { - return ((bool)(this["ReconnectOnDisconnect"])); - } - set { - this["ReconnectOnDisconnect"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool AlwaysShowPanelSelectionDlg { - get { - return ((bool)(this["AlwaysShowPanelSelectionDlg"])); - } - set { - this["AlwaysShowPanelSelectionDlg"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("AuthVNC")] - public string ConDefaultVNCAuthMode { - get { - return ((string)(this["ConDefaultVNCAuthMode"])); - } - set { - this["ConDefaultVNCAuthMode"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("ColNormal")] - public string ConDefaultVNCColors { - get { - return ((string)(this["ConDefaultVNCColors"])); - } - set { - this["ConDefaultVNCColors"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("SmartSAspect")] - public string ConDefaultVNCSmartSizeMode { - get { - return ((string)(this["ConDefaultVNCSmartSizeMode"])); - } - set { - this["ConDefaultVNCSmartSizeMode"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultVNCViewOnly { - get { - return ((bool)(this["ConDefaultVNCViewOnly"])); - } - set { - this["ConDefaultVNCViewOnly"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("CompNone")] - public string ConDefaultVNCCompression { - get { - return ((string)(this["ConDefaultVNCCompression"])); - } - set { - this["ConDefaultVNCCompression"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("EncHextile")] - public string ConDefaultVNCEncoding { - get { - return ((string)(this["ConDefaultVNCEncoding"])); - } - set { - this["ConDefaultVNCEncoding"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultVNCProxyIP { - get { - return ((string)(this["ConDefaultVNCProxyIP"])); - } - set { - this["ConDefaultVNCProxyIP"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultVNCProxyPassword { - get { - return ((string)(this["ConDefaultVNCProxyPassword"])); - } - set { - this["ConDefaultVNCProxyPassword"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("0")] - public int ConDefaultVNCProxyPort { - get { - return ((int)(this["ConDefaultVNCProxyPort"])); - } - set { - this["ConDefaultVNCProxyPort"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("ProxyNone")] - public string ConDefaultVNCProxyType { - get { - return ((string)(this["ConDefaultVNCProxyType"])); - } - set { - this["ConDefaultVNCProxyType"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultVNCProxyUsername { - get { - return ((string)(this["ConDefaultVNCProxyUsername"])); - } - set { - this["ConDefaultVNCProxyUsername"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultVNCAuthMode { - get { - return ((bool)(this["InhDefaultVNCAuthMode"])); - } - set { - this["InhDefaultVNCAuthMode"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultVNCColors { - get { - return ((bool)(this["InhDefaultVNCColors"])); - } - set { - this["InhDefaultVNCColors"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultVNCSmartSizeMode { - get { - return ((bool)(this["InhDefaultVNCSmartSizeMode"])); - } - set { - this["InhDefaultVNCSmartSizeMode"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultVNCViewOnly { - get { - return ((bool)(this["InhDefaultVNCViewOnly"])); - } - set { - this["InhDefaultVNCViewOnly"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultVNCCompression { - get { - return ((bool)(this["InhDefaultVNCCompression"])); - } - set { - this["InhDefaultVNCCompression"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultVNCEncoding { - get { - return ((bool)(this["InhDefaultVNCEncoding"])); - } - set { - this["InhDefaultVNCEncoding"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultVNCProxyIP { - get { - return ((bool)(this["InhDefaultVNCProxyIP"])); - } - set { - this["InhDefaultVNCProxyIP"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultVNCProxyPassword { - get { - return ((bool)(this["InhDefaultVNCProxyPassword"])); - } - set { - this["InhDefaultVNCProxyPassword"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultVNCProxyPort { - get { - return ((bool)(this["InhDefaultVNCProxyPort"])); - } - set { - this["InhDefaultVNCProxyPort"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultVNCProxyType { - get { - return ((bool)(this["InhDefaultVNCProxyType"])); - } - set { - this["InhDefaultVNCProxyType"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultVNCProxyUsername { - get { - return ((bool)(this["InhDefaultVNCProxyUsername"])); - } - set { - this["InhDefaultVNCProxyUsername"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool MinimizeToTray { - get { - return ((bool)(this["MinimizeToTray"])); - } - set { - this["MinimizeToTray"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool SingleClickSwitchesToOpenConnection { - get { - return ((bool)(this["SingleClickSwitchesToOpenConnection"])); - } - set { - this["SingleClickSwitchesToOpenConnection"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("NoAuth")] - public string ConDefaultRDPAuthenticationLevel { - get { - return ((string)(this["ConDefaultRDPAuthenticationLevel"])); - } - set { - this["ConDefaultRDPAuthenticationLevel"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRDPAuthenticationLevel { - get { - return ((bool)(this["InhDefaultRDPAuthenticationLevel"])); - } - set { - this["InhDefaultRDPAuthenticationLevel"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("5500")] - public int UVNCSCPort { - get { - return ((int)(this["UVNCSCPort"])); - } - set { - this["UVNCSCPort"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool StartupComponentsCheck { - get { - return ((bool)(this["StartupComponentsCheck"])); - } - set { - this["StartupComponentsCheck"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string XULRunnerPath { - get { - return ((string)(this["XULRunnerPath"])); - } - set { - this["XULRunnerPath"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("IE")] - public string ConDefaultRenderingEngine { - get { - return ((string)(this["ConDefaultRenderingEngine"])); - } - set { - this["ConDefaultRenderingEngine"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRenderingEngine { - get { - return ((bool)(this["InhDefaultRenderingEngine"])); - } - set { - this["InhDefaultRenderingEngine"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultMacAddress { - get { - return ((string)(this["ConDefaultMacAddress"])); - } - set { - this["ConDefaultMacAddress"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultMacAddress { - get { - return ((bool)(this["InhDefaultMacAddress"])); - } - set { - this["InhDefaultMacAddress"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool EncryptCompleteConnectionsFile { - get { - return ((bool)(this["EncryptCompleteConnectionsFile"])); - } - set { - this["EncryptCompleteConnectionsFile"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultUserField { - get { - return ((string)(this["ConDefaultUserField"])); - } - set { - this["ConDefaultUserField"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultUserField { - get { - return ((bool)(this["InhDefaultUserField"])); - } - set { - this["InhDefaultUserField"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultExtApp { - get { - return ((string)(this["ConDefaultExtApp"])); - } - set { - this["ConDefaultExtApp"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultExtApp { - get { - return ((bool)(this["InhDefaultExtApp"])); - } - set { - this["InhDefaultExtApp"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool CheckForUpdatesAsked { - get { - return ((bool)(this["CheckForUpdatesAsked"])); - } - set { - this["CheckForUpdatesAsked"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("14")] - public int CheckForUpdatesFrequencyDays { - get { - return ((int)(this["CheckForUpdatesFrequencyDays"])); - } - set { - this["CheckForUpdatesFrequencyDays"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("1980-01-01")] - public global::System.DateTime CheckForUpdatesLastCheck { - get { - return ((global::System.DateTime)(this["CheckForUpdatesLastCheck"])); - } - set { - this["CheckForUpdatesLastCheck"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool UpdatePending { - get { - return ((bool)(this["UpdatePending"])); - } - set { - this["UpdatePending"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("Never")] - public string ConDefaultRDGatewayUsageMethod { - get { - return ((string)(this["ConDefaultRDGatewayUsageMethod"])); - } - set { - this["ConDefaultRDGatewayUsageMethod"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("Yes")] - public string ConDefaultRDGatewayUseConnectionCredentials { - get { - return ((string)(this["ConDefaultRDGatewayUseConnectionCredentials"])); - } - set { - this["ConDefaultRDGatewayUseConnectionCredentials"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("mRemoteNG")] - public string ConDefaultIcon { - get { - return ((string)(this["ConDefaultIcon"])); - } - set { - this["ConDefaultIcon"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRDGatewayUsageMethod { - get { - return ((bool)(this["InhDefaultRDGatewayUsageMethod"])); - } - set { - this["InhDefaultRDGatewayUsageMethod"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRDGatewayHostname { - get { - return ((bool)(this["InhDefaultRDGatewayHostname"])); - } - set { - this["InhDefaultRDGatewayHostname"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRDGatewayUsername { - get { - return ((bool)(this["InhDefaultRDGatewayUsername"])); - } - set { - this["InhDefaultRDGatewayUsername"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRDGatewayPassword { - get { - return ((bool)(this["InhDefaultRDGatewayPassword"])); - } - set { - this["InhDefaultRDGatewayPassword"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRDGatewayDomain { - get { - return ((bool)(this["InhDefaultRDGatewayDomain"])); - } - set { - this["InhDefaultRDGatewayDomain"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRDGatewayUseConnectionCredentials { - get { - return ((bool)(this["InhDefaultRDGatewayUseConnectionCredentials"])); - } - set { - this["InhDefaultRDGatewayUseConnectionCredentials"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("5")] - public int RdpReconnectionCount { - get { - return ((int)(this["RdpReconnectionCount"])); - } - set { - this["RdpReconnectionCount"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string OverrideUICulture { - get { - return ((string)(this["OverrideUICulture"])); - } - set { - this["OverrideUICulture"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultRDGatewayHostname { - get { - return ((string)(this["ConDefaultRDGatewayHostname"])); - } - set { - this["ConDefaultRDGatewayHostname"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultRDGatewayUsername { - get { - return ((string)(this["ConDefaultRDGatewayUsername"])); - } - set { - this["ConDefaultRDGatewayUsername"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultRDGatewayPassword { - get { - return ((string)(this["ConDefaultRDGatewayPassword"])); - } - set { - this["ConDefaultRDGatewayPassword"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultRDGatewayDomain { - get { - return ((string)(this["ConDefaultRDGatewayDomain"])); - } - set { - this["ConDefaultRDGatewayDomain"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultEnableFontSmoothing { - get { - return ((bool)(this["ConDefaultEnableFontSmoothing"])); - } - set { - this["ConDefaultEnableFontSmoothing"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultEnableFontSmoothing { - get { - return ((bool)(this["InhDefaultEnableFontSmoothing"])); - } - set { - this["InhDefaultEnableFontSmoothing"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultEnableDesktopComposition { - get { - return ((bool)(this["ConDefaultEnableDesktopComposition"])); - } - set { - this["ConDefaultEnableDesktopComposition"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultEnableDesktopComposition { - get { - return ((bool)(this["InhDefaultEnableDesktopComposition"])); - } - set { - this["InhDefaultEnableDesktopComposition"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("4")] - public int ConfirmCloseConnection { - get { - return ((int)(this["ConfirmCloseConnection"])); - } - set { - this["ConfirmCloseConnection"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - public global::System.Drawing.Size MainFormRestoreSize { - get { - return ((global::System.Drawing.Size)(this["MainFormRestoreSize"])); - } - set { - this["MainFormRestoreSize"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - public global::System.Drawing.Point MainFormRestoreLocation { - get { - return ((global::System.Drawing.Point)(this["MainFormRestoreLocation"])); - } - set { - this["MainFormRestoreLocation"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("mRemoteNG")] - public string SQLDatabaseName { - get { - return ((string)(this["SQLDatabaseName"])); - } - set { - this["SQLDatabaseName"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("10")] - [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] - public int BackupFileKeepCount { - get { - return ((int)(this["BackupFileKeepCount"])); - } - set { - this["BackupFileKeepCount"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("{0}.{1:yyyyMMdd-HHmmssffff}.backup")] - [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] - public string BackupFileNameFormat { - get { - return ((string)(this["BackupFileNameFormat"])); - } - set { - this["BackupFileNameFormat"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultUseCredSsp { - get { - return ((bool)(this["InhDefaultUseCredSsp"])); - } - set { - this["InhDefaultUseCredSsp"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool ConDefaultUseCredSsp { - get { - return ((bool)(this["ConDefaultUseCredSsp"])); - } - set { - this["ConDefaultUseCredSsp"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] - public bool AlwaysShowPanelTabs { - get { - return ((bool)(this["AlwaysShowPanelTabs"])); - } - set { - this["AlwaysShowPanelTabs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] - public bool IdentifyQuickConnectTabs { - get { - return ((bool)(this["IdentifyQuickConnectTabs"])); - } - set { - this["IdentifyQuickConnectTabs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("release")] - public string UpdateChannel { - get { - return ((string)(this["UpdateChannel"])); - } - set { - this["UpdateChannel"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ThemeName { - get { - return ((string)(this["ThemeName"])); - } - set { - this["ThemeName"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool ShowConfigHelpText { - get { - return ((bool)(this["ShowConfigHelpText"])); - } - set { - this["ShowConfigHelpText"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string PuttySavedSessionsName { - get { - return ((string)(this["PuttySavedSessionsName"])); - } - set { - this["PuttySavedSessionsName"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string PuttySavedSessionsPanel { - get { - return ((string)(this["PuttySavedSessionsPanel"])); - } - set { - this["PuttySavedSessionsPanel"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool CompatibilityWarnLenovoAutoScrollUtility { - get { - return ((bool)(this["CompatibilityWarnLenovoAutoScrollUtility"])); - } - set { - this["CompatibilityWarnLenovoAutoScrollUtility"] = value; - } - } - - [global::System.Configuration.ApplicationScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("https://mremoteng.org/")] - public string UpdateAddress { - get { - return ((string)(this["UpdateAddress"])); - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string ConDefaultLoadBalanceInfo { - get { - return ((string)(this["ConDefaultLoadBalanceInfo"])); - } - set { - this["ConDefaultLoadBalanceInfo"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool ConDefaultAutomaticResize { - get { - return ((bool)(this["ConDefaultAutomaticResize"])); - } - set { - this["ConDefaultAutomaticResize"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultLoadBalanceInfo { - get { - return ((bool)(this["InhDefaultLoadBalanceInfo"])); - } - set { - this["InhDefaultLoadBalanceInfo"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultAutomaticResize { - get { - return ((bool)(this["InhDefaultAutomaticResize"])); - } - set { - this["InhDefaultAutomaticResize"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("RDP")] - [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] - public string QuickConnectProtocol { - get { - return ((string)(this["QuickConnectProtocol"])); - } - set { - this["QuickConnectProtocol"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("9/9, 33/8")] - [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] - public string KeysPreviousTab { - get { - return ((string)(this["KeysPreviousTab"])); - } - set { - this["KeysPreviousTab"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("9/8, 34/8")] - [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] - public string KeysNextTab { - get { - return ((string)(this["KeysNextTab"])); - } - set { - this["KeysNextTab"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ShowCompleteConsPathInTitle { - get { - return ((bool)(this["ShowCompleteConsPathInTitle"])); - } - set { - this["ShowCompleteConsPathInTitle"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("20")] - public int ConRDPOverallConnectionTimeout { - get { - return ((int)(this["ConRDPOverallConnectionTimeout"])); - } - set { - this["ConRDPOverallConnectionTimeout"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("AES")] - public global::mRemoteNG.Security.BlockCipherEngines EncryptionEngine { - get { - return ((global::mRemoteNG.Security.BlockCipherEngines)(this["EncryptionEngine"])); - } - set { - this["EncryptionEngine"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("GCM")] - public global::mRemoteNG.Security.BlockCipherModes EncryptionBlockCipherMode { - get { - return ((global::mRemoteNG.Security.BlockCipherModes)(this["EncryptionBlockCipherMode"])); - } - set { - this["EncryptionBlockCipherMode"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("1000")] - public int EncryptionKeyDerivationIterations { - get { - return ((int)(this["EncryptionKeyDerivationIterations"])); - } - set { - this["EncryptionKeyDerivationIterations"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("Dynamic")] - public string ConDefaultSoundQuality { - get { - return ((string)(this["ConDefaultSoundQuality"])); - } - set { - this["ConDefaultSoundQuality"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultSoundQuality { - get { - return ((bool)(this["InhDefaultSoundQuality"])); - } - set { - this["InhDefaultSoundQuality"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("0")] - public int ConDefaultRDPMinutesToIdleTimeout { - get { - return ((int)(this["ConDefaultRDPMinutesToIdleTimeout"])); - } - set { - this["ConDefaultRDPMinutesToIdleTimeout"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRDPMinutesToIdleTimeout { - get { - return ((bool)(this["InhDefaultRDPMinutesToIdleTimeout"])); - } - set { - this["InhDefaultRDPMinutesToIdleTimeout"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ConDefaultRDPAlertIdleTimeout { - get { - return ((bool)(this["ConDefaultRDPAlertIdleTimeout"])); - } - set { - this["ConDefaultRDPAlertIdleTimeout"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultRDPAlertIdleTimeout { - get { - return ((bool)(this["InhDefaultRDPAlertIdleTimeout"])); - } - set { - this["InhDefaultRDPAlertIdleTimeout"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool InhDefaultCredentialRecord { - get { - return ((bool)(this["InhDefaultCredentialRecord"])); - } - set { - this["InhDefaultCredentialRecord"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("00000000-0000-0000-0000-000000000000")] - public global::System.Guid ConDefaultCredentialRecord { - get { - return ((global::System.Guid)(this["ConDefaultCredentialRecord"])); - } - set { - this["ConDefaultCredentialRecord"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("")] - public string LogFilePath { - get { - return ((string)(this["LogFilePath"])); - } - set { - this["LogFilePath"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool TextLogMessageWriterWriteDebugMsgs { - get { - return ((bool)(this["TextLogMessageWriterWriteDebugMsgs"])); - } - set { - this["TextLogMessageWriterWriteDebugMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool TextLogMessageWriterWriteInfoMsgs { - get { - return ((bool)(this["TextLogMessageWriterWriteInfoMsgs"])); - } - set { - this["TextLogMessageWriterWriteInfoMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool TextLogMessageWriterWriteWarningMsgs { - get { - return ((bool)(this["TextLogMessageWriterWriteWarningMsgs"])); - } - set { - this["TextLogMessageWriterWriteWarningMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool TextLogMessageWriterWriteErrorMsgs { - get { - return ((bool)(this["TextLogMessageWriterWriteErrorMsgs"])); - } - set { - this["TextLogMessageWriterWriteErrorMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool NotificationPanelWriterWriteDebugMsgs { - get { - return ((bool)(this["NotificationPanelWriterWriteDebugMsgs"])); - } - set { - this["NotificationPanelWriterWriteDebugMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool NotificationPanelWriterWriteInfoMsgs { - get { - return ((bool)(this["NotificationPanelWriterWriteInfoMsgs"])); - } - set { - this["NotificationPanelWriterWriteInfoMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool NotificationPanelWriterWriteWarningMsgs { - get { - return ((bool)(this["NotificationPanelWriterWriteWarningMsgs"])); - } - set { - this["NotificationPanelWriterWriteWarningMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool NotificationPanelWriterWriteErrorMsgs { - get { - return ((bool)(this["NotificationPanelWriterWriteErrorMsgs"])); - } - set { - this["NotificationPanelWriterWriteErrorMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool PopupMessageWriterWriteDebugMsgs { - get { - return ((bool)(this["PopupMessageWriterWriteDebugMsgs"])); - } - set { - this["PopupMessageWriterWriteDebugMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool PopupMessageWriterWriteInfoMsgs { - get { - return ((bool)(this["PopupMessageWriterWriteInfoMsgs"])); - } - set { - this["PopupMessageWriterWriteInfoMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool PopupMessageWriterWriteWarningMsgs { - get { - return ((bool)(this["PopupMessageWriterWriteWarningMsgs"])); - } - set { - this["PopupMessageWriterWriteWarningMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool PopupMessageWriterWriteErrorMsgs { - get { - return ((bool)(this["PopupMessageWriterWriteErrorMsgs"])); - } - set { - this["PopupMessageWriterWriteErrorMsgs"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool LogToApplicationDirectory { - get { - return ((bool)(this["LogToApplicationDirectory"])); - } - set { - this["LogToApplicationDirectory"] = value; - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("True")] - public bool PromptUnlockCredReposOnStartup { - get { - return ((bool)(this["PromptUnlockCredReposOnStartup"])); - } - set { - this["PromptUnlockCredReposOnStartup"] = value; - } - } - - [global::System.Configuration.ApplicationScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("cs-CZ,de,el,en,en-US,es-AR,es,fr,hu,it,ja-JP,ko-KR,nb-NO,nl,pt,pt-BR,pl,ru,uk,tr-" + - "TR,zh-CN,zh-TW")] - public string SupportedUICultures { - get { - return ((string)(this["SupportedUICultures"])); - } - } - - [global::System.Configuration.UserScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] - public bool ThemingActive { - get { - return ((bool)(this["ThemingActive"])); - } - set { - this["ThemingActive"] = value; - } - } - } -} +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace mRemoteNG { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.3.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default { + get { + return defaultInstance; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("0, 0")] + public global::System.Drawing.Point MainFormLocation { + get { + return ((global::System.Drawing.Point)(this["MainFormLocation"])); + } + set { + this["MainFormLocation"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("0, 0")] + public global::System.Drawing.Size MainFormSize { + get { + return ((global::System.Drawing.Size)(this["MainFormSize"])); + } + set { + this["MainFormSize"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("Normal")] + public global::System.Windows.Forms.FormWindowState MainFormState { + get { + return ((global::System.Windows.Forms.FormWindowState)(this["MainFormState"])); + } + set { + this["MainFormState"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool MainFormKiosk { + get { + return ((bool)(this["MainFormKiosk"])); + } + set { + this["MainFormKiosk"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool DoUpgrade { + get { + return ((bool)(this["DoUpgrade"])); + } + set { + this["DoUpgrade"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string CustomPuttyPath { + get { + return ((string)(this["CustomPuttyPath"])); + } + set { + this["CustomPuttyPath"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool SwitchToMCOnInformation { + get { + return ((bool)(this["SwitchToMCOnInformation"])); + } + set { + this["SwitchToMCOnInformation"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool SwitchToMCOnWarning { + get { + return ((bool)(this["SwitchToMCOnWarning"])); + } + set { + this["SwitchToMCOnWarning"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool SwitchToMCOnError { + get { + return ((bool)(this["SwitchToMCOnError"])); + } + set { + this["SwitchToMCOnError"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool AutomaticallyGetSessionInfo { + get { + return ((bool)(this["AutomaticallyGetSessionInfo"])); + } + set { + this["AutomaticallyGetSessionInfo"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool LoadConsFromCustomLocation { + get { + return ((bool)(this["LoadConsFromCustomLocation"])); + } + set { + this["LoadConsFromCustomLocation"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string CustomConsPath { + get { + return ((string)(this["CustomConsPath"])); + } + set { + this["CustomConsPath"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool SaveConsOnExit { + get { + return ((bool)(this["SaveConsOnExit"])); + } + set { + this["SaveConsOnExit"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool CheckForUpdatesOnStartup { + get { + return ((bool)(this["CheckForUpdatesOnStartup"])); + } + set { + this["CheckForUpdatesOnStartup"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ShowDescriptionTooltipsInTree { + get { + return ((bool)(this["ShowDescriptionTooltipsInTree"])); + } + set { + this["ShowDescriptionTooltipsInTree"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ShowSystemTrayIcon { + get { + return ((bool)(this["ShowSystemTrayIcon"])); + } + set { + this["ShowSystemTrayIcon"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool OpenTabsRightOfSelected { + get { + return ((bool)(this["OpenTabsRightOfSelected"])); + } + set { + this["OpenTabsRightOfSelected"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ShowLogonInfoOnTabs { + get { + return ((bool)(this["ShowLogonInfoOnTabs"])); + } + set { + this["ShowLogonInfoOnTabs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool SingleClickOnConnectionOpensIt { + get { + return ((bool)(this["SingleClickOnConnectionOpensIt"])); + } + set { + this["SingleClickOnConnectionOpensIt"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("noinfo")] + public string EmptyCredentials { + get { + return ((string)(this["EmptyCredentials"])); + } + set { + this["EmptyCredentials"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string DefaultUsername { + get { + return ((string)(this["DefaultUsername"])); + } + set { + this["DefaultUsername"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string DefaultPassword { + get { + return ((string)(this["DefaultPassword"])); + } + set { + this["DefaultPassword"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string DefaultDomain { + get { + return ((string)(this["DefaultDomain"])); + } + set { + this["DefaultDomain"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool UseCustomPuttyPath { + get { + return ((bool)(this["UseCustomPuttyPath"])); + } + set { + this["UseCustomPuttyPath"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool FirstStart { + get { + return ((bool)(this["FirstStart"])); + } + set { + this["FirstStart"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ShowProtocolOnTabs { + get { + return ((bool)(this["ShowProtocolOnTabs"])); + } + set { + this["ShowProtocolOnTabs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ResetPanels { + get { + return ((bool)(this["ResetPanels"])); + } + set { + this["ResetPanels"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool UpdateUseProxy { + get { + return ((bool)(this["UpdateUseProxy"])); + } + set { + this["UpdateUseProxy"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string UpdateProxyAddress { + get { + return ((string)(this["UpdateProxyAddress"])); + } + set { + this["UpdateProxyAddress"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("80")] + public int UpdateProxyPort { + get { + return ((int)(this["UpdateProxyPort"])); + } + set { + this["UpdateProxyPort"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool UpdateProxyUseAuthentication { + get { + return ((bool)(this["UpdateProxyUseAuthentication"])); + } + set { + this["UpdateProxyUseAuthentication"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string UpdateProxyAuthUser { + get { + return ((string)(this["UpdateProxyAuthUser"])); + } + set { + this["UpdateProxyAuthUser"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string UpdateProxyAuthPass { + get { + return ((string)(this["UpdateProxyAuthPass"])); + } + set { + this["UpdateProxyAuthPass"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultDescription { + get { + return ((string)(this["ConDefaultDescription"])); + } + set { + this["ConDefaultDescription"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("RDP")] + public string ConDefaultProtocol { + get { + return ((string)(this["ConDefaultProtocol"])); + } + set { + this["ConDefaultProtocol"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("Default Settings")] + public string ConDefaultPuttySession { + get { + return ((string)(this["ConDefaultPuttySession"])); + } + set { + this["ConDefaultPuttySession"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultUseConsoleSession { + get { + return ((bool)(this["ConDefaultUseConsoleSession"])); + } + set { + this["ConDefaultUseConsoleSession"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("FitToWindow")] + public string ConDefaultResolution { + get { + return ((string)(this["ConDefaultResolution"])); + } + set { + this["ConDefaultResolution"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("Colors16Bit")] + public string ConDefaultColors { + get { + return ((string)(this["ConDefaultColors"])); + } + set { + this["ConDefaultColors"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultCacheBitmaps { + get { + return ((bool)(this["ConDefaultCacheBitmaps"])); + } + set { + this["ConDefaultCacheBitmaps"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultDisplayWallpaper { + get { + return ((bool)(this["ConDefaultDisplayWallpaper"])); + } + set { + this["ConDefaultDisplayWallpaper"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultDisplayThemes { + get { + return ((bool)(this["ConDefaultDisplayThemes"])); + } + set { + this["ConDefaultDisplayThemes"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultRedirectKeys { + get { + return ((bool)(this["ConDefaultRedirectKeys"])); + } + set { + this["ConDefaultRedirectKeys"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultRedirectDiskDrives { + get { + return ((bool)(this["ConDefaultRedirectDiskDrives"])); + } + set { + this["ConDefaultRedirectDiskDrives"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultRedirectPrinters { + get { + return ((bool)(this["ConDefaultRedirectPrinters"])); + } + set { + this["ConDefaultRedirectPrinters"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultRedirectPorts { + get { + return ((bool)(this["ConDefaultRedirectPorts"])); + } + set { + this["ConDefaultRedirectPorts"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultRedirectSmartCards { + get { + return ((bool)(this["ConDefaultRedirectSmartCards"])); + } + set { + this["ConDefaultRedirectSmartCards"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("DoNotPlay")] + public string ConDefaultRedirectSound { + get { + return ((string)(this["ConDefaultRedirectSound"])); + } + set { + this["ConDefaultRedirectSound"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("2")] + public int MaxPuttyWaitTime { + get { + return ((int)(this["MaxPuttyWaitTime"])); + } + set { + this["MaxPuttyWaitTime"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool SingleInstance { + get { + return ((bool)(this["SingleInstance"])); + } + set { + this["SingleInstance"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool OpenConsFromLastSession { + get { + return ((bool)(this["OpenConsFromLastSession"])); + } + set { + this["OpenConsFromLastSession"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool NoReconnect { + get { + return ((bool)(this["NoReconnect"])); + } + set { + this["NoReconnect"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("0")] + public int AutoSaveEveryMinutes { + get { + return ((int)(this["AutoSaveEveryMinutes"])); + } + set { + this["AutoSaveEveryMinutes"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ExtAppsTBVisible { + get { + return ((bool)(this["ExtAppsTBVisible"])); + } + set { + this["ExtAppsTBVisible"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool ExtAppsTBShowText { + get { + return ((bool)(this["ExtAppsTBShowText"])); + } + set { + this["ExtAppsTBShowText"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("0, 0")] + public global::System.Drawing.Point ExtAppsTBLocation { + get { + return ((global::System.Drawing.Point)(this["ExtAppsTBLocation"])); + } + set { + this["ExtAppsTBLocation"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("Bottom")] + public string ExtAppsTBParentDock { + get { + return ((string)(this["ExtAppsTBParentDock"])); + } + set { + this["ExtAppsTBParentDock"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool QuickyTBVisible { + get { + return ((bool)(this["QuickyTBVisible"])); + } + set { + this["QuickyTBVisible"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("3, 24")] + public global::System.Drawing.Point QuickyTBLocation { + get { + return ((global::System.Drawing.Point)(this["QuickyTBLocation"])); + } + set { + this["QuickyTBLocation"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("Top")] + public string QuickyTBParentDock { + get { + return ((string)(this["QuickyTBParentDock"])); + } + set { + this["QuickyTBParentDock"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ResetToolbars { + get { + return ((bool)(this["ResetToolbars"])); + } + set { + this["ResetToolbars"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool UseSQLServer { + get { + return ((bool)(this["UseSQLServer"])); + } + set { + this["UseSQLServer"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string SQLHost { + get { + return ((string)(this["SQLHost"])); + } + set { + this["SQLHost"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string SQLUser { + get { + return ((string)(this["SQLUser"])); + } + set { + this["SQLUser"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string SQLPass { + get { + return ((string)(this["SQLPass"])); + } + set { + this["SQLPass"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultCacheBitmaps { + get { + return ((bool)(this["InhDefaultCacheBitmaps"])); + } + set { + this["InhDefaultCacheBitmaps"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultColors { + get { + return ((bool)(this["InhDefaultColors"])); + } + set { + this["InhDefaultColors"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultDescription { + get { + return ((bool)(this["InhDefaultDescription"])); + } + set { + this["InhDefaultDescription"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultDisplayThemes { + get { + return ((bool)(this["InhDefaultDisplayThemes"])); + } + set { + this["InhDefaultDisplayThemes"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultDisplayWallpaper { + get { + return ((bool)(this["InhDefaultDisplayWallpaper"])); + } + set { + this["InhDefaultDisplayWallpaper"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultDomain { + get { + return ((bool)(this["InhDefaultDomain"])); + } + set { + this["InhDefaultDomain"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultIcon { + get { + return ((bool)(this["InhDefaultIcon"])); + } + set { + this["InhDefaultIcon"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultPassword { + get { + return ((bool)(this["InhDefaultPassword"])); + } + set { + this["InhDefaultPassword"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultPort { + get { + return ((bool)(this["InhDefaultPort"])); + } + set { + this["InhDefaultPort"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultProtocol { + get { + return ((bool)(this["InhDefaultProtocol"])); + } + set { + this["InhDefaultProtocol"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultPuttySession { + get { + return ((bool)(this["InhDefaultPuttySession"])); + } + set { + this["InhDefaultPuttySession"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRedirectDiskDrives { + get { + return ((bool)(this["InhDefaultRedirectDiskDrives"])); + } + set { + this["InhDefaultRedirectDiskDrives"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRedirectKeys { + get { + return ((bool)(this["InhDefaultRedirectKeys"])); + } + set { + this["InhDefaultRedirectKeys"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRedirectPorts { + get { + return ((bool)(this["InhDefaultRedirectPorts"])); + } + set { + this["InhDefaultRedirectPorts"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRedirectPrinters { + get { + return ((bool)(this["InhDefaultRedirectPrinters"])); + } + set { + this["InhDefaultRedirectPrinters"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRedirectSmartCards { + get { + return ((bool)(this["InhDefaultRedirectSmartCards"])); + } + set { + this["InhDefaultRedirectSmartCards"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRedirectSound { + get { + return ((bool)(this["InhDefaultRedirectSound"])); + } + set { + this["InhDefaultRedirectSound"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultResolution { + get { + return ((bool)(this["InhDefaultResolution"])); + } + set { + this["InhDefaultResolution"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultUseConsoleSession { + get { + return ((bool)(this["InhDefaultUseConsoleSession"])); + } + set { + this["InhDefaultUseConsoleSession"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultUsername { + get { + return ((bool)(this["InhDefaultUsername"])); + } + set { + this["InhDefaultUsername"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultPanel { + get { + return ((bool)(this["InhDefaultPanel"])); + } + set { + this["InhDefaultPanel"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("EncrBasic")] + public string ConDefaultICAEncryptionStrength { + get { + return ((string)(this["ConDefaultICAEncryptionStrength"])); + } + set { + this["ConDefaultICAEncryptionStrength"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultICAEncryptionStrength { + get { + return ((bool)(this["InhDefaultICAEncryptionStrength"])); + } + set { + this["InhDefaultICAEncryptionStrength"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultPreExtApp { + get { + return ((string)(this["ConDefaultPreExtApp"])); + } + set { + this["ConDefaultPreExtApp"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultPostExtApp { + get { + return ((string)(this["ConDefaultPostExtApp"])); + } + set { + this["ConDefaultPostExtApp"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultPreExtApp { + get { + return ((bool)(this["InhDefaultPreExtApp"])); + } + set { + this["InhDefaultPreExtApp"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultPostExtApp { + get { + return ((bool)(this["InhDefaultPostExtApp"])); + } + set { + this["InhDefaultPostExtApp"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool SetHostnameLikeDisplayName { + get { + return ((bool)(this["SetHostnameLikeDisplayName"])); + } + set { + this["SetHostnameLikeDisplayName"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool DoubleClickOnTabClosesIt { + get { + return ((bool)(this["DoubleClickOnTabClosesIt"])); + } + set { + this["DoubleClickOnTabClosesIt"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ReconnectOnDisconnect { + get { + return ((bool)(this["ReconnectOnDisconnect"])); + } + set { + this["ReconnectOnDisconnect"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool AlwaysShowPanelSelectionDlg { + get { + return ((bool)(this["AlwaysShowPanelSelectionDlg"])); + } + set { + this["AlwaysShowPanelSelectionDlg"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("AuthVNC")] + public string ConDefaultVNCAuthMode { + get { + return ((string)(this["ConDefaultVNCAuthMode"])); + } + set { + this["ConDefaultVNCAuthMode"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("ColNormal")] + public string ConDefaultVNCColors { + get { + return ((string)(this["ConDefaultVNCColors"])); + } + set { + this["ConDefaultVNCColors"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("SmartSAspect")] + public string ConDefaultVNCSmartSizeMode { + get { + return ((string)(this["ConDefaultVNCSmartSizeMode"])); + } + set { + this["ConDefaultVNCSmartSizeMode"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultVNCViewOnly { + get { + return ((bool)(this["ConDefaultVNCViewOnly"])); + } + set { + this["ConDefaultVNCViewOnly"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("CompNone")] + public string ConDefaultVNCCompression { + get { + return ((string)(this["ConDefaultVNCCompression"])); + } + set { + this["ConDefaultVNCCompression"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("EncHextile")] + public string ConDefaultVNCEncoding { + get { + return ((string)(this["ConDefaultVNCEncoding"])); + } + set { + this["ConDefaultVNCEncoding"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultVNCProxyIP { + get { + return ((string)(this["ConDefaultVNCProxyIP"])); + } + set { + this["ConDefaultVNCProxyIP"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultVNCProxyPassword { + get { + return ((string)(this["ConDefaultVNCProxyPassword"])); + } + set { + this["ConDefaultVNCProxyPassword"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("0")] + public int ConDefaultVNCProxyPort { + get { + return ((int)(this["ConDefaultVNCProxyPort"])); + } + set { + this["ConDefaultVNCProxyPort"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("ProxyNone")] + public string ConDefaultVNCProxyType { + get { + return ((string)(this["ConDefaultVNCProxyType"])); + } + set { + this["ConDefaultVNCProxyType"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultVNCProxyUsername { + get { + return ((string)(this["ConDefaultVNCProxyUsername"])); + } + set { + this["ConDefaultVNCProxyUsername"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultVNCAuthMode { + get { + return ((bool)(this["InhDefaultVNCAuthMode"])); + } + set { + this["InhDefaultVNCAuthMode"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultVNCColors { + get { + return ((bool)(this["InhDefaultVNCColors"])); + } + set { + this["InhDefaultVNCColors"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultVNCSmartSizeMode { + get { + return ((bool)(this["InhDefaultVNCSmartSizeMode"])); + } + set { + this["InhDefaultVNCSmartSizeMode"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultVNCViewOnly { + get { + return ((bool)(this["InhDefaultVNCViewOnly"])); + } + set { + this["InhDefaultVNCViewOnly"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultVNCCompression { + get { + return ((bool)(this["InhDefaultVNCCompression"])); + } + set { + this["InhDefaultVNCCompression"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultVNCEncoding { + get { + return ((bool)(this["InhDefaultVNCEncoding"])); + } + set { + this["InhDefaultVNCEncoding"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultVNCProxyIP { + get { + return ((bool)(this["InhDefaultVNCProxyIP"])); + } + set { + this["InhDefaultVNCProxyIP"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultVNCProxyPassword { + get { + return ((bool)(this["InhDefaultVNCProxyPassword"])); + } + set { + this["InhDefaultVNCProxyPassword"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultVNCProxyPort { + get { + return ((bool)(this["InhDefaultVNCProxyPort"])); + } + set { + this["InhDefaultVNCProxyPort"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultVNCProxyType { + get { + return ((bool)(this["InhDefaultVNCProxyType"])); + } + set { + this["InhDefaultVNCProxyType"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultVNCProxyUsername { + get { + return ((bool)(this["InhDefaultVNCProxyUsername"])); + } + set { + this["InhDefaultVNCProxyUsername"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool MinimizeToTray { + get { + return ((bool)(this["MinimizeToTray"])); + } + set { + this["MinimizeToTray"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool SingleClickSwitchesToOpenConnection { + get { + return ((bool)(this["SingleClickSwitchesToOpenConnection"])); + } + set { + this["SingleClickSwitchesToOpenConnection"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("NoAuth")] + public string ConDefaultRDPAuthenticationLevel { + get { + return ((string)(this["ConDefaultRDPAuthenticationLevel"])); + } + set { + this["ConDefaultRDPAuthenticationLevel"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRDPAuthenticationLevel { + get { + return ((bool)(this["InhDefaultRDPAuthenticationLevel"])); + } + set { + this["InhDefaultRDPAuthenticationLevel"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("5500")] + public int UVNCSCPort { + get { + return ((int)(this["UVNCSCPort"])); + } + set { + this["UVNCSCPort"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool StartupComponentsCheck { + get { + return ((bool)(this["StartupComponentsCheck"])); + } + set { + this["StartupComponentsCheck"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string XULRunnerPath { + get { + return ((string)(this["XULRunnerPath"])); + } + set { + this["XULRunnerPath"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("IE")] + public string ConDefaultRenderingEngine { + get { + return ((string)(this["ConDefaultRenderingEngine"])); + } + set { + this["ConDefaultRenderingEngine"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRenderingEngine { + get { + return ((bool)(this["InhDefaultRenderingEngine"])); + } + set { + this["InhDefaultRenderingEngine"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultMacAddress { + get { + return ((string)(this["ConDefaultMacAddress"])); + } + set { + this["ConDefaultMacAddress"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultMacAddress { + get { + return ((bool)(this["InhDefaultMacAddress"])); + } + set { + this["InhDefaultMacAddress"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool EncryptCompleteConnectionsFile { + get { + return ((bool)(this["EncryptCompleteConnectionsFile"])); + } + set { + this["EncryptCompleteConnectionsFile"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultUserField { + get { + return ((string)(this["ConDefaultUserField"])); + } + set { + this["ConDefaultUserField"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultUserField { + get { + return ((bool)(this["InhDefaultUserField"])); + } + set { + this["InhDefaultUserField"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultExtApp { + get { + return ((string)(this["ConDefaultExtApp"])); + } + set { + this["ConDefaultExtApp"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultExtApp { + get { + return ((bool)(this["InhDefaultExtApp"])); + } + set { + this["InhDefaultExtApp"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool CheckForUpdatesAsked { + get { + return ((bool)(this["CheckForUpdatesAsked"])); + } + set { + this["CheckForUpdatesAsked"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("14")] + public int CheckForUpdatesFrequencyDays { + get { + return ((int)(this["CheckForUpdatesFrequencyDays"])); + } + set { + this["CheckForUpdatesFrequencyDays"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("1980-01-01")] + public global::System.DateTime CheckForUpdatesLastCheck { + get { + return ((global::System.DateTime)(this["CheckForUpdatesLastCheck"])); + } + set { + this["CheckForUpdatesLastCheck"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool UpdatePending { + get { + return ((bool)(this["UpdatePending"])); + } + set { + this["UpdatePending"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("Never")] + public string ConDefaultRDGatewayUsageMethod { + get { + return ((string)(this["ConDefaultRDGatewayUsageMethod"])); + } + set { + this["ConDefaultRDGatewayUsageMethod"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("Yes")] + public string ConDefaultRDGatewayUseConnectionCredentials { + get { + return ((string)(this["ConDefaultRDGatewayUseConnectionCredentials"])); + } + set { + this["ConDefaultRDGatewayUseConnectionCredentials"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("mRemoteNG")] + public string ConDefaultIcon { + get { + return ((string)(this["ConDefaultIcon"])); + } + set { + this["ConDefaultIcon"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRDGatewayUsageMethod { + get { + return ((bool)(this["InhDefaultRDGatewayUsageMethod"])); + } + set { + this["InhDefaultRDGatewayUsageMethod"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRDGatewayHostname { + get { + return ((bool)(this["InhDefaultRDGatewayHostname"])); + } + set { + this["InhDefaultRDGatewayHostname"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRDGatewayUsername { + get { + return ((bool)(this["InhDefaultRDGatewayUsername"])); + } + set { + this["InhDefaultRDGatewayUsername"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRDGatewayPassword { + get { + return ((bool)(this["InhDefaultRDGatewayPassword"])); + } + set { + this["InhDefaultRDGatewayPassword"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRDGatewayDomain { + get { + return ((bool)(this["InhDefaultRDGatewayDomain"])); + } + set { + this["InhDefaultRDGatewayDomain"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRDGatewayUseConnectionCredentials { + get { + return ((bool)(this["InhDefaultRDGatewayUseConnectionCredentials"])); + } + set { + this["InhDefaultRDGatewayUseConnectionCredentials"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("5")] + public int RdpReconnectionCount { + get { + return ((int)(this["RdpReconnectionCount"])); + } + set { + this["RdpReconnectionCount"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string OverrideUICulture { + get { + return ((string)(this["OverrideUICulture"])); + } + set { + this["OverrideUICulture"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultRDGatewayHostname { + get { + return ((string)(this["ConDefaultRDGatewayHostname"])); + } + set { + this["ConDefaultRDGatewayHostname"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultRDGatewayUsername { + get { + return ((string)(this["ConDefaultRDGatewayUsername"])); + } + set { + this["ConDefaultRDGatewayUsername"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultRDGatewayPassword { + get { + return ((string)(this["ConDefaultRDGatewayPassword"])); + } + set { + this["ConDefaultRDGatewayPassword"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultRDGatewayDomain { + get { + return ((string)(this["ConDefaultRDGatewayDomain"])); + } + set { + this["ConDefaultRDGatewayDomain"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultEnableFontSmoothing { + get { + return ((bool)(this["ConDefaultEnableFontSmoothing"])); + } + set { + this["ConDefaultEnableFontSmoothing"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultEnableFontSmoothing { + get { + return ((bool)(this["InhDefaultEnableFontSmoothing"])); + } + set { + this["InhDefaultEnableFontSmoothing"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultEnableDesktopComposition { + get { + return ((bool)(this["ConDefaultEnableDesktopComposition"])); + } + set { + this["ConDefaultEnableDesktopComposition"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultEnableDesktopComposition { + get { + return ((bool)(this["InhDefaultEnableDesktopComposition"])); + } + set { + this["InhDefaultEnableDesktopComposition"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("4")] + public int ConfirmCloseConnection { + get { + return ((int)(this["ConfirmCloseConnection"])); + } + set { + this["ConfirmCloseConnection"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public global::System.Drawing.Size MainFormRestoreSize { + get { + return ((global::System.Drawing.Size)(this["MainFormRestoreSize"])); + } + set { + this["MainFormRestoreSize"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + public global::System.Drawing.Point MainFormRestoreLocation { + get { + return ((global::System.Drawing.Point)(this["MainFormRestoreLocation"])); + } + set { + this["MainFormRestoreLocation"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("mRemoteNG")] + public string SQLDatabaseName { + get { + return ((string)(this["SQLDatabaseName"])); + } + set { + this["SQLDatabaseName"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("10")] + [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] + public int BackupFileKeepCount { + get { + return ((int)(this["BackupFileKeepCount"])); + } + set { + this["BackupFileKeepCount"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("{0}.{1:yyyyMMdd-HHmmssffff}.backup")] + [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] + public string BackupFileNameFormat { + get { + return ((string)(this["BackupFileNameFormat"])); + } + set { + this["BackupFileNameFormat"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultUseCredSsp { + get { + return ((bool)(this["InhDefaultUseCredSsp"])); + } + set { + this["InhDefaultUseCredSsp"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool ConDefaultUseCredSsp { + get { + return ((bool)(this["ConDefaultUseCredSsp"])); + } + set { + this["ConDefaultUseCredSsp"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] + public bool AlwaysShowPanelTabs { + get { + return ((bool)(this["AlwaysShowPanelTabs"])); + } + set { + this["AlwaysShowPanelTabs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] + public bool IdentifyQuickConnectTabs { + get { + return ((bool)(this["IdentifyQuickConnectTabs"])); + } + set { + this["IdentifyQuickConnectTabs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("release")] + public string UpdateChannel { + get { + return ((string)(this["UpdateChannel"])); + } + set { + this["UpdateChannel"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ThemeName { + get { + return ((string)(this["ThemeName"])); + } + set { + this["ThemeName"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool ShowConfigHelpText { + get { + return ((bool)(this["ShowConfigHelpText"])); + } + set { + this["ShowConfigHelpText"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string PuttySavedSessionsName { + get { + return ((string)(this["PuttySavedSessionsName"])); + } + set { + this["PuttySavedSessionsName"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string PuttySavedSessionsPanel { + get { + return ((string)(this["PuttySavedSessionsPanel"])); + } + set { + this["PuttySavedSessionsPanel"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool CompatibilityWarnLenovoAutoScrollUtility { + get { + return ((bool)(this["CompatibilityWarnLenovoAutoScrollUtility"])); + } + set { + this["CompatibilityWarnLenovoAutoScrollUtility"] = value; + } + } + + [global::System.Configuration.ApplicationScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("https://mremoteng.org/")] + public string UpdateAddress { + get { + return ((string)(this["UpdateAddress"])); + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string ConDefaultLoadBalanceInfo { + get { + return ((string)(this["ConDefaultLoadBalanceInfo"])); + } + set { + this["ConDefaultLoadBalanceInfo"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool ConDefaultAutomaticResize { + get { + return ((bool)(this["ConDefaultAutomaticResize"])); + } + set { + this["ConDefaultAutomaticResize"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultLoadBalanceInfo { + get { + return ((bool)(this["InhDefaultLoadBalanceInfo"])); + } + set { + this["InhDefaultLoadBalanceInfo"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultAutomaticResize { + get { + return ((bool)(this["InhDefaultAutomaticResize"])); + } + set { + this["InhDefaultAutomaticResize"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("RDP")] + [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] + public string QuickConnectProtocol { + get { + return ((string)(this["QuickConnectProtocol"])); + } + set { + this["QuickConnectProtocol"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("9/9, 33/8")] + [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] + public string KeysPreviousTab { + get { + return ((string)(this["KeysPreviousTab"])); + } + set { + this["KeysPreviousTab"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("9/8, 34/8")] + [global::System.Configuration.SettingsManageabilityAttribute(global::System.Configuration.SettingsManageability.Roaming)] + public string KeysNextTab { + get { + return ((string)(this["KeysNextTab"])); + } + set { + this["KeysNextTab"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ShowCompleteConsPathInTitle { + get { + return ((bool)(this["ShowCompleteConsPathInTitle"])); + } + set { + this["ShowCompleteConsPathInTitle"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("20")] + public int ConRDPOverallConnectionTimeout { + get { + return ((int)(this["ConRDPOverallConnectionTimeout"])); + } + set { + this["ConRDPOverallConnectionTimeout"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("AES")] + public global::mRemoteNG.Security.BlockCipherEngines EncryptionEngine { + get { + return ((global::mRemoteNG.Security.BlockCipherEngines)(this["EncryptionEngine"])); + } + set { + this["EncryptionEngine"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("GCM")] + public global::mRemoteNG.Security.BlockCipherModes EncryptionBlockCipherMode { + get { + return ((global::mRemoteNG.Security.BlockCipherModes)(this["EncryptionBlockCipherMode"])); + } + set { + this["EncryptionBlockCipherMode"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("1000")] + public int EncryptionKeyDerivationIterations { + get { + return ((int)(this["EncryptionKeyDerivationIterations"])); + } + set { + this["EncryptionKeyDerivationIterations"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("Dynamic")] + public string ConDefaultSoundQuality { + get { + return ((string)(this["ConDefaultSoundQuality"])); + } + set { + this["ConDefaultSoundQuality"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultSoundQuality { + get { + return ((bool)(this["InhDefaultSoundQuality"])); + } + set { + this["InhDefaultSoundQuality"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("0")] + public int ConDefaultRDPMinutesToIdleTimeout { + get { + return ((int)(this["ConDefaultRDPMinutesToIdleTimeout"])); + } + set { + this["ConDefaultRDPMinutesToIdleTimeout"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRDPMinutesToIdleTimeout { + get { + return ((bool)(this["InhDefaultRDPMinutesToIdleTimeout"])); + } + set { + this["InhDefaultRDPMinutesToIdleTimeout"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ConDefaultRDPAlertIdleTimeout { + get { + return ((bool)(this["ConDefaultRDPAlertIdleTimeout"])); + } + set { + this["ConDefaultRDPAlertIdleTimeout"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultRDPAlertIdleTimeout { + get { + return ((bool)(this["InhDefaultRDPAlertIdleTimeout"])); + } + set { + this["InhDefaultRDPAlertIdleTimeout"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool InhDefaultCredentialRecord { + get { + return ((bool)(this["InhDefaultCredentialRecord"])); + } + set { + this["InhDefaultCredentialRecord"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("00000000-0000-0000-0000-000000000000")] + public global::System.Guid ConDefaultCredentialRecord { + get { + return ((global::System.Guid)(this["ConDefaultCredentialRecord"])); + } + set { + this["ConDefaultCredentialRecord"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string LogFilePath { + get { + return ((string)(this["LogFilePath"])); + } + set { + this["LogFilePath"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool TextLogMessageWriterWriteDebugMsgs { + get { + return ((bool)(this["TextLogMessageWriterWriteDebugMsgs"])); + } + set { + this["TextLogMessageWriterWriteDebugMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool TextLogMessageWriterWriteInfoMsgs { + get { + return ((bool)(this["TextLogMessageWriterWriteInfoMsgs"])); + } + set { + this["TextLogMessageWriterWriteInfoMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool TextLogMessageWriterWriteWarningMsgs { + get { + return ((bool)(this["TextLogMessageWriterWriteWarningMsgs"])); + } + set { + this["TextLogMessageWriterWriteWarningMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool TextLogMessageWriterWriteErrorMsgs { + get { + return ((bool)(this["TextLogMessageWriterWriteErrorMsgs"])); + } + set { + this["TextLogMessageWriterWriteErrorMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool NotificationPanelWriterWriteDebugMsgs { + get { + return ((bool)(this["NotificationPanelWriterWriteDebugMsgs"])); + } + set { + this["NotificationPanelWriterWriteDebugMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool NotificationPanelWriterWriteInfoMsgs { + get { + return ((bool)(this["NotificationPanelWriterWriteInfoMsgs"])); + } + set { + this["NotificationPanelWriterWriteInfoMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool NotificationPanelWriterWriteWarningMsgs { + get { + return ((bool)(this["NotificationPanelWriterWriteWarningMsgs"])); + } + set { + this["NotificationPanelWriterWriteWarningMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool NotificationPanelWriterWriteErrorMsgs { + get { + return ((bool)(this["NotificationPanelWriterWriteErrorMsgs"])); + } + set { + this["NotificationPanelWriterWriteErrorMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool PopupMessageWriterWriteDebugMsgs { + get { + return ((bool)(this["PopupMessageWriterWriteDebugMsgs"])); + } + set { + this["PopupMessageWriterWriteDebugMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool PopupMessageWriterWriteInfoMsgs { + get { + return ((bool)(this["PopupMessageWriterWriteInfoMsgs"])); + } + set { + this["PopupMessageWriterWriteInfoMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool PopupMessageWriterWriteWarningMsgs { + get { + return ((bool)(this["PopupMessageWriterWriteWarningMsgs"])); + } + set { + this["PopupMessageWriterWriteWarningMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool PopupMessageWriterWriteErrorMsgs { + get { + return ((bool)(this["PopupMessageWriterWriteErrorMsgs"])); + } + set { + this["PopupMessageWriterWriteErrorMsgs"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool LogToApplicationDirectory { + get { + return ((bool)(this["LogToApplicationDirectory"])); + } + set { + this["LogToApplicationDirectory"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool PromptUnlockCredReposOnStartup { + get { + return ((bool)(this["PromptUnlockCredReposOnStartup"])); + } + set { + this["PromptUnlockCredReposOnStartup"] = value; + } + } + + [global::System.Configuration.ApplicationScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("cs-CZ,de,el,en,en-US,es-AR,es,fr,hu,it,ja-JP,ko-KR,nb-NO,nl,pt,pt-BR,pl,ru,uk,tr-" + + "TR,zh-CN,zh-TW")] + public string SupportedUICultures { + get { + return ((string)(this["SupportedUICultures"])); + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool ThemingActive { + get { + return ((bool)(this["ThemingActive"])); + } + set { + this["ThemingActive"] = value; + } + } + } +} diff --git a/mRemoteV1/Resources/Language/Language.Designer.cs b/mRemoteV1/Resources/Language/Language.Designer.cs index 067299bdc..3055c2219 100644 --- a/mRemoteV1/Resources/Language/Language.Designer.cs +++ b/mRemoteV1/Resources/Language/Language.Designer.cs @@ -1,7420 +1,7420 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace mRemoteNG { - using System; - - - /// - /// 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 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); - } - } - - /// +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace mRemoteNG { + using System; + + + /// + /// 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 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); - } - } - - /// + ///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 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); - } - } - - /// + ///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 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); - } - } - - /// + ///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 install [rest of string was truncated]";. - /// - internal static string strCcICAFailed { - get { - return ResourceManager.GetString("strCcICAFailed", resourceCulture); - } - } - - /// + ///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); - } - } - - /// + ///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); - } - } - - /// + ///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); - } - } - - /// + ///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); - } - } - - /// + ///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); - } - } - - /// + ///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); - } - } - - /// + ///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); - } - } - - /// + ///"{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); - } - } - - /// + ///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); - } - } - - /// + ///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); - } - } - - /// + ///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); - } - } - - /// + ///{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); - } - } - - /// + ///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); - } - } - - /// + ///{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); - } - } - - /// + ///{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); - } - } - } -} + ///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/Themes/ColorMapTheme.Designer.cs b/mRemoteV1/Resources/Themes/ColorMapTheme.Designer.cs index c16940b36..0e913b60b 100644 --- a/mRemoteV1/Resources/Themes/ColorMapTheme.Designer.cs +++ b/mRemoteV1/Resources/Themes/ColorMapTheme.Designer.cs @@ -1,846 +1,846 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace mRemoteNG { - using System; - - - /// - /// 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", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class ColorMapTheme { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal ColorMapTheme() { - } - - /// - /// 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.Themes.ColorMapTheme", typeof(ColorMapTheme).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 /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='Button']/Background/@Source. - /// - internal static string Button_Background { - get { - return ResourceManager.GetString("Button_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonBorder']/Background/@Source. - /// - internal static string Button_Border { - get { - return ResourceManager.GetString("Button_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonDisabled']/Background/@Source. - /// - internal static string Button_Disabled_Background { - get { - return ResourceManager.GetString("Button_Disabled_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonBorderDisabled']/Background/@Source. - /// - internal static string Button_Disabled_Border { - get { - return ResourceManager.GetString("Button_Disabled_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonDisabled']/Foreground/@Source. - /// - internal static string Button_Disabled_Foreground { - get { - return ResourceManager.GetString("Button_Disabled_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='Button']/Foreground/@Source. - /// - internal static string Button_Foreground { - get { - return ResourceManager.GetString("Button_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonHover']/Background/@Source. - /// - internal static string Button_Hover_Background { - get { - return ResourceManager.GetString("Button_Hover_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonBorderHover']/Background/@Source. - /// - internal static string Button_Hover_Border { - get { - return ResourceManager.GetString("Button_Hover_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonHover']/Foreground/@Source. - /// - internal static string Button_Hover_Foreground { - get { - return ResourceManager.GetString("Button_Hover_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonPressed']/Background/@Source. - /// - internal static string Button_Pressed_Background { - get { - return ResourceManager.GetString("Button_Pressed_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonBorderPressed']/Background/@Source. - /// - internal static string Button_Pressed_Border { - get { - return ResourceManager.GetString("Button_Pressed_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonPressed']/Foreground/@Source. - /// - internal static string Button_Pressed_Foreground { - get { - return ResourceManager.GetString("Button_Pressed_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxBackground']/Background/@Source. - /// - internal static string CheckBox_Background { - get { - return ResourceManager.GetString("CheckBox_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxBorder']/Background/@Source. - /// - internal static string CheckBox_Border { - get { - return ResourceManager.GetString("CheckBox_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxBorderDisabled']/Background/@Source. - /// - internal static string CheckBox_Border_Disabled { - get { - return ResourceManager.GetString("CheckBox_Border_Disabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxBorderHover']/Background/@Source. - /// - internal static string CheckBox_Border_Hover { - get { - return ResourceManager.GetString("CheckBox_Border_Hover", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxBorderPressed']/Background/@Source. - /// - internal static string CheckBox_Border_Pressed { - get { - return ResourceManager.GetString("CheckBox_Border_Pressed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxGlyph']/Background/@Source. - /// - internal static string CheckBox_Glyph { - get { - return ResourceManager.GetString("CheckBox_Glyph", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxGlyphDisabled']/Background/@Source. - /// - internal static string CheckBox_Glyph_Disabled { - get { - return ResourceManager.GetString("CheckBox_Glyph_Disabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxText']/Background/@Source. - /// - internal static string CheckBox_Text { - get { - return ResourceManager.GetString("CheckBox_Text", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxTextDisabled']/Background/@Source. - /// - internal static string CheckBox_Text_Disabled { - get { - return ResourceManager.GetString("CheckBox_Text_Disabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBox']/Background/@Source. - /// - internal static string ComboBox_Background { - get { - return ResourceManager.GetString("ComboBox_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxBorder']/Background/@Source. - /// - internal static string ComboBox_Border { - get { - return ResourceManager.GetString("ComboBox_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButton']/Background/@Source. - /// - internal static string ComboBox_Button_Background { - get { - return ResourceManager.GetString("ComboBox_Button_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonBorder']/Background/@Source. - /// - internal static string ComboBox_Button_Border { - get { - return ResourceManager.GetString("ComboBox_Button_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButton']/Foreground/@Source. - /// - internal static string ComboBox_Button_Foreground { - get { - return ResourceManager.GetString("ComboBox_Button_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonMouseOver']/Background/@Source. - /// - internal static string ComboBox_Button_MouseOver_Background { - get { - return ResourceManager.GetString("ComboBox_Button_MouseOver_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonMouseOverBorder']/Background/@Source. - /// - internal static string ComboBox_Button_MouseOver_Border { - get { - return ResourceManager.GetString("ComboBox_Button_MouseOver_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonMouseOver']/Foreground/@Source. - /// - internal static string ComboBox_Button_MouseOver_Foreground { - get { - return ResourceManager.GetString("ComboBox_Button_MouseOver_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonPressed']/Background/@Source. - /// - internal static string ComboBox_Button_Pressed_Background { - get { - return ResourceManager.GetString("ComboBox_Button_Pressed_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonPressed']/Foreground/@Source. - /// - internal static string ComboBox_Button_Pressed_Foreground { - get { - return ResourceManager.GetString("ComboBox_Button_Pressed_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxDisabled']/Background/@Source. - /// - internal static string ComboBox_Disabled_Background { - get { - return ResourceManager.GetString("ComboBox_Disabled_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxDisabled']/Foreground/@Source. - /// - internal static string ComboBox_Disabled_Foreground { - get { - return ResourceManager.GetString("ComboBox_Disabled_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBox']/Foreground/@Source. - /// - internal static string ComboBox_Foreground { - get { - return ResourceManager.GetString("ComboBox_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxMouseOverBorder']/Background/@Source. - /// - internal static string ComboBox_MouseOver_Border { - get { - return ResourceManager.GetString("ComboBox_MouseOver_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxPopUpBorder']/ComboBoxPopUp/@Source. - /// - internal static string ComboBox_PopUp { - get { - return ResourceManager.GetString("ComboBox_PopUp", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxPopUpBorder']/Background/@Source. - /// - internal static string ComboBox_PopUp_Border { - get { - return ResourceManager.GetString("ComboBox_PopUp_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Environment']/Color[@Name='CommandShelfHighlightGradientBegin']/Background/@Source. - /// - internal static string CommandBarMenuDefault_Background { - get { - return ResourceManager.GetString("CommandBarMenuDefault_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Environment']/Color[@Name='CommandBarTextActive']/Background/@Source. - /// - internal static string CommandBarMenuDefault_Foreground { - get { - return ResourceManager.GetString("CommandBarMenuDefault_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='Dialog']/Background/@Source. - /// - internal static string Dialog_Background { - get { - return ResourceManager.GetString("Dialog_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='Dialog']/Foreground/@Source. - /// - internal static string Dialog_Foreground { - get { - return ResourceManager.GetString("Dialog_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Text Editor Text Marker Items']/Color[@Name='compiler error']/Background/@Source. - /// - internal static string ErrorText_Background { - get { - return ResourceManager.GetString("ErrorText_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Text Editor Text Marker Items']/Color[@Name='compiler error']/Foreground/@Source. - /// - internal static string ErrorText_Foreground { - get { - return ResourceManager.GetString("ErrorText_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabActiveBackground']/Background/@Source. - /// - internal static string GroupBox_Backgorund { - get { - return ResourceManager.GetString("GroupBox_Backgorund", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabInactiveBackground']/Background/@Source. - /// - internal static string GroupBox_Disabled_Background { - get { - return ResourceManager.GetString("GroupBox_Disabled_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabInactiveText']/Background/@Source. - /// - internal static string GroupBox_Disabled_Foreground { - get { - return ResourceManager.GetString("GroupBox_Disabled_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabInactiveBorder']/Background/@Source. - /// - internal static string GroupBox_Disabled_Line { - get { - return ResourceManager.GetString("GroupBox_Disabled_Line", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabActiveText']/Background/@Source. - /// - internal static string GroupBox_Foreground { - get { - return ResourceManager.GetString("GroupBox_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabActiveBorder']/Background/@Source. - /// - internal static string GroupBox_Line { - get { - return ResourceManager.GetString("GroupBox_Line", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListBackground']/Background/@Source. - /// - internal static string List_Background { - get { - return ResourceManager.GetString("List_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListHeader']/Background/@Source. - /// - internal static string List_Header_Background { - get { - return ResourceManager.GetString("List_Header_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListHeader']/Foreground/@Source. - /// - internal static string List_Header_Foreground { - get { - return ResourceManager.GetString("List_Header_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItem']/Background/@Source. - /// - internal static string List_Item_Background { - get { - return ResourceManager.GetString("List_Item_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemBorder']/Background/@Source. - /// - internal static string List_Item_Border { - get { - return ResourceManager.GetString("List_Item_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemDisabled']/Background/@Source. - /// - internal static string List_Item_Disabled_Background { - get { - return ResourceManager.GetString("List_Item_Disabled_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemDisabledBorder']/Background/@Source. - /// - internal static string List_Item_Disabled_Border { - get { - return ResourceManager.GetString("List_Item_Disabled_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemDisabled']/Foreground/@Source. - /// - internal static string List_Item_Disabled_Foreground { - get { - return ResourceManager.GetString("List_Item_Disabled_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItem']/Foreground/@Source. - /// - internal static string List_Item_Foreground { - get { - return ResourceManager.GetString("List_Item_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemSelected']/Background/@Source. - /// - internal static string List_Item_Selected_Background { - get { - return ResourceManager.GetString("List_Item_Selected_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemSelectedBorder']/Background/@Source. - /// - internal static string List_Item_Selected_Border { - get { - return ResourceManager.GetString("List_Item_Selected_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemSelected']/Foreground/@Source. - /// - internal static string List_Item_Selected_Foreground { - get { - return ResourceManager.GetString("List_Item_Selected_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='ProgressBar']/Color[@Name='Background']/Background/@Source. - /// - internal static string ProgressBar_Background { - get { - return ResourceManager.GetString("ProgressBar_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='ProgressBar']/Color[@Name='IndicatorFill']/Background/@Source. - /// - internal static string ProgressBar_Fill { - get { - return ResourceManager.GetString("ProgressBar_Fill", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='ProgressBar']/Color[@Name='IndicatorFillCritical']/Background/@Source. - /// - internal static string ProgressBar_Fill_Critical { - get { - return ResourceManager.GetString("ProgressBar_Fill_Critical", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='ProgressBar']/Color[@Name='IndicatorFillWarning']/Background/@Source. - /// - internal static string ProgressBar_Fill_Warning { - get { - return ResourceManager.GetString("ProgressBar_Fill_Warning", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='TabBackground']/Background/@Source. - /// - internal static string Tab_Background { - get { - return ResourceManager.GetString("Tab_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='TabItem']/Background/@Source. - /// - internal static string Tab_Item_Background { - get { - return ResourceManager.GetString("Tab_Item_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='TabItemDisabled']/Background/@Source. - /// - internal static string Tab_Item_Disabled_Background { - get { - return ResourceManager.GetString("Tab_Item_Disabled_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='TabItemDisabled']/Foreground/@Source. - /// - internal static string Tab_Item_Disabled_Foreground { - get { - return ResourceManager.GetString("Tab_Item_Disabled_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='TabItem']/Foreground/@Source. - /// - internal static string Tab_Item_Foreground { - get { - return ResourceManager.GetString("Tab_Item_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBackground']/Background/@Source. - /// - internal static string TextBox_Background { - get { - return ResourceManager.GetString("TextBox_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBorder']/Background/@Source. - /// - internal static string TextBox_Border { - get { - return ResourceManager.GetString("TextBox_Border", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBorderDisabled']/Background/@Source. - /// - internal static string TextBox_Border_Disabled { - get { - return ResourceManager.GetString("TextBox_Border_Disabled", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBorderFocused']/Background/@Source. - /// - internal static string TextBox_Border_Focused { - get { - return ResourceManager.GetString("TextBox_Border_Focused", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBackgroundDisabled']/Background/@Source. - /// - internal static string TextBox_Disabled_Background { - get { - return ResourceManager.GetString("TextBox_Disabled_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxTextDisabled']/Background/@Source. - /// - internal static string TextBox_Disabled_Foreground { - get { - return ResourceManager.GetString("TextBox_Disabled_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBackgroundFocused']/Background/@Source. - /// - internal static string TextBox_Focused_Background { - get { - return ResourceManager.GetString("TextBox_Focused_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxTextFocused']/Background/@Source. - /// - internal static string TextBox_Focused_Foreground { - get { - return ResourceManager.GetString("TextBox_Focused_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxText']/Background/@Source. - /// - internal static string TextBox_Foreground { - get { - return ResourceManager.GetString("TextBox_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='Background']/Background/@Source. - /// - internal static string TreeView_Background { - get { - return ResourceManager.GetString("TreeView_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='Background']/Foreground/@Source. - /// - internal static string TreeView_Foreground { - get { - return ResourceManager.GetString("TreeView_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='SelectedItemActive']/Background/@Source. - /// - internal static string Treeview_SelectedItem_Active_Background { - get { - return ResourceManager.GetString("Treeview_SelectedItem_Active_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='SelectedItemActive']/Foreground/@Source. - /// - internal static string Treeview_SelectedItem_Active_Foreground { - get { - return ResourceManager.GetString("Treeview_SelectedItem_Active_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='SelectedItemInactive']/Background/@Source. - /// - internal static string Treeview_SelectedItem_Inactive_Background { - get { - return ResourceManager.GetString("Treeview_SelectedItem_Inactive_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='SelectedItemInactive']/Foreground/@Source. - /// - internal static string Treeview_SelectedItem_Inactive_Foreground { - get { - return ResourceManager.GetString("Treeview_SelectedItem_Inactive_Foreground", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Text Editor Text Marker Items']/Color[@Name='compiler warning']/Background/@Source. - /// - internal static string WarningText_Background { - get { - return ResourceManager.GetString("WarningText_Background", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Text Editor Text Marker Items']/Color[@Name='compiler warning']/Foreground/@Source. - /// - internal static string WarningText_Foreground { - get { - return ResourceManager.GetString("WarningText_Foreground", resourceCulture); - } - } - } -} +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace mRemoteNG { + using System; + + + /// + /// 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 ColorMapTheme { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ColorMapTheme() { + } + + /// + /// 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.Themes.ColorMapTheme", typeof(ColorMapTheme).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 /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='Button']/Background/@Source. + /// + internal static string Button_Background { + get { + return ResourceManager.GetString("Button_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonBorder']/Background/@Source. + /// + internal static string Button_Border { + get { + return ResourceManager.GetString("Button_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonDisabled']/Background/@Source. + /// + internal static string Button_Disabled_Background { + get { + return ResourceManager.GetString("Button_Disabled_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonBorderDisabled']/Background/@Source. + /// + internal static string Button_Disabled_Border { + get { + return ResourceManager.GetString("Button_Disabled_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonDisabled']/Foreground/@Source. + /// + internal static string Button_Disabled_Foreground { + get { + return ResourceManager.GetString("Button_Disabled_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='Button']/Foreground/@Source. + /// + internal static string Button_Foreground { + get { + return ResourceManager.GetString("Button_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonHover']/Background/@Source. + /// + internal static string Button_Hover_Background { + get { + return ResourceManager.GetString("Button_Hover_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonBorderHover']/Background/@Source. + /// + internal static string Button_Hover_Border { + get { + return ResourceManager.GetString("Button_Hover_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonHover']/Foreground/@Source. + /// + internal static string Button_Hover_Foreground { + get { + return ResourceManager.GetString("Button_Hover_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonPressed']/Background/@Source. + /// + internal static string Button_Pressed_Background { + get { + return ResourceManager.GetString("Button_Pressed_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonBorderPressed']/Background/@Source. + /// + internal static string Button_Pressed_Border { + get { + return ResourceManager.GetString("Button_Pressed_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='ButtonPressed']/Foreground/@Source. + /// + internal static string Button_Pressed_Foreground { + get { + return ResourceManager.GetString("Button_Pressed_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxBackground']/Background/@Source. + /// + internal static string CheckBox_Background { + get { + return ResourceManager.GetString("CheckBox_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxBorder']/Background/@Source. + /// + internal static string CheckBox_Border { + get { + return ResourceManager.GetString("CheckBox_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxBorderDisabled']/Background/@Source. + /// + internal static string CheckBox_Border_Disabled { + get { + return ResourceManager.GetString("CheckBox_Border_Disabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxBorderHover']/Background/@Source. + /// + internal static string CheckBox_Border_Hover { + get { + return ResourceManager.GetString("CheckBox_Border_Hover", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxBorderPressed']/Background/@Source. + /// + internal static string CheckBox_Border_Pressed { + get { + return ResourceManager.GetString("CheckBox_Border_Pressed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxGlyph']/Background/@Source. + /// + internal static string CheckBox_Glyph { + get { + return ResourceManager.GetString("CheckBox_Glyph", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxGlyphDisabled']/Background/@Source. + /// + internal static string CheckBox_Glyph_Disabled { + get { + return ResourceManager.GetString("CheckBox_Glyph_Disabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxText']/Background/@Source. + /// + internal static string CheckBox_Text { + get { + return ResourceManager.GetString("CheckBox_Text", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='CheckBoxTextDisabled']/Background/@Source. + /// + internal static string CheckBox_Text_Disabled { + get { + return ResourceManager.GetString("CheckBox_Text_Disabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBox']/Background/@Source. + /// + internal static string ComboBox_Background { + get { + return ResourceManager.GetString("ComboBox_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxBorder']/Background/@Source. + /// + internal static string ComboBox_Border { + get { + return ResourceManager.GetString("ComboBox_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButton']/Background/@Source. + /// + internal static string ComboBox_Button_Background { + get { + return ResourceManager.GetString("ComboBox_Button_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonBorder']/Background/@Source. + /// + internal static string ComboBox_Button_Border { + get { + return ResourceManager.GetString("ComboBox_Button_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButton']/Foreground/@Source. + /// + internal static string ComboBox_Button_Foreground { + get { + return ResourceManager.GetString("ComboBox_Button_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonMouseOver']/Background/@Source. + /// + internal static string ComboBox_Button_MouseOver_Background { + get { + return ResourceManager.GetString("ComboBox_Button_MouseOver_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonMouseOverBorder']/Background/@Source. + /// + internal static string ComboBox_Button_MouseOver_Border { + get { + return ResourceManager.GetString("ComboBox_Button_MouseOver_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonMouseOver']/Foreground/@Source. + /// + internal static string ComboBox_Button_MouseOver_Foreground { + get { + return ResourceManager.GetString("ComboBox_Button_MouseOver_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonPressed']/Background/@Source. + /// + internal static string ComboBox_Button_Pressed_Background { + get { + return ResourceManager.GetString("ComboBox_Button_Pressed_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxButtonPressed']/Foreground/@Source. + /// + internal static string ComboBox_Button_Pressed_Foreground { + get { + return ResourceManager.GetString("ComboBox_Button_Pressed_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxDisabled']/Background/@Source. + /// + internal static string ComboBox_Disabled_Background { + get { + return ResourceManager.GetString("ComboBox_Disabled_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxDisabled']/Foreground/@Source. + /// + internal static string ComboBox_Disabled_Foreground { + get { + return ResourceManager.GetString("ComboBox_Disabled_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBox']/Foreground/@Source. + /// + internal static string ComboBox_Foreground { + get { + return ResourceManager.GetString("ComboBox_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxMouseOverBorder']/Background/@Source. + /// + internal static string ComboBox_MouseOver_Border { + get { + return ResourceManager.GetString("ComboBox_MouseOver_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxPopUpBorder']/ComboBoxPopUp/@Source. + /// + internal static string ComboBox_PopUp { + get { + return ResourceManager.GetString("ComboBox_PopUp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ComboBoxPopUpBorder']/Background/@Source. + /// + internal static string ComboBox_PopUp_Border { + get { + return ResourceManager.GetString("ComboBox_PopUp_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Environment']/Color[@Name='CommandShelfHighlightGradientBegin']/Background/@Source. + /// + internal static string CommandBarMenuDefault_Background { + get { + return ResourceManager.GetString("CommandBarMenuDefault_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Environment']/Color[@Name='CommandBarTextActive']/Background/@Source. + /// + internal static string CommandBarMenuDefault_Foreground { + get { + return ResourceManager.GetString("CommandBarMenuDefault_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='Dialog']/Background/@Source. + /// + internal static string Dialog_Background { + get { + return ResourceManager.GetString("Dialog_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='Dialog']/Foreground/@Source. + /// + internal static string Dialog_Foreground { + get { + return ResourceManager.GetString("Dialog_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Text Editor Text Marker Items']/Color[@Name='compiler error']/Background/@Source. + /// + internal static string ErrorText_Background { + get { + return ResourceManager.GetString("ErrorText_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Text Editor Text Marker Items']/Color[@Name='compiler error']/Foreground/@Source. + /// + internal static string ErrorText_Foreground { + get { + return ResourceManager.GetString("ErrorText_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabActiveBackground']/Background/@Source. + /// + internal static string GroupBox_Backgorund { + get { + return ResourceManager.GetString("GroupBox_Backgorund", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabInactiveBackground']/Background/@Source. + /// + internal static string GroupBox_Disabled_Background { + get { + return ResourceManager.GetString("GroupBox_Disabled_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabInactiveText']/Background/@Source. + /// + internal static string GroupBox_Disabled_Foreground { + get { + return ResourceManager.GetString("GroupBox_Disabled_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabInactiveBorder']/Background/@Source. + /// + internal static string GroupBox_Disabled_Line { + get { + return ResourceManager.GetString("GroupBox_Disabled_Line", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabActiveText']/Background/@Source. + /// + internal static string GroupBox_Foreground { + get { + return ResourceManager.GetString("GroupBox_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='InnerTabActiveBorder']/Background/@Source. + /// + internal static string GroupBox_Line { + get { + return ResourceManager.GetString("GroupBox_Line", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListBackground']/Background/@Source. + /// + internal static string List_Background { + get { + return ResourceManager.GetString("List_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListHeader']/Background/@Source. + /// + internal static string List_Header_Background { + get { + return ResourceManager.GetString("List_Header_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListHeader']/Foreground/@Source. + /// + internal static string List_Header_Foreground { + get { + return ResourceManager.GetString("List_Header_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItem']/Background/@Source. + /// + internal static string List_Item_Background { + get { + return ResourceManager.GetString("List_Item_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemBorder']/Background/@Source. + /// + internal static string List_Item_Border { + get { + return ResourceManager.GetString("List_Item_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemDisabled']/Background/@Source. + /// + internal static string List_Item_Disabled_Background { + get { + return ResourceManager.GetString("List_Item_Disabled_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemDisabledBorder']/Background/@Source. + /// + internal static string List_Item_Disabled_Border { + get { + return ResourceManager.GetString("List_Item_Disabled_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemDisabled']/Foreground/@Source. + /// + internal static string List_Item_Disabled_Foreground { + get { + return ResourceManager.GetString("List_Item_Disabled_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItem']/Foreground/@Source. + /// + internal static string List_Item_Foreground { + get { + return ResourceManager.GetString("List_Item_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemSelected']/Background/@Source. + /// + internal static string List_Item_Selected_Background { + get { + return ResourceManager.GetString("List_Item_Selected_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemSelectedBorder']/Background/@Source. + /// + internal static string List_Item_Selected_Border { + get { + return ResourceManager.GetString("List_Item_Selected_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='ListItemSelected']/Foreground/@Source. + /// + internal static string List_Item_Selected_Foreground { + get { + return ResourceManager.GetString("List_Item_Selected_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='ProgressBar']/Color[@Name='Background']/Background/@Source. + /// + internal static string ProgressBar_Background { + get { + return ResourceManager.GetString("ProgressBar_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='ProgressBar']/Color[@Name='IndicatorFill']/Background/@Source. + /// + internal static string ProgressBar_Fill { + get { + return ResourceManager.GetString("ProgressBar_Fill", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='ProgressBar']/Color[@Name='IndicatorFillCritical']/Background/@Source. + /// + internal static string ProgressBar_Fill_Critical { + get { + return ResourceManager.GetString("ProgressBar_Fill_Critical", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='ProgressBar']/Color[@Name='IndicatorFillWarning']/Background/@Source. + /// + internal static string ProgressBar_Fill_Warning { + get { + return ResourceManager.GetString("ProgressBar_Fill_Warning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='TabBackground']/Background/@Source. + /// + internal static string Tab_Background { + get { + return ResourceManager.GetString("Tab_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='TabItem']/Background/@Source. + /// + internal static string Tab_Item_Background { + get { + return ResourceManager.GetString("Tab_Item_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='TabItemDisabled']/Background/@Source. + /// + internal static string Tab_Item_Disabled_Background { + get { + return ResourceManager.GetString("Tab_Item_Disabled_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='TabItemDisabled']/Foreground/@Source. + /// + internal static string Tab_Item_Disabled_Foreground { + get { + return ResourceManager.GetString("Tab_Item_Disabled_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Cider']/Color[@Name='TabItem']/Foreground/@Source. + /// + internal static string Tab_Item_Foreground { + get { + return ResourceManager.GetString("Tab_Item_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBackground']/Background/@Source. + /// + internal static string TextBox_Background { + get { + return ResourceManager.GetString("TextBox_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBorder']/Background/@Source. + /// + internal static string TextBox_Border { + get { + return ResourceManager.GetString("TextBox_Border", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBorderDisabled']/Background/@Source. + /// + internal static string TextBox_Border_Disabled { + get { + return ResourceManager.GetString("TextBox_Border_Disabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBorderFocused']/Background/@Source. + /// + internal static string TextBox_Border_Focused { + get { + return ResourceManager.GetString("TextBox_Border_Focused", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBackgroundDisabled']/Background/@Source. + /// + internal static string TextBox_Disabled_Background { + get { + return ResourceManager.GetString("TextBox_Disabled_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxTextDisabled']/Background/@Source. + /// + internal static string TextBox_Disabled_Foreground { + get { + return ResourceManager.GetString("TextBox_Disabled_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxBackgroundFocused']/Background/@Source. + /// + internal static string TextBox_Focused_Background { + get { + return ResourceManager.GetString("TextBox_Focused_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxTextFocused']/Background/@Source. + /// + internal static string TextBox_Focused_Foreground { + get { + return ResourceManager.GetString("TextBox_Focused_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='CommonControls']/Color[@Name='TextBoxText']/Background/@Source. + /// + internal static string TextBox_Foreground { + get { + return ResourceManager.GetString("TextBox_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='Background']/Background/@Source. + /// + internal static string TreeView_Background { + get { + return ResourceManager.GetString("TreeView_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='Background']/Foreground/@Source. + /// + internal static string TreeView_Foreground { + get { + return ResourceManager.GetString("TreeView_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='SelectedItemActive']/Background/@Source. + /// + internal static string Treeview_SelectedItem_Active_Background { + get { + return ResourceManager.GetString("Treeview_SelectedItem_Active_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='SelectedItemActive']/Foreground/@Source. + /// + internal static string Treeview_SelectedItem_Active_Foreground { + get { + return ResourceManager.GetString("Treeview_SelectedItem_Active_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='SelectedItemInactive']/Background/@Source. + /// + internal static string Treeview_SelectedItem_Inactive_Background { + get { + return ResourceManager.GetString("Treeview_SelectedItem_Inactive_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='TreeView']/Color[@Name='SelectedItemInactive']/Foreground/@Source. + /// + internal static string Treeview_SelectedItem_Inactive_Foreground { + get { + return ResourceManager.GetString("Treeview_SelectedItem_Inactive_Foreground", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Text Editor Text Marker Items']/Color[@Name='compiler warning']/Background/@Source. + /// + internal static string WarningText_Background { + get { + return ResourceManager.GetString("WarningText_Background", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to /Themes/Theme/Category[@Name='Text Editor Text Marker Items']/Color[@Name='compiler warning']/Foreground/@Source. + /// + internal static string WarningText_Foreground { + get { + return ResourceManager.GetString("WarningText_Foreground", resourceCulture); + } + } + } +} diff --git a/mRemoteV1/app.config b/mRemoteV1/app.config index b897e6d33..2b4bbbfee 100644 --- a/mRemoteV1/app.config +++ b/mRemoteV1/app.config @@ -1,798 +1,798 @@ - - - -
- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - 0, 0 - - - 0, 0 - - - Normal - - - False - - - True - - - - - - True - - - True - - - True - - - False - - - False - - - - - - True - - - True - - - False - - - False - - - True - - - False - - - False - - - noinfo - - - - - - - - - - - - False - - - True - - - False - - - False - - - False - - - - - - 80 - - - False - - - - - - - - - - - - RDP - - - Default Settings - - - False - - - FitToWindow - - - Colors16Bit - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - DoNotPlay - - - 2 - - - False - - - False - - - False - - - 0 - - - False - - - True - - - 0, 0 - - - Bottom - - - True - - - 3, 24 - - - Top - - - False - - - False - - - - - - - - - - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - EncrBasic - - - False - - - - - - - - - False - - - False - - - False - - - True - - - False - - - False - - - AuthVNC - - - ColNormal - - - SmartSAspect - - - False - - - CompNone - - - EncHextile - - - - - - - - - 0 - - - ProxyNone - - - - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - False - - - NoAuth - - - False - - - 5500 - - - False - - - - - - IE - - - False - - - - - - False - - - False - - - - - - False - - - - - - False - - - False - - - 14 - - - 1980-01-01 - - - False - - - Never - - - Yes - - - mRemoteNG - - - False - - - False - - - False - - - False - - - False - - - False - - - 5 - - - - - - - - - - - - - - - - - - False - - - False - - - False - - - False - - - 4 - - - mRemoteNG - - - 10 - - - {0}.{1:yyyyMMdd-HHmmssffff}.backup - - - False - - - True - - - False - - - False - - - release - - - - - - True - - - - - - - - - True - - - - - - True - - - False - - - False - - - RDP - - - 9/9, 33/8 - - - 9/8, 34/8 - - - False - - - 20 - - - AES - - - GCM - - - 1000 - - - Dynamic - - - False - - - 0 - - - False - - - False - - - False - - - False - - - 00000000-0000-0000-0000-000000000000 - - - - - - False - - - True - - - True - - - True - - - False - - - False - - - True - - - True - - - False - - - False - - - False - - - False - - - True - - - True - - - False - - - - - - - /TreeView/Background/Background/@Source - - - /TreeView/Background/Foreground/@Source - - - /TreeView/SelectedItemActive/Background/@Source - - - /TreeView/SelectedItemActive/Foreground/@Source - - - /TreeView/SelectedItemInactive/Background/@Source - - - /TreeView/SelectedItemInactive/Foreground/@Source - - - /Cider/ListBackground/Background/@Source - - - /Cider/ListItem/Foreground/@Source - - - /Cider/ListItem/Background/@Source - - - /Cider/ListItemBorder/Background/@Source - - - /Cider/ListHeader/Background/@Source - - - /Cider/ListHeader/Foreground/@Source - - - /Cider/ListItemSelectedBorder/Background/@Source - - - /Cider/ListItemSelected/Foreground/@Source - - - /Cider/ListItemSelected/Background/@Source - - - /Cider/ListItemDisabled/Foreground/@Source - - - /Cider/ListItemDisabled/Background/@Source - - - /Cider/ListItemDisabledBorder/Background/@Source - - - /CommonControls/Button/Background/@Source - - - /CommonControls/Button/Foreground/@Source - - - /CommonControls/ButtonBorder/Background/@Source - - - /CommonControls/ButtonPressed/Background/@Source - - - /CommonControls/ButtonPressed/Foreground/@Source - - - /CommonControls/ButtonHover/Background/@Source - - - /CommonControls/ButtonHover/Foreground/@Source - - - /TextEditorTextMarkerItems/compilerwarning/Background/@Source - - - /TextEditorTextMarkerItems/compilerwarning/Foreground/@Source - - - /TextEditorTextMarkerItems/compilererror/Background/@Source - - - /TextEditorTextMarkerItems/compilererror/Foreground/@Source - - - /CommonControls/TextBoxBackground/Background/@Source - - - /CommonControls/TextBoxText/Background/@Source - - - /CommonControls/TextBoxBorder/Background/@Source - - - /CommonControls/TextBoxBorderDisabled/Background/@Source - - - /CommonControls/TextBoxBorderFocused/Background/@Source - - - /CommonControls/TextBoxBackgroundDisabled/Background/@Source - - - /CommonControls/TextBoxTextDisabled/Background/@Source - - - /CommonControls/TextBoxBackgroundFocused/Background/@Source - - - /CommonControls/TextBoxTextFocused/Background/@Source - - - - - https://mremoteng.org/ - - - cs-CZ,de,el,en,en-US,es-AR,es,fr,hu,it,ja-JP,ko-KR,nb-NO,nl,pt,pt-BR,pl,ru,uk,tr-TR,zh-CN,zh-TW - - - - - - - - - - - - - - - + + + +
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0, 0 + + + 0, 0 + + + Normal + + + False + + + True + + + + + + True + + + True + + + True + + + False + + + False + + + + + + True + + + True + + + False + + + False + + + True + + + False + + + False + + + noinfo + + + + + + + + + + + + False + + + True + + + False + + + False + + + False + + + + + + 80 + + + False + + + + + + + + + + + + RDP + + + Default Settings + + + False + + + FitToWindow + + + Colors16Bit + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + DoNotPlay + + + 2 + + + False + + + False + + + False + + + 0 + + + False + + + True + + + 0, 0 + + + Bottom + + + True + + + 3, 24 + + + Top + + + False + + + False + + + + + + + + + + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + EncrBasic + + + False + + + + + + + + + False + + + False + + + False + + + True + + + False + + + False + + + AuthVNC + + + ColNormal + + + SmartSAspect + + + False + + + CompNone + + + EncHextile + + + + + + + + + 0 + + + ProxyNone + + + + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + False + + + NoAuth + + + False + + + 5500 + + + False + + + + + + IE + + + False + + + + + + False + + + False + + + + + + False + + + + + + False + + + False + + + 14 + + + 1980-01-01 + + + False + + + Never + + + Yes + + + mRemoteNG + + + False + + + False + + + False + + + False + + + False + + + False + + + 5 + + + + + + + + + + + + + + + + + + False + + + False + + + False + + + False + + + 4 + + + mRemoteNG + + + 10 + + + {0}.{1:yyyyMMdd-HHmmssffff}.backup + + + False + + + True + + + False + + + False + + + release + + + + + + True + + + + + + + + + True + + + + + + True + + + False + + + False + + + RDP + + + 9/9, 33/8 + + + 9/8, 34/8 + + + False + + + 20 + + + AES + + + GCM + + + 1000 + + + Dynamic + + + False + + + 0 + + + False + + + False + + + False + + + False + + + 00000000-0000-0000-0000-000000000000 + + + + + + False + + + True + + + True + + + True + + + False + + + False + + + True + + + True + + + False + + + False + + + False + + + False + + + True + + + True + + + False + + + + + + + /TreeView/Background/Background/@Source + + + /TreeView/Background/Foreground/@Source + + + /TreeView/SelectedItemActive/Background/@Source + + + /TreeView/SelectedItemActive/Foreground/@Source + + + /TreeView/SelectedItemInactive/Background/@Source + + + /TreeView/SelectedItemInactive/Foreground/@Source + + + /Cider/ListBackground/Background/@Source + + + /Cider/ListItem/Foreground/@Source + + + /Cider/ListItem/Background/@Source + + + /Cider/ListItemBorder/Background/@Source + + + /Cider/ListHeader/Background/@Source + + + /Cider/ListHeader/Foreground/@Source + + + /Cider/ListItemSelectedBorder/Background/@Source + + + /Cider/ListItemSelected/Foreground/@Source + + + /Cider/ListItemSelected/Background/@Source + + + /Cider/ListItemDisabled/Foreground/@Source + + + /Cider/ListItemDisabled/Background/@Source + + + /Cider/ListItemDisabledBorder/Background/@Source + + + /CommonControls/Button/Background/@Source + + + /CommonControls/Button/Foreground/@Source + + + /CommonControls/ButtonBorder/Background/@Source + + + /CommonControls/ButtonPressed/Background/@Source + + + /CommonControls/ButtonPressed/Foreground/@Source + + + /CommonControls/ButtonHover/Background/@Source + + + /CommonControls/ButtonHover/Foreground/@Source + + + /TextEditorTextMarkerItems/compilerwarning/Background/@Source + + + /TextEditorTextMarkerItems/compilerwarning/Foreground/@Source + + + /TextEditorTextMarkerItems/compilererror/Background/@Source + + + /TextEditorTextMarkerItems/compilererror/Foreground/@Source + + + /CommonControls/TextBoxBackground/Background/@Source + + + /CommonControls/TextBoxText/Background/@Source + + + /CommonControls/TextBoxBorder/Background/@Source + + + /CommonControls/TextBoxBorderDisabled/Background/@Source + + + /CommonControls/TextBoxBorderFocused/Background/@Source + + + /CommonControls/TextBoxBackgroundDisabled/Background/@Source + + + /CommonControls/TextBoxTextDisabled/Background/@Source + + + /CommonControls/TextBoxBackgroundFocused/Background/@Source + + + /CommonControls/TextBoxTextFocused/Background/@Source + + + + + https://mremoteng.org/ + + + cs-CZ,de,el,en,en-US,es-AR,es,fr,hu,it,ja-JP,ko-KR,nb-NO,nl,pt,pt-BR,pl,ru,uk,tr-TR,zh-CN,zh-TW + + + + + + + + + + + + + + + diff --git a/mRemoteV1/mRemoteV1.csproj b/mRemoteV1/mRemoteV1.csproj index 58dcbe8ce..be9a45d99 100644 --- a/mRemoteV1/mRemoteV1.csproj +++ b/mRemoteV1/mRemoteV1.csproj @@ -1,1528 +1,1520 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {4934A491-40BC-4E5B-9166-EA1169A220F6} - WinExe - mRemoteNG.App.ProgramRoot - mRemoteNG - mRemoteNG - WindowsForms - On - - - 3.5 - - - false - Properties\app.manifest - Resources\Icons\mRemote_Icon.ico - Off - B249710A6BB08171F8E75082CF2355AE2890911A - mRemoteV1_TemporaryKey.pfx - true - false - v4.0 - - - - True - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 1 - 1.64.0.%2a - false - true - true - - - - ..\packages\BouncyCastle.1.8.1\lib\BouncyCastle.Crypto.dll - True - - - ..\packages\Geckofx45.45.0.22\lib\net40\Geckofx-Core.dll - True - - - ..\packages\Geckofx45.45.0.22\lib\net40\Geckofx-Winforms.dll - True - - - ..\packages\log4net.2.0.8\lib\net40-full\log4net.dll - True - - - - False - References\ADTree.dll - - - False - References\MagicLibrary.dll - True - - - ..\packages\ObjectListView.Official.2.9.1\lib\net20\ObjectListView.dll - True - - - ..\packages\SSH.NET.2016.0.0\lib\net40\Renci.SshNet.dll - True - - - - - - - - - - - - - False - References\VncSharp.dll - - - ..\packages\DockPanelSuite.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.dll - True - - - ..\packages\DockPanelSuite.ThemeVS2003.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2003.dll - - - ..\packages\DockPanelSuite.ThemeVS2012.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2012.dll - - - ..\packages\DockPanelSuite.ThemeVS2013.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2013.dll - - - ..\packages\DockPanelSuite.ThemeVS2015.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2015.dll - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - True - ColorMapTheme.resx - - - - - - - - - - Component - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Component - - - Component - - - Component - - - Component - - - Component - - - Component - - - Component - - - Component - - - Component - - - Component - - - Component - - - Component - - - ConnectionTree.cs - - - Component - - - CredentialRecordComboBox.cs - - - - Component - - - CredentialRecordListBox.cs - - - UserControl - - - CredentialRecordListView.cs - - - UserControl - - - CredentialRepositoryListView.cs - - - Component - - - Component - - - FilteredPropertyGrid.cs - - - - - Component - - - - UserControl - - - - Component - - - - UserControl - - - NewPasswordWithVerification.cs - - - - - UserControl - - - - Component - - - Component - - - Component - - - SecureTextBox.cs - - - - - Component - - - - - - Form - - - frmOptions.cs - - - - - AdvancedPage.cs - - - UserControl - - - AppearancePage.cs - - - UserControl - - - UserControl - - - CredentialsPage.cs - - - UserControl - - - NotificationsPage.cs - - - ConnectionsPage.cs - - - UserControl - - - UserControl - - - UserControl - - - SecurityPage.cs - - - SqlServerPage.cs - - - UserControl - - - StartupExitPage.cs - - - UserControl - - - TabsPanelsPage.cs - - - UserControl - - - ThemePage.cs - - - UserControl - - - UpdatesPage.cs - - - UserControl - - - - - - - - - - - - InterfaceControl.cs - - - Component - - - - - - - - - - - - - - - - - - - - - - - frmChoosePanel.cs - - - Form - - - FrmMain.cs - - - Form - - - PasswordForm.cs - - - Form - - - True - True - Language.resx - - - - - True - True - Resources.resx - - - True - True - Settings.settings - - - - - - - - - ReconnectGroup.cs - - - UserControl - - - - - - - - - Component - - - Component - - - Component - - - - Component - - - Component - - - - Component - - - CommandButton.cs - - - - Form - - - frmTaskDialog.cs - - - Form - - - ActiveDirectoryImportWindow.cs - - - Form - - - Form - - - Form - - - Form - - - Form - - - ConnectionWindow.cs - - - Form - - - ExportForm.cs - - - ErrorAndInfoWindow.cs - - - ExternalToolsWindow.cs - - - Form - - - Form - - - - PortScanWindow.cs - - - Form - - - Form - - - Form - - - Form - - - ConnectionTreeWindow.cs - - - Form - - - - Form - - - UpdateWindow.cs - - - Form - - - - - - Designer - - - - - ResXFileCodeGenerator - ColorMapTheme.Designer.cs - mRemoteNG - - - CredentialRecordListView.cs - - - CredentialRepositoryListView.cs - - - IPTextBox.cs - - - NewPasswordWithVerification.cs - - - frmChoosePanel.cs - Designer - - - FrmMain.cs - Designer - - - frmOptions.cs - - - CredentialsPage.cs - - - NotificationsPage.cs - - - OptionsPage.cs - - - SecurityPage.cs - - - PasswordForm.cs - Designer - - - AdvancedPage.cs - - - AppearancePage.cs - - - ConnectionsPage.cs - - - SqlServerPage.cs - - - StartupExitPage.cs - - - TabsPanelsPage.cs - - - ThemePage.cs - - - UpdatesPage.cs - - - Designer - - - Designer - - - Designer - - - - Designer - - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - ResXFileCodeGenerator - Language.Designer.cs - mRemoteNG - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - ResXFileCodeGenerator - Resources.Designer.cs - mRemoteNG - Designer - - - ReconnectGroup.cs - Designer - - - frmTaskDialog.cs - - - AboutWindow.cs - Designer - - - ActiveDirectoryImportWindow.cs - Designer - - - ComponentsCheckWindow.cs - Designer - - - Designer - ConfigWindow.cs - - - ConnectionWindow.cs - Designer - - - ErrorAndInfoWindow.cs - Designer - - - ExternalToolsWindow.cs - Designer - - - HelpWindow.cs - Designer - - - PortScanWindow.cs - Designer - - - ExportForm.cs - Designer - - - ScreenshotManagerWindow.cs - Designer - - - SSHTransferWindow.cs - Designer - - - ConnectionTreeWindow.cs - Designer - - - UltraVNCWindow.cs - Designer - - - UpdateWindow.cs - Designer - - - - - - - - Always - - - Always - - - Always - - - Always - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - - - - - - - - - - - - - - - - - - - - - - - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - - - - - - - - - - - - mRemoteNG - SettingsSingleFileGenerator - Settings.Designer.cs - Designer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - False - .NET Framework 3.5 SP1 Client Profile - false - - - False - .NET Framework 2.0 %28x86%29 - true - - - False - .NET Framework 3.0 %28x86%29 - false - - - False - .NET Framework 3.5 - false - - - False - .NET Framework 3.5 SP1 - false - - - - - - {8C11EFA1-92C3-11D1-BC1E-00C04FA31489} - 1 - 0 - 0 - aximp - False - - - {238F6F80-B8B4-11CF-8771-00A024541EE3} - 2 - 7 - 0 - aximp - False - - - {8C11EFA1-92C3-11D1-BC1E-00C04FA31489} - 1 - 0 - 0 - tlbimp - False - - - {238F6F80-B8B4-11CF-8771-00A024541EE3} - 2 - 7 - 0 - tlbimp - False - - - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {4934A491-40BC-4E5B-9166-EA1169A220F6} + WinExe + mRemoteNG.App.ProgramRoot + mRemoteNG + mRemoteNG + WindowsForms + On + + + 3.5 + + + false + Properties\app.manifest + Resources\Icons\mRemote_Icon.ico + Off + B249710A6BB08171F8E75082CF2355AE2890911A + mRemoteV1_TemporaryKey.pfx + true + false + v4.6 + + + + True + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 1 + 1.64.0.%2a + false + true + true + + + + References\ADTree.dll + + + ..\packages\BouncyCastle.1.8.1\lib\BouncyCastle.Crypto.dll + + + ..\packages\Geckofx45.45.0.22\lib\net40\Geckofx-Core.dll + + + ..\packages\Geckofx45.45.0.22\lib\net40\Geckofx-Winforms.dll + + + ..\packages\log4net.2.0.8\lib\net45-full\log4net.dll + + + + False + References\MagicLibrary.dll + True + + + ..\packages\ObjectListView.Official.2.9.1\lib\net20\ObjectListView.dll + + + ..\packages\SSH.NET.2016.0.0\lib\net40\Renci.SshNet.dll + + + + + + + + + + + + + False + References\VncSharp.dll + + + ..\packages\DockPanelSuite.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.dll + + + ..\packages\DockPanelSuite.ThemeVS2003.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2003.dll + + + ..\packages\DockPanelSuite.ThemeVS2012.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2012.dll + + + ..\packages\DockPanelSuite.ThemeVS2013.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2013.dll + + + ..\packages\DockPanelSuite.ThemeVS2015.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2015.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + True + True + ColorMapTheme.resx + + + + + + + + + + Component + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Component + + + Component + + + Component + + + Component + + + Component + + + Component + + + Component + + + Component + + + Component + + + Component + + + Component + + + Component + + + ConnectionTree.cs + + + Component + + + CredentialRecordComboBox.cs + + + + Component + + + CredentialRecordListBox.cs + + + UserControl + + + CredentialRecordListView.cs + + + UserControl + + + CredentialRepositoryListView.cs + + + Component + + + Component + + + FilteredPropertyGrid.cs + + + + + Component + + + + UserControl + + + + Component + + + + UserControl + + + NewPasswordWithVerification.cs + + + + + UserControl + + + + Component + + + Component + + + Component + + + SecureTextBox.cs + + + + + Component + + + + + + Form + + + frmOptions.cs + + + + + AdvancedPage.cs + + + UserControl + + + AppearancePage.cs + + + UserControl + + + UserControl + + + CredentialsPage.cs + + + UserControl + + + NotificationsPage.cs + + + ConnectionsPage.cs + + + UserControl + + + UserControl + + + UserControl + + + SecurityPage.cs + + + SqlServerPage.cs + + + UserControl + + + StartupExitPage.cs + + + UserControl + + + TabsPanelsPage.cs + + + UserControl + + + ThemePage.cs + + + UserControl + + + UpdatesPage.cs + + + UserControl + + + + + + + + + + + + InterfaceControl.cs + + + Component + + + + + + + + + + + + + + + + + + + + + + + frmChoosePanel.cs + + + Form + + + FrmMain.cs + + + Form + + + PasswordForm.cs + + + Form + + + True + True + Language.resx + + + + + True + True + Resources.resx + + + True + True + Settings.settings + + + + + + + + + ReconnectGroup.cs + + + UserControl + + + + + + + + + Component + + + Component + + + Component + + + + Component + + + Component + + + + Component + + + CommandButton.cs + + + + Form + + + frmTaskDialog.cs + + + Form + + + ActiveDirectoryImportWindow.cs + + + Form + + + Form + + + Form + + + Form + + + Form + + + ConnectionWindow.cs + + + Form + + + ExportForm.cs + + + ErrorAndInfoWindow.cs + + + ExternalToolsWindow.cs + + + Form + + + Form + + + + PortScanWindow.cs + + + Form + + + Form + + + Form + + + Form + + + ConnectionTreeWindow.cs + + + Form + + + + Form + + + UpdateWindow.cs + + + Form + + + + + + Designer + + + + + ResXFileCodeGenerator + ColorMapTheme.Designer.cs + mRemoteNG + + + CredentialRecordListView.cs + + + CredentialRepositoryListView.cs + + + IPTextBox.cs + + + NewPasswordWithVerification.cs + + + frmChoosePanel.cs + Designer + + + FrmMain.cs + Designer + + + frmOptions.cs + + + CredentialsPage.cs + + + NotificationsPage.cs + + + OptionsPage.cs + + + SecurityPage.cs + + + PasswordForm.cs + Designer + + + AdvancedPage.cs + + + AppearancePage.cs + + + ConnectionsPage.cs + + + SqlServerPage.cs + + + StartupExitPage.cs + + + TabsPanelsPage.cs + + + ThemePage.cs + + + UpdatesPage.cs + + + Designer + + + Designer + + + Designer + + + + Designer + + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + ResXFileCodeGenerator + Language.Designer.cs + mRemoteNG + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + ResXFileCodeGenerator + Resources.Designer.cs + mRemoteNG + Designer + + + ReconnectGroup.cs + Designer + + + frmTaskDialog.cs + + + AboutWindow.cs + Designer + + + ActiveDirectoryImportWindow.cs + Designer + + + ComponentsCheckWindow.cs + Designer + + + Designer + ConfigWindow.cs + + + ConnectionWindow.cs + Designer + + + ErrorAndInfoWindow.cs + Designer + + + ExternalToolsWindow.cs + Designer + + + HelpWindow.cs + Designer + + + PortScanWindow.cs + Designer + + + ExportForm.cs + Designer + + + ScreenshotManagerWindow.cs + Designer + + + SSHTransferWindow.cs + Designer + + + ConnectionTreeWindow.cs + Designer + + + UltraVNCWindow.cs + Designer + + + UpdateWindow.cs + Designer + + + + + + + + Always + + + Always + + + Always + + + Always + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + + + + + + + + + + + + + + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + + + + mRemoteNG + SettingsSingleFileGenerator + Settings.Designer.cs + Designer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + False + .NET Framework 3.5 SP1 Client Profile + false + + + False + .NET Framework 2.0 %28x86%29 + true + + + False + .NET Framework 3.0 %28x86%29 + false + + + False + .NET Framework 3.5 + false + + + False + .NET Framework 3.5 SP1 + false + + + + + + {8C11EFA1-92C3-11D1-BC1E-00C04FA31489} + 1 + 0 + 0 + aximp + False + + + {238F6F80-B8B4-11CF-8771-00A024541EE3} + 2 + 7 + 0 + aximp + False + + + {8C11EFA1-92C3-11D1-BC1E-00C04FA31489} + 1 + 0 + 0 + tlbimp + False + + + {238F6F80-B8B4-11CF-8771-00A024541EE3} + 2 + 7 + 0 + tlbimp + False + + + + + + :: When passing paths to powershell scripts, check if the path ends with a backslash "\" :: If it does, then the backslash may be interpreted as an escape character. Add another backslash to cancel the first one. @@ -1535,74 +1527,74 @@ set certPath=$(CertPath) set certPassword=$(CertPassword) :: Call the post build powershell script -powershell.exe -ExecutionPolicy Bypass -File "%25psScriptsDir%25\postbuild_mremotev1.ps1" -SolutionDir "%25solutionDir%25" -TargetDir "%25targetDir%25" -TargetFileName "mRemoteNG.exe" -ConfigurationName "%25buildenv%25" -CertificatePath "%25certPath%25" -CertificatePassword "%25certPassword%25" -ExcludeFromSigning "PuTTYNG.exe" - - - true - true - true - bin\Debug\ - DEBUG - 1591,660,661 - full - x86 - false - MinimumRecommendedRules.ruleset - false - - - false - true - bin\Release\ - 1591,660,661 - none - x86 - AllRules.ruleset - 1 - false - false - - - false - true - bin\Release Portable\ - PORTABLE - 1591,660,661 - none - x86 - false - MinimumRecommendedRules.ruleset - false - - - true - true - true - bin\Debug Portable\ - DEBUG;PORTABLE - 1591,660,661,618 - full - x86 - false - MinimumRecommendedRules.ruleset - false - +powershell.exe -ExecutionPolicy Bypass -File "%25psScriptsDir%25\postbuild_mremotev1.ps1" -SolutionDir "%25solutionDir%25" -TargetDir "%25targetDir%25" -TargetFileName "mRemoteNG.exe" -ConfigurationName "%25buildenv%25" -CertificatePath "%25certPath%25" -CertificatePassword "%25certPassword%25" -ExcludeFromSigning "PuTTYNG.exe" + + + true + true + true + bin\Debug\ + DEBUG + 1591,660,661 + full + x86 + false + MinimumRecommendedRules.ruleset + false + + + false + true + bin\Release\ + 1591,660,661 + none + x86 + AllRules.ruleset + 1 + false + false + + + false + true + bin\Release Portable\ + PORTABLE + 1591,660,661 + none + x86 + false + MinimumRecommendedRules.ruleset + false + + + true + true + true + bin\Debug Portable\ + DEBUG;PORTABLE + 1591,660,661,618 + full + x86 + false + MinimumRecommendedRules.ruleset + false + - - - echo $(ConfigurationName) > buildenv.tmp - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - + --> + + + echo $(ConfigurationName) > buildenv.tmp + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + \ No newline at end of file diff --git a/mRemoteV1/packages.config b/mRemoteV1/packages.config index f61479a7d..0b2123227 100644 --- a/mRemoteV1/packages.config +++ b/mRemoteV1/packages.config @@ -1,13 +1,13 @@ - - - - - - - - - - - - + + + + + + + + + + + + \ No newline at end of file