diff --git a/Tools/copy_release_installer.ps1 b/Tools/copy_release_installer.ps1 index c71608708..0b6f51965 100644 --- a/Tools/copy_release_installer.ps1 +++ b/Tools/copy_release_installer.ps1 @@ -17,5 +17,7 @@ if (!(Test-Path -Path $DestinationDir)) $sourceFiles = Get-ChildItem -Path $SourcePath -Recurse | ?{$_.Extension -match "exe|msi"} foreach ($item in $sourceFiles) { + $item.Name + (Get-FileHash -Path $item.fullName -Algorithm SHA512).Hash Copy-Item -Path $item.FullName -Destination $DestinationDir -Force } \ No newline at end of file diff --git a/Tools/zip_portable_files.ps1 b/Tools/zip_portable_files.ps1 index 6af31e7ce..296ee2ecb 100644 --- a/Tools/zip_portable_files.ps1 +++ b/Tools/zip_portable_files.ps1 @@ -56,6 +56,8 @@ if ($ConfigurationName -eq "Release Portable") { Remove-Item -Force $PortableZip -ErrorAction SilentlyContinue & $SEVENZIP a -bt -bd -bb1 -mx=9 -tzip -y -r $PortableZip (Join-Path -Path $tempFolderPath -ChildPath "*.*") #& $SEVENZIP a -bt -mx=9 -tzip -y $PortableZip "$($SolutionDir)*.TXT" + (Get-FileHash -Path $PortableZip -Algorithm SHA512).Hash + } else { Write-Output "We will not zip anything - this isnt a portable release build." diff --git a/mRemoteNGTests/mRemoteNGTests.csproj b/mRemoteNGTests/mRemoteNGTests.csproj index d26808bc8..a26a4e9e2 100644 --- a/mRemoteNGTests/mRemoteNGTests.csproj +++ b/mRemoteNGTests/mRemoteNGTests.csproj @@ -17,6 +17,8 @@ False UnitTest + + true diff --git a/mRemoteV1.sln b/mRemoteV1.sln index 5466c8d33..bd127edb6 100644 --- a/mRemoteV1.sln +++ b/mRemoteV1.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27130.2010 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29613.14 MinimumVisualStudioVersion = 14.0.25420.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "mRemoteV1", "mRemoteV1\mRemoteV1.csproj", "{4934A491-40BC-4E5B-9166-EA1169A220F6}" EndProject @@ -61,7 +61,6 @@ Global {1453B37F-8621-499E-B0B2-6091F76DC0BB}.Debug|x86.ActiveCfg = Debug|x86 {1453B37F-8621-499E-B0B2-6091F76DC0BB}.Debug|x86.Build.0 = Debug|x86 {1453B37F-8621-499E-B0B2-6091F76DC0BB}.Release Installer|Any CPU.ActiveCfg = Release|x86 - {1453B37F-8621-499E-B0B2-6091F76DC0BB}.Release Installer|Any CPU.Build.0 = Release|x86 {1453B37F-8621-499E-B0B2-6091F76DC0BB}.Release Installer|x86.ActiveCfg = Release|x86 {1453B37F-8621-499E-B0B2-6091F76DC0BB}.Release Installer|x86.Build.0 = Release|x86 {1453B37F-8621-499E-B0B2-6091F76DC0BB}.Release Portable|Any CPU.ActiveCfg = Release Portable|x86 @@ -106,7 +105,6 @@ Global {16AA21E2-D6B7-427D-AB7D-AA8C611B724E}.Debug|Any CPU.Build.0 = Debug|Any CPU {16AA21E2-D6B7-427D-AB7D-AA8C611B724E}.Debug|x86.ActiveCfg = Debug|Any CPU {16AA21E2-D6B7-427D-AB7D-AA8C611B724E}.Release Installer|Any CPU.ActiveCfg = Release|Any CPU - {16AA21E2-D6B7-427D-AB7D-AA8C611B724E}.Release Installer|Any CPU.Build.0 = Release|Any CPU {16AA21E2-D6B7-427D-AB7D-AA8C611B724E}.Release Installer|x86.ActiveCfg = Release|Any CPU {16AA21E2-D6B7-427D-AB7D-AA8C611B724E}.Release Installer|x86.Build.0 = Release|Any CPU {16AA21E2-D6B7-427D-AB7D-AA8C611B724E}.Release Portable|Any CPU.ActiveCfg = Release|Any CPU diff --git a/mRemoteV1/Connection/Protocol/ICA/IcaProtocol.cs b/mRemoteV1/Connection/Protocol/ICA/IcaProtocol.cs index 3d277fe85..be9efb008 100644 --- a/mRemoteV1/Connection/Protocol/ICA/IcaProtocol.cs +++ b/mRemoteV1/Connection/Protocol/ICA/IcaProtocol.cs @@ -117,57 +117,55 @@ namespace mRemoteNG.Connection.Protocol.ICA return; } - var user = _info?.Username ?? ""; - var pass = _info?.Password ?? ""; - var dom = _info?.Domain ?? ""; + var user = _info?.Username ?? ""; + var pass = _info?.Password ?? ""; + var dom = _info?.Domain ?? ""; if (string.IsNullOrEmpty(user)) { if (Settings.Default.EmptyCredentials == "windows") { - _icaClient.Username = Environment.UserName; + user = Environment.UserName; } - else if (Settings.Default.EmptyCredentials == "custom") + else if (Settings.Default.EmptyCredentials == "custom" || Settings.Default.EmptyCredentials == "admpwd") { - _icaClient.Username = Settings.Default.DefaultUsername; + user = Settings.Default.DefaultUsername; } } - else + if (string.IsNullOrEmpty(dom)) { - _icaClient.Username = user; + if (Settings.Default.EmptyCredentials == "windows") + { + dom = Environment.UserDomainName; + } + else if (Settings.Default.EmptyCredentials == "custom" || Settings.Default.EmptyCredentials == "admpwd") + { + dom = Settings.Default.DefaultDomain; + } } - + _icaClient.Username = user; + _icaClient.Domain = dom; + if (string.IsNullOrEmpty(pass)) { if (Settings.Default.EmptyCredentials == "custom") { if (Settings.Default.DefaultPassword != "") { - var cryptographyProvider = new LegacyRijndaelCryptographyProvider(); - _icaClient.SetProp("ClearPassword", cryptographyProvider.Decrypt(Settings.Default.DefaultPassword, Runtime.EncryptionKey)); + var cryptographyProvider = new LegacyRijndaelCryptographyProvider(); + pass = cryptographyProvider.Decrypt(Settings.Default.DefaultPassword, Runtime.EncryptionKey); } } - } - else - { - _icaClient.SetProp("ClearPassword", pass); - } - - if (string.IsNullOrEmpty(dom)) - { - if (Settings.Default.EmptyCredentials == "windows") + if (Settings.Default.EmptyCredentials == "admpwd") { - _icaClient.Domain = Environment.UserDomainName; - } - else if (Settings.Default.EmptyCredentials == "custom") - { - _icaClient.Domain = Settings.Default.DefaultDomain; + if (dom == ".") + pass = AdmPwd.PDSUtils.PdsWrapper.GetPassword(null, _info.Hostname, AdmPwd.Types.IdentityType.LocalComputerAdmin, false, false).Password; + else + pass = AdmPwd.PDSUtils.PdsWrapper.GetPassword(dom, user, AdmPwd.Types.IdentityType.ManagedDomainAccount, false, false).Password; } } - else - { - _icaClient.Domain = dom; - } + + _icaClient.SetProp("ClearPassword", pass); } catch (Exception ex) { diff --git a/mRemoteV1/Connection/Protocol/RDP/RdpProtocol.cs b/mRemoteV1/Connection/Protocol/RDP/RdpProtocol.cs index e1cda921d..cde6fed69 100644 --- a/mRemoteV1/Connection/Protocol/RDP/RdpProtocol.cs +++ b/mRemoteV1/Connection/Protocol/RDP/RdpProtocol.cs @@ -355,9 +355,12 @@ namespace mRemoteNG.Connection.Protocol.RDP { if (_connectionInfo.RDGatewayUseConnectionCredentials == RDGatewayUseConnectionCredentials.Yes) { - _rdpClient.TransportSettings2.GatewayUsername = _connectionInfo.Username; - _rdpClient.TransportSettings2.GatewayPassword = _connectionInfo.Password; - _rdpClient.TransportSettings2.GatewayDomain = _connectionInfo?.Domain; + var userName = GetUserName(_connectionInfo?.Username ?? ""); + var domain = GetDomain(_connectionInfo?.Domain ?? ""); + + _rdpClient.TransportSettings2.GatewayUsername = userName; + _rdpClient.TransportSettings2.GatewayDomain = domain; + _rdpClient.TransportSettings2.GatewayPassword = GetPassword((_connectionInfo?.Password ?? ""), userName, domain, _connectionInfo.Hostname); } else if (_connectionInfo.RDGatewayUseConnectionCredentials == RDGatewayUseConnectionCredentials.SmartCard) { @@ -365,11 +368,14 @@ namespace mRemoteNG.Connection.Protocol.RDP } else { - _rdpClient.TransportSettings2.GatewayUsername = _connectionInfo.RDGatewayUsername; - _rdpClient.TransportSettings2.GatewayPassword = _connectionInfo.RDGatewayPassword; - _rdpClient.TransportSettings2.GatewayDomain = _connectionInfo.RDGatewayDomain; - _rdpClient.TransportSettings2.GatewayCredSharing = 0; - } + var userName = GetUserName(_connectionInfo.RDGatewayUsername); + var domain = GetDomain(_connectionInfo.RDGatewayDomain); + + _rdpClient.TransportSettings2.GatewayUsername = userName; + _rdpClient.TransportSettings2.GatewayDomain = domain; + _rdpClient.TransportSettings2.GatewayPassword = GetPassword(_connectionInfo.RDGatewayPassword, userName, domain, _connectionInfo.Hostname); + _rdpClient.TransportSettings2.GatewayCredSharing = 0; + } } } } @@ -416,7 +422,60 @@ namespace mRemoteNG.Connection.Protocol.RDP Runtime.MessageCollector.AddExceptionStackTrace(Language.strRdpSetConsoleSessionFailed, ex); } } - + + private string GetUserName(string userName) + { + if (string.IsNullOrEmpty(userName)) + { + if (Settings.Default.EmptyCredentials == "windows") + { + userName = Environment.UserName; + } + else if (Settings.Default.EmptyCredentials == "custom" || Settings.Default.EmptyCredentials == "admpwd") + { + userName = Settings.Default.DefaultUsername; + } + } + return userName; + } + private string GetDomain(string domain) + { + if (string.IsNullOrEmpty(domain)) + { + if (Settings.Default.EmptyCredentials == "windows") + { + domain = Environment.UserDomainName; + } + else if (Settings.Default.EmptyCredentials == "custom" || Settings.Default.EmptyCredentials == "admpwd") + { + domain = Settings.Default.DefaultDomain; + } + } + return domain; + } + private string GetPassword(string password, string userName, string domain, string host) + { + if (string.IsNullOrEmpty(password)) + { + if (Settings.Default.EmptyCredentials == "custom") + { + if (Settings.Default.DefaultPassword != "") + { + var cryptographyProvider = new LegacyRijndaelCryptographyProvider(); + password = cryptographyProvider.Decrypt(Settings.Default.DefaultPassword, Runtime.EncryptionKey); + } + } + if (Settings.Default.EmptyCredentials == "admpwd") + { + if (domain == ".") + password = AdmPwd.PDSUtils.PdsWrapper.GetPassword(null, host, AdmPwd.Types.IdentityType.LocalComputerAdmin, false, false).Password; + else + password = AdmPwd.PDSUtils.PdsWrapper.GetPassword(domain, userName, AdmPwd.Types.IdentityType.ManagedDomainAccount, false, false).Password; + } + } + return password; + } + private void SetCredentials() { try @@ -426,57 +485,13 @@ namespace mRemoteNG.Connection.Protocol.RDP return; } - var userName = _connectionInfo?.Username ?? ""; - var password = _connectionInfo?.Password ?? ""; - var domain = _connectionInfo?.Domain ?? ""; - - if (string.IsNullOrEmpty(userName)) - { - if (Settings.Default.EmptyCredentials == "windows") - { - _rdpClient.UserName = Environment.UserName; - } - else if (Settings.Default.EmptyCredentials == "custom") - { - _rdpClient.UserName = Settings.Default.DefaultUsername; - } - } - else - { - _rdpClient.UserName = userName; - } - - if (string.IsNullOrEmpty(password)) - { - if (Settings.Default.EmptyCredentials == "custom") - { - if (Settings.Default.DefaultPassword != "") - { - var cryptographyProvider = new LegacyRijndaelCryptographyProvider(); - _rdpClient.AdvancedSettings2.ClearTextPassword = cryptographyProvider.Decrypt(Settings.Default.DefaultPassword, Runtime.EncryptionKey); - } - } - } - else - { - _rdpClient.AdvancedSettings2.ClearTextPassword = password; - } - - if (string.IsNullOrEmpty(domain)) - { - if (Settings.Default.EmptyCredentials == "windows") - { - _rdpClient.Domain = Environment.UserDomainName; - } - else if (Settings.Default.EmptyCredentials == "custom") - { - _rdpClient.Domain = Settings.Default.DefaultDomain; - } - } - else - { - _rdpClient.Domain = domain; - } + var userName = GetUserName(_connectionInfo?.Username ?? ""); + var domain = GetDomain(_connectionInfo?.Domain ?? ""); + + _rdpClient.Domain = domain; + _rdpClient.UserName = userName; + _rdpClient.AdvancedSettings2.ClearTextPassword = GetPassword((_connectionInfo?.Password ?? ""), userName, domain, _connectionInfo.Hostname); + } catch (Exception ex) { diff --git a/mRemoteV1/Docs/PDSConfigWrapper.xml b/mRemoteV1/Docs/PDSConfigWrapper.xml new file mode 100644 index 000000000..8373c4a9f --- /dev/null +++ b/mRemoteV1/Docs/PDSConfigWrapper.xml @@ -0,0 +1,357 @@ + + + + + + Returns list of PDS discovered either form DNS or from GPO + + Returns list of PDS instances discovered + + No specific permissions required + Call is not audited + + + + + Calls PDS to get list of supported forests as configured in PDS configuration file. + + + Identifies PDS instance to query list of supported forests. + + List of names of AD forests as known by given PDS instance (optionaly with connection credentials and id of enryption key that is used to protect them is configuration file), or null if no specific AD forests are configured and PDS just covers local AD forest. + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Calls PDS to add new AD forest to list of supported forests. + + + Identifies PDS instance that will be target of the operation. If operating more intances of PDS, supported AD forest must be added to each of them, so as PDS configuration is consistent across all instances. + + + Specifies parameters of the newly supported forest + + Newly added supported forest. + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Calls PDS to update supported forest parameters (typically connection credentials). + + + Identifies PDS instance to perform the operation on. If operating more intances of PDS, update must be performed on each of them to ensure consistency of configuration across all instances of PDS. + + + Specifies parameters to be updated on the forest + + Updated supported forest. + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Calls PDS to add remove AD forest from list of supported forests. + + + Identifies PDS instance to remove the forest from list of supported forests. If operating more intances of PDS, supported AD forest must be removed from each of them. + + + Specifies parameters of the removed forest. Only DNS name of Forest is used to identify forest to be removed. + + Removed forest. + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Calls PDS to add maping of security principal from untrusted forest to security principal from trusted forest. + + + Identifies PDS instance to work with. If operating more intances of PDS, SID mapping must be added to each of them to ensure configuration consistency. + + + Specifies parameters of the SID mapping. + + + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Calls PDS to modify maping of security principal from untrusted forest to security principal from trusted forest. + + + Identifies PDS instance to work with. If operating more intances of PDS, SID mapping must be updated on each of them to ensure configuration consistency. + + + Specifies parameters of the SID mapping. + + + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Calls PDS to get configured mapings of security principal from untrusted forest to security principal from trusted forest. + + + Identifies PDS instance to work with. + + List of configured SID mappings + + Can be called by any authenticated user + Call is not audited + + + + + Calls PDS to add remove SID mappings from list of mappings. + + + Identifies PDS instance to remove the mapping from. If operating more intances of PDS, mapping must be removed from each of them. + + + Specifies Primary SID of mapping to be removed. + + + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Calls PDS to add AD container with accounts with automatically managed password. + + + Identifies PDS instance to work with. If operating more intances of PDS, container must be added to configuration of each of them to ensure configuration consistency. + + + Specifies parameters of password for accounts located in AD container. + + + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Calls PDS to retrieve configuration of AD containers with accounts with automatically managed password. + + + Identifies PDS instance to work with. + + List of managed domain acocunts containers as defined in PDS configuration file. + + Can be called by any authenticated user + Call is not audited + + + + + Calls PDS to update configuration of AD container with accounts with automatically managed password. + + + Identifies PDS instance to work with. If operating more intances of PDS, container must be updated on each of them to ensure configuration consistency. + + + Specifies parameters of password for accounts located in given AD container. + + + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Calls PDS to remove AD container with accounts with automatically managed password from PDS configuration. + + + Identifies PDS instance to work with. If operating more intances of PDS, container must be removed from each of them to ensure configuration consistency. + + + Specifies distinguishedName of container to be removed from configuration. + + + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Transfers PDS Admin role to security principal (user or group) + + + Identifies PDS instance to work with. + Important: If operating more intances of PDS, configuration change must be performed on each of them to ensure configuration consistency. + + + Name of new holder of PDS Admin role. Should include domain name. + + + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Updates global configuration of managed domain accounts processing.
+ Note: Currently, only global parameter supported is interval of scanning of managed domain accounts for password expiration. +
+ + Identifies PDS instance to work with. + Important: If operating more intances of PDS, configuration change must be performed on each of them to ensure configuration consistency. + + + Interval of scanning of managed domain accounts for password expiration. + + + + PDS Admin role is required to successfully call this method + Call is audited + +
+ + + Returns global configuration of managed domain accounts processing.
+ Note: Currently, only global parameter supported is interval of scanning of managed domain accounts for password expiration. +
+ + Identifies PDS instance to work with. + + Global configuration of managed domain accounts processing. + + +
+ + + Returns parameters of DNS registration for PDS autodiscover SRV records. + + + Identifies PDS instance to work with. + + + object. + + + + + + + Updates parameters of DNS registration for PDS autodiscover SRV records. + + + Identifies PDS instance to work with. + Important: If operating more intances of PDS, configuration change must be performed on each of them to ensure configuration consistency. + + Priority of SRV record. Null means default, which is 100. + How often PDS service re-registers autodiscover record to prevent its expiration. Null means default, which is 86400 seconds (1 day). + Time-to-live for registered SRV record. Null means default, which is 1200 seconds (20 minutes) + Whether or not the SRV record shall be unregistered then services stops, to prevent autodiscover records pointing to non-operating PDS instance. Null means default, which is 'true' + Weight of registered SRV record.
+ Note: Weight is not used by the solution. + + + + + PDS Admin role is required to successfully call this method + Call is audited + +
+ + + Updates parameters of access control process for password reads and resets. + + + Identifies PDS instance to work with. + Important: If operating more intances of PDS, configuration change must be performed on each of them to ensure configuration consistency. + + Whether 'All extended rights' permission also includes 'Read password' and 'Reset password' permission.Null means default, which is 'false'. + Whether 'Full control' permission also includes 'Read password' and 'Reset password' permission.Null means default, which is 'false'. + + + Whether PDS also evaluates membership in local groups from remote domain. + + + Consider the following scenario: + + PDS is installed in forest domain A + Computer account X we want know admin password for is in forest domain B + User U who wants to know admin password for computer X is also in forest domain B + User U is member of Domain local group DLG + Permission to read the admin password for computer X is delegated to group DLG + + In this case, when PDS is performing access check, it normally does NOT see user U being member of group DLG (because membership in Domain Local groups is not propagated to other domains in forest), and because of that, it replies with AccessDenied error. Setting this parameter to true makes PDS to perform direct lookup for local group membership of user in his home domain to make sure that complete membership is evaluated. + This additional lookup consumes PDS service resources and requires direct connection between PDS and domain controller of user's domain, so delegation using domain Local groups in multi-forest domains should be avoided. + + + List of Security Identifiers (SIDs) that caller additionally must be member of for calls to password reads/resets to succeed. Membership in such groups is then additional gate that allows to perform active operations. If multiple groups specified, user must be member of at least 1 of them. This helps implement additional levels of access control, such as JIT of Authentication Mechanism Assurance (AMA) + + + + PDS Admin role is required to successfully call this method + Call is audited + + + + + Returns parameters of access control process for password reads and resets. + + + Identifies PDS instance to work with. + + + object. + + + + + + + Returns parameters of current license, including path to license file. + + + Identifies PDS instance to work with. + + + object. + + + + + + + Updates path to license file. + + + Identifies PDS instance to work with. + + + Absolute or relative path to license file that Pds instance shall use. + + + object. + + + + + +
\ No newline at end of file diff --git a/mRemoteV1/Docs/PdsWrapper.xml b/mRemoteV1/Docs/PdsWrapper.xml new file mode 100644 index 000000000..36cc09a5b --- /dev/null +++ b/mRemoteV1/Docs/PdsWrapper.xml @@ -0,0 +1,374 @@ + + + + + Calls PDS to request add or update supported forest to configuration file in PDS. + + + Name of new or update supported forest. + + + Name of account which use for ldap connection to supported forest. + Account name can be passed as one of the following: + + sAMAccountName (with domain) + userPrincipalName + + Together with parameter "User" must set parameters "Password" and "KeyId". + + + Password for account which use for ldap connection to supported forest. + Together with parameter "Password" must set parameters "User" and "KeyId". + + + Identifies key pair to which the password is encrypted. + Together with parameter "KeyId" must set parameters "User" and "Password". + + List of PDS instances where added or updated supported forest. + When parameter User, Password and KeyID are not set, use default PDS credentials + + Caller must have PDS Admin role. For callers without role, AccessDenied exception is thrown. To find out, if caller has PDS Admin role, call method . + + By default, PDS Admin role is assigned to Enterprise Admins group and can be changed via PDS configuration file. + Call is audited on PDS + + + + Calls PDS to request reset of managed account password in given AD forest. + + + Name of AD forest. + + Forest must be marked as supported in PDS configuration. + For local forest (forest where PDS is installed), you can pass null as parameter value + + + + Name of account where password shall be reset. + Account name can be passed as one of the following: + * sAMAccountName (without domain) + * userPrincipalName + * distinguishedName + + When password reset shall occur. Password will be reset during next PDS management cycle - see passwordManagementInterval in PDS config file. + Information about result of operation along with account name and DN + + + PDS does not try to guess domain or forest name from account name - it searches against Global Catalog interface of AD forest passed in parameter + + Caller must have Reset Local Admin Passsword permission on given managed account object + Call is audited on PDS + + + + + Calls PDs to retrieve environment status for managed environment: + * List of domains in each managed forest, along with number of managed machines and domain accounts in each domain + * Overall status for each AD forest, including license expiration and consumption + + Environment status for the solution + + No specific permissions required + Call is not audited + + + + + Calls PDS to retrieve information about AdmPwd.E permissions that given user has on computer object, as seen by PDS + + + Name of AD forest. + Forest must be marked as supported in PDS configuration. + For local forest, pass null as parameter value + + Name of computer where password of local admin account shall be reset + UserPrincipalName of user in question. + List of solution specific permissions PDS finds for given user for given computer object + + This method uses Kerberos S2U4Self logon to obtain user's Kerberos ticket with security group membership of user account in question + No specific permissions required + Call is not audited + + + + + Calls PDS to retrieve name of AD group that implements Key Admin role. Members of the group hold Key Admin role on PDS + + Returns name of AD group that is configured on PDS as Key Admin role group + + By default, this role is held by Enterprise Admins group. Role assignment can be changed in PDS configuration file. + No specific permissions required + Call is not audited + + + + + Calls PDS to retrieve key sizes supported by PDS. + + List of supported key sizes, in bits + + + PDS only creates key pairs of supported sizes; however it can decrypt passwords encrypted by any valid RSA key - see method to see how to generate new key pair + + Supported key sizes are configured in PDS configuration file. + RSA CSP used by solution supports key sizes up to 16384 bits in 8-bit increments on Windows OS. + No specific permissions required + Call is not audited + + + + + Calls PDS to return information whether or not the caller is in Key Admin role on PDS + + True if caller is in Key Admin role on PDS. Otherwise returns false. + + Can be used by various client tools to properly render UI and allow users in KeyAdmin role to see key pair management UI + No specific permissions required + Call is not audited + + + + + Retrieves password of managed account in given AD forest. + + + Name of AD forest. + + Forest must be marked as supported in PDS configuration. + For local forest (forest where PDS is installed), you can pass null as parameter value + + + + Name of account where password shall be read. + Account name can be passed as one of the following: + * sAMAccountName (without domain) + * userPrincipalName + * distinguishedName + + Whether or not to include password history + Password, current password expiration time and optional password history + + + PDS does not try to guess domain or forest name from account name - it searches against Global Catalog interface of AD forest passed in parameter for account as specified in + + Caller must have Read Local Admin Passsword permission on given managed account object + Call is audited on PDS + + + + + Calls PDS to retrieve password of managed account in given AD forest. + Managed account can be either: + * Domain computer local admin account + * Managed domain account + + + Name of AD forest. + Forest must be marked as supported in PDS configuration. + For local forest, pass null as parameter value + + + When retrieving password of computer local admin account, pass name of computer where password of local admin account shall be retrieved. Name of the computer can be passed as one of the following: + * Hostname, such as MyComputer + * FQDN, such as mycomputer.mydomain.com + * Distinguished name, such as cn=MyComputer,ou=MyComputers,dc=mydomain,dc=com + + When retrieving password of managed domain account, pas the name of domain account. Account name can be passed as one of the following: + * sAMAccountName (without domain) + * userPrincipalName + * distinguishedName + + + Type of the account to retrieve password for. Can be one of the supported account types: + * LocalComputerAdmin + * ManagedDomainAccount + + Whether or not to include password history + + Whether computer account or managed domain account is deleted or not. + Note: there may be multiple deleted objects with the same name. In such case, password for most recently deleted object is returned + + Password, current password expiration time and optional password history. Passwords returned are plain text + + Name of local admin account is not stored by solution. Caller is expected to know name of local managed account + + PDS does not try to guess domain or forest name from computer name - it searches against Global Catalog interface of AD forest passed in parameter + + Caller must have Read Admin Passsword permission on given computer or user object + Call is audited on PDS + + + + + Calls PDS to retrieve password of managed account in given AD forest. + Managed account can be either: + * Domain computer local admin account + * Managed domain account + + + Name of AD forest. + Forest must be marked as supported in PDS configuration. + For local forest, pass null as parameter value + + + When retrieving password of computer local admin account, pass name of computer where password of local admin account shall be retrieved. Name of the computer can be passed as one of the following: + * Hostname, such as MyComputer + * FQDN, such as mycomputer.mydomain.com + * Distinguished name, such as cn=MyComputer,ou=MyComputers,dc=mydomain,dc=com + + When retrieving password of managed domain account, pas the name of domain account. Account name can be passed as one of the following: + * sAMAccountName (without domain) + * userPrincipalName + * distinguishedName + + + Type of the account to retrieve password for. Can be one of the supported account types: + * LocalComputerAdmin + * ManagedDomainAccount + + Whether or not to include password history + + Whether computer account or managed domain account is deleted or not. + Note: there may be multiple deleted objects with the same name. In such case, password for most recently deleted object is returned + + Password, current password expiration time and optional password history. Passwords returned as secure strings + + Name of local admin account is not stored by solution. Caller is expected to know name of local managed account + + PDS does not try to guess domain or forest name from computer name - it searches against Global Catalog interface of AD forest passed in parameter + + Caller must have Read Admin Passsword permission on given computer or user object + Call is audited on PDS + + + + + Calls PDS to request reset of for given managed account in given AD forest. + Managed account can be either: + * Domain computer local admin account + * Managed domain account + + + Name of AD forest. + Forest must be marked as supported in PDS configuration. + For local forest, pass null as parameter value + + Name of computer where password of local admin account shall be reset + + Type of the managed account to reset password for. Can be one of the supported account types: + * LocalComputerAdmin + * ManagedDomainAccount + + When password reset shall occur. + If type of account is local computer admin account, then password will be reset during next GPO update cycle on given computer after this time. + If type of account is managed domain account, and WhenEffective is in the past, then password is reset immediately. If WhenEffective is in the future, then password will be scheduled for reset according to WhenEffective parameter. + + Information about result of operation along with computer name and computer DN + + Caller must have Reset Admin Passsword permission on given computer or user object + Call is audited on PDS + + + + + Calls PDS to retrieve password of managed local admin account of given computer in given AD forest + + + Name of AD forest. + Forest must be marked as supported in PDS configuration. + For local forest, pass null as parameter value + + + Name of computer where password of local admin account shall be reset. Name of the computer can be passed as one of the following: + * Hostname, such as MyComputer + * FQDN, such as mycomputer.mydomain.com + * Distinguished name, such as cn=MyComputer,ou=MyComputers,dc=mydomain,dc=com + + Whether or not to include password history + + Whether computer is deleted or not. + Note: there may be multiple deleted computer objects with the same name. In such case, password for most recently deleted computer is returned + + Password, current password expiration time and optional password history + + Name of local admin account is not stored by solution. Caller is expected to know name of local managed account + + PDS does not try to guess domain or forest name from computer name - it searches against Global Catalog interface of AD forest passed in parameter + + Caller must have Read Local Admin Passsword permission on given computer object + Call is audited on PDS + + + + + Calls PDS to request reset of managed local admin password for given computer in given AD forest. + + + Name of AD forest. + Forest must be marked as supported in PDS configuration. + For local forest, pass null as parameter value + + Name of computer where password of local admin account shall be reset + When password reset shall occur. Password will be reset during next GPO update cycle on given computer after this time + Information about result of operation along with computer name and computer DN + + Caller must have Reset Local Admin Passsword permission on given computer object + Call is audited on PDS + + + + + Asks PDS to return public keys for all available key pairs. + + Returns list of all public keys managed by PDS, along with type of the key, size in bits, and key ID + + No specific permissions required + Call is not audited + + + + + Asks PDS to return list of all supported AD forests. + + + Returns list of names of all supported AD forests. + In single forest deployments, list is empty, meaning that only supported forest is the forest where solution is deployed. + + + No specific permissions required + Call is not audited + + + + + + Asks PDS to return public key with specified key ID + + Identifies key pair for which public key is returned + Returns public key of key pair with given KeyID, along with key ID + + No specific permissions required + Call is not audited + + + + + Calls PDS to generate new RSA key pair. + + PDS keeps private key of key pair in own storage and uses it for password decryption. + Public key is put to GPO by an administrator and managed machines use it to encrypt the password of managed local admin account when reporting it to AD. + + PDS also uses public key to encrypt password of managed domain account - ID of key to use is specified in PDS configuration file. + + + Specifies desired RSA key size
+ Key size must be one of those allowed by PDS - see method + + Return public key of newly generated key pair, along with key ID assigned to newly generated key pair + + Caller must have Key Admin role. For callers without role, AccessDenied exception is thrown. To find out, if caller has Key Admin role, call method . + By default, Key Admin role is assigned to Enterprise Admins group and can be changed via PDS configuration file. + Call is audited on PDS + +
+
\ No newline at end of file diff --git a/mRemoteV1/Firefox/AccessibleMarshal.dll b/mRemoteV1/Firefox/AccessibleMarshal.dll index 36a48353b..3bf0ab74b 100644 Binary files a/mRemoteV1/Firefox/AccessibleMarshal.dll and b/mRemoteV1/Firefox/AccessibleMarshal.dll differ diff --git a/mRemoteV1/Firefox/breakpadinjector.dll b/mRemoteV1/Firefox/breakpadinjector.dll index ddde1ac88..e4fd78d97 100644 Binary files a/mRemoteV1/Firefox/breakpadinjector.dll and b/mRemoteV1/Firefox/breakpadinjector.dll differ diff --git a/mRemoteV1/Firefox/freebl3.dll b/mRemoteV1/Firefox/freebl3.dll index c2e429416..1103991f6 100644 Binary files a/mRemoteV1/Firefox/freebl3.dll and b/mRemoteV1/Firefox/freebl3.dll differ diff --git a/mRemoteV1/Firefox/icudt58.dll b/mRemoteV1/Firefox/icudt58.dll new file mode 100644 index 000000000..1a12e1116 Binary files /dev/null and b/mRemoteV1/Firefox/icudt58.dll differ diff --git a/mRemoteV1/Firefox/icuin58.dll b/mRemoteV1/Firefox/icuin58.dll new file mode 100644 index 000000000..89f8eabe6 Binary files /dev/null and b/mRemoteV1/Firefox/icuin58.dll differ diff --git a/mRemoteV1/Firefox/icuuc58.dll b/mRemoteV1/Firefox/icuuc58.dll new file mode 100644 index 000000000..281fb0bfb Binary files /dev/null and b/mRemoteV1/Firefox/icuuc58.dll differ diff --git a/mRemoteV1/Firefox/lgpllibs.dll b/mRemoteV1/Firefox/lgpllibs.dll index 2419e7407..b08c2a669 100644 Binary files a/mRemoteV1/Firefox/lgpllibs.dll and b/mRemoteV1/Firefox/lgpllibs.dll differ diff --git a/mRemoteV1/Firefox/libEGL.dll b/mRemoteV1/Firefox/libEGL.dll index 43bfe4e0c..dfd19f3a4 100644 Binary files a/mRemoteV1/Firefox/libEGL.dll and b/mRemoteV1/Firefox/libEGL.dll differ diff --git a/mRemoteV1/Firefox/libGLESv2.dll b/mRemoteV1/Firefox/libGLESv2.dll index deac8ebe4..d7fa03cc6 100644 Binary files a/mRemoteV1/Firefox/libGLESv2.dll and b/mRemoteV1/Firefox/libGLESv2.dll differ diff --git a/mRemoteV1/Firefox/mozglue.dll b/mRemoteV1/Firefox/mozglue.dll index 8b165ee61..fc9577e32 100644 Binary files a/mRemoteV1/Firefox/mozglue.dll and b/mRemoteV1/Firefox/mozglue.dll differ diff --git a/mRemoteV1/Firefox/nss3.dll b/mRemoteV1/Firefox/nss3.dll index 6e3b0e74a..a2bef3181 100644 Binary files a/mRemoteV1/Firefox/nss3.dll and b/mRemoteV1/Firefox/nss3.dll differ diff --git a/mRemoteV1/Firefox/nssckbi.dll b/mRemoteV1/Firefox/nssckbi.dll index 6707cbd2e..d2962ceaf 100644 Binary files a/mRemoteV1/Firefox/nssckbi.dll and b/mRemoteV1/Firefox/nssckbi.dll differ diff --git a/mRemoteV1/Firefox/nssdbm3.dll b/mRemoteV1/Firefox/nssdbm3.dll index ea16a39f4..d0c036853 100644 Binary files a/mRemoteV1/Firefox/nssdbm3.dll and b/mRemoteV1/Firefox/nssdbm3.dll differ diff --git a/mRemoteV1/Firefox/plugin-container.exe b/mRemoteV1/Firefox/plugin-container.exe index 75a1db81d..d751c5f94 100644 Binary files a/mRemoteV1/Firefox/plugin-container.exe and b/mRemoteV1/Firefox/plugin-container.exe differ diff --git a/mRemoteV1/Firefox/plugin-hang-ui.exe b/mRemoteV1/Firefox/plugin-hang-ui.exe index 8ad2978dc..69d425e6d 100644 Binary files a/mRemoteV1/Firefox/plugin-hang-ui.exe and b/mRemoteV1/Firefox/plugin-hang-ui.exe differ diff --git a/mRemoteV1/Firefox/sandboxbroker.dll b/mRemoteV1/Firefox/sandboxbroker.dll index 459950ff7..02420ac2e 100644 Binary files a/mRemoteV1/Firefox/sandboxbroker.dll and b/mRemoteV1/Firefox/sandboxbroker.dll differ diff --git a/mRemoteV1/Firefox/softokn3.dll b/mRemoteV1/Firefox/softokn3.dll index c3517f79e..8e288d3e8 100644 Binary files a/mRemoteV1/Firefox/softokn3.dll and b/mRemoteV1/Firefox/softokn3.dll differ diff --git a/mRemoteV1/Firefox/xul.dll b/mRemoteV1/Firefox/xul.dll index c2c1e07ec..659dde0f4 100644 Binary files a/mRemoteV1/Firefox/xul.dll and b/mRemoteV1/Firefox/xul.dll differ diff --git a/mRemoteV1/Properties/Settings.Designer.cs b/mRemoteV1/Properties/Settings.Designer.cs index e6dcfb9a2..d068549b5 100644 --- a/mRemoteV1/Properties/Settings.Designer.cs +++ b/mRemoteV1/Properties/Settings.Designer.cs @@ -12,7 +12,7 @@ namespace mRemoteNG { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); @@ -2103,7 +2103,7 @@ namespace mRemoteNG { [global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("https://mremoteng.org/")] + [global::System.Configuration.DefaultSettingValueAttribute("https://gcstoragedownload.blob.core.windows.net/download/mRemoteNG/")] public string UpdateAddress { get { return ((string)(this["UpdateAddress"])); diff --git a/mRemoteV1/Properties/Settings.settings b/mRemoteV1/Properties/Settings.settings index 3d680b553..d087ad61e 100644 --- a/mRemoteV1/Properties/Settings.settings +++ b/mRemoteV1/Properties/Settings.settings @@ -522,7 +522,7 @@ True - https://mremoteng.org/ + https://gcstoragedownload.blob.core.windows.net/download/mRemoteNG/ diff --git a/mRemoteV1/Resources/Language/Language.Designer.cs b/mRemoteV1/Resources/Language/Language.Designer.cs index f641180db..3836ef8c6 100644 --- a/mRemoteV1/Resources/Language/Language.Designer.cs +++ b/mRemoteV1/Resources/Language/Language.Designer.cs @@ -1,7744 +1,7753 @@ -//------------------------------------------------------------------------------ -// -// 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 An error occurred while trying to reconnect to RDP host '{0}'. - /// - internal static string AutomaticReconnectError { - get { - return ResourceManager.GetString("AutomaticReconnectError", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to An error occurred while trying to change the connection resolution to host '{0}'. - /// - internal static string ChangeConnectionResolutionError { - get { - return ResourceManager.GetString("ChangeConnectionResolutionError", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Create a New Connection File. - /// - internal static string ConfigurationCreateNew { - get { - return ResourceManager.GetString("ConfigurationCreateNew", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use a Custom File Path. - /// - internal static string ConfigurationCustomPath { - get { - return ResourceManager.GetString("ConfigurationCustomPath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Import an Existing File. - /// - internal static string ConfigurationImportFile { - get { - return ResourceManager.GetString("ConfigurationImportFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The connection file could not be found.. - /// - internal static string ConnectionFileNotFound { - get { - return ResourceManager.GetString("ConnectionFileNotFound", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection successful. - /// - internal static string ConnectionSuccessful { - get { - return ResourceManager.GetString("ConnectionSuccessful", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not find external tool with name "{0}". - /// - internal static string CouldNotFindExternalTool { - get { - return ResourceManager.GetString("CouldNotFindExternalTool", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Credentials. - /// - internal static string Credentials { - get { - return ResourceManager.GetString("Credentials", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Credential not available. - /// - internal static string CredentialUnavailable { - get { - return ResourceManager.GetString("CredentialUnavailable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Database '{0}' not available.. - /// - internal static string DatabaseNotAvailable { - get { - return ResourceManager.GetString("DatabaseNotAvailable", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filter search matches in connection tree. - /// - internal static string FilterSearchMatchesInConnectionTree { - get { - return ResourceManager.GetString("FilterSearchMatchesInConnectionTree", 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 Use UTF8 encoding for RDP "Load Balance Info" property. - /// - internal static string LoadBalanceInfoUseUtf8 { - get { - return ResourceManager.GetString("LoadBalanceInfoUseUtf8", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Login failed for user '{0}'.. - /// - internal static string LoginFailedForUser { - get { - return ResourceManager.GetString("LoginFailedForUser", 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 Save connections after every edit. - /// - internal static string SaveConnectionsAfterEveryEdit { - get { - return ResourceManager.GetString("SaveConnectionsAfterEveryEdit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Server '{0}' was not accessible.. - /// - internal static string ServerNotAccessible { - get { - return ResourceManager.GetString("ServerNotAccessible", 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 Working directory:. - /// - internal static string srtWorkingDirectory { - get { - return ResourceManager.GetString("srtWorkingDirectory", 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 AdvancedSecurityOptions. - /// - internal static string strAdvancedSecurityOptions { - get { - return ResourceManager.GetString("strAdvancedSecurityOptions", 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 time in minutes (0 means disabled):. - /// - internal static string strAutoSaveEvery { - get { - return ResourceManager.GetString("strAutoSaveEvery", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Minutes (0 means disabled). - /// - internal static string strAutoSaveMins { - get { - return ResourceManager.GetString("strAutoSaveMins", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Latest version. - /// - internal static string strAvailableVersion { - get { - return ResourceManager.GetString("strAvailableVersion", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Back. - /// - internal static string strBack { - get { - return ResourceManager.GetString("strBack", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Browse.... - /// - internal static string strButtonBrowse { - get { - return ResourceManager.GetString("strButtonBrowse", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Cancel. - /// - internal static string strButtonCancel { - get { - return ResourceManager.GetString("strButtonCancel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Change. - /// - internal static string strButtonChange { - get { - return ResourceManager.GetString("strButtonChange", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Close. - /// - internal static string strButtonClose { - get { - return ResourceManager.GetString("strButtonClose", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Default Inheritance. - /// - internal static string strButtonDefaultInheritance { - get { - return ResourceManager.GetString("strButtonDefaultInheritance", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Default Properties. - /// - internal static string strButtonDefaultProperties { - get { - return ResourceManager.GetString("strButtonDefaultProperties", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disconnect. - /// - internal static string strButtonDisconnect { - get { - return ResourceManager.GetString("strButtonDisconnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Icon. - /// - internal static string strButtonIcon { - get { - return ResourceManager.GetString("strButtonIcon", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Import. - /// - internal static string strButtonImport { - get { - return ResourceManager.GetString("strButtonImport", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Inheritance. - /// - internal static string strButtonInheritance { - get { - return ResourceManager.GetString("strButtonInheritance", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Launch. - /// - internal static string strButtonLaunch { - get { - return ResourceManager.GetString("strButtonLaunch", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Launch PuTTY. - /// - internal static string strButtonLaunchPutty { - get { - return ResourceManager.GetString("strButtonLaunchPutty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &New. - /// - internal static string strButtonNew { - get { - return ResourceManager.GetString("strButtonNew", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &OK. - /// - internal static string strButtonOK { - get { - return ResourceManager.GetString("strButtonOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Properties. - /// - internal static string strButtonProperties { - get { - return ResourceManager.GetString("strButtonProperties", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Scan. - /// - internal static string strButtonScan { - get { - return ResourceManager.GetString("strButtonScan", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Stop. - /// - internal static string strButtonStop { - get { - return ResourceManager.GetString("strButtonStop", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Test Proxy. - /// - internal static string strButtonTestProxy { - get { - return ResourceManager.GetString("strButtonTestProxy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to You cannot import a normal connection file. - ///Please use File - Open Connection File for normal connection files!. - /// - internal static string strCannotImportNormalSessionFile { - get { - return ResourceManager.GetString("strCannotImportNormalSessionFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot start Port Scan, incorrect IP format!. - /// - internal static string strCannotStartPortScan { - get { - return ResourceManager.GetString("strCannotStartPortScan", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Appearance. - /// - internal static string strCategoryAppearance { - get { - return ResourceManager.GetString("strCategoryAppearance", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection. - /// - internal static string strCategoryConnection { - get { - return ResourceManager.GetString("strCategoryConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Credentials. - /// - internal static string strCategoryCredentials { - get { - return ResourceManager.GetString("strCategoryCredentials", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Display. - /// - internal static string strCategoryDisplay { - get { - return ResourceManager.GetString("strCategoryDisplay", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway. - /// - internal static string strCategoryGateway { - get { - return ResourceManager.GetString("strCategoryGateway", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to General. - /// - internal static string strCategoryGeneral { - get { - return ResourceManager.GetString("strCategoryGeneral", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Miscellaneous. - /// - internal static string strCategoryMiscellaneous { - get { - return ResourceManager.GetString("strCategoryMiscellaneous", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol. - /// - internal static string strCategoryProtocol { - get { - return ResourceManager.GetString("strCategoryProtocol", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Redirect. - /// - internal static string strCategoryRedirect { - get { - return ResourceManager.GetString("strCategoryRedirect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Always show this screen at startup. - /// - internal static string strCcAlwaysShowScreen { - get { - return ResourceManager.GetString("strCcAlwaysShowScreen", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Refresh. - /// - internal static string strCcCheckAgain { - get { - return ResourceManager.GetString("strCcCheckAgain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check failed!. - /// - internal static string strCcCheckFailed { - get { - return ResourceManager.GetString("strCcCheckFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check succeeded!. - /// - internal static string strCcCheckSucceeded { - get { - return ResourceManager.GetString("strCcCheckSucceeded", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The (RDP) Sessions feature requires that you have a copy of eolwtscom.dll registered on your system. - ///mRemoteNG ships with this component but it is not registered automatically if you do not use the mRemoteNG Installer. - ///To register it manually, run the following command from an elevated command prompt: regsvr32 "C:\Program Files\mRemoteNG\eolwtscom.dll" (where C:\Program Files\mRemoteNG\ is the path to your mRemoteNG installation). - ///If this check still fails or you are unable to use the (RDP) Sessions feat [rest of string was truncated]";. - /// - internal static string strCcEOLFailed { - get { - return ResourceManager.GetString("strCcEOLFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to EOLWTSCOM was found and seems to be registered properly.. - /// - internal static string strCcEOLOK { - get { - return ResourceManager.GetString("strCcEOLOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to To use the Gecko Rendering Engine you need to have XULrunner 1.8.1.x and the path to the installation set in your Options. - ///You can download XULrunner 1.8.1.3 here: ftp://ftp.mozilla.org/pub/xulrunner/releases/1.8.1.3/contrib/win32/ - ///When you are finished downloading extract the package to a path of your choice. Then in mRemoteNG go to Tools - Options - Advanced and enter the correct path in the XULrunner path field. - ///If you are still not able to pass this check or use the Gecko Engine in mRemoteNG please c [rest of string was truncated]";. - /// - internal static string strCcGeckoFailed { - get { - return ResourceManager.GetString("strCcGeckoFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to GeckoFx was found and seems to be installed properly.. - /// - internal static string strCcGeckoOK { - get { - return ResourceManager.GetString("strCcGeckoOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ICA requires that the XenDesktop Online Plugin is installed and that the wfica.ocx library is registered. You can download the client here: http://www.citrix.com/download/ - ///If you have the XenDesktop Online Plugin installed and the check still fails, try to register wfica.ocx manually. - ///To do this open up the run dialog (Start - Run) and enter the following: regsvr32 "c:\Program Files\Citrix\ICA Client\wfica.ocx" (Where c:\Program Files\Citrix\ICA Client\ is the path to your XenDesktop Online Plugin install [rest of string was truncated]";. - /// - internal static string strCcICAFailed { - get { - return ResourceManager.GetString("strCcICAFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All ICA components were found and seem to be registered properly. - ///Citrix ICA Client Control Version {0}. - /// - internal static string strCcICAOK { - get { - return ResourceManager.GetString("strCcICAOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to not installed properly. - /// - internal static string strCcNotInstalledProperly { - get { - return ResourceManager.GetString("strCcNotInstalledProperly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The SSH, Telnet, Rlogin and RAW protocols need PuTTY to work. PuTTY comes with every mRemoteNG package and is located in the installation path. - ///Please make sure that either you have the Putty.exe in your mRemoteNG directory (default: c:\Program Files\mRemoteNG\) or that you specified a valid path to your PuTTY executable in the Options (Tools - Options - Advanced - Custom PuTTY path). - /// - internal static string strCcPuttyFailed { - get { - return ResourceManager.GetString("strCcPuttyFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The PuTTY executable was found and should be ready to use.. - /// - internal static string strCcPuttyOK { - get { - return ResourceManager.GetString("strCcPuttyOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to For RDP to work properly you need to have at least Remote Desktop Connection (Terminal Services) Client 8.0 installed. You can download it here: http://support.microsoft.com/kb/925876 - ///If this check still fails or you are unable to use RDP, please consult the mRemoteNG Forum at {0}.. - /// - internal static string strCcRDPFailed { - get { - return ResourceManager.GetString("strCcRDPFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All RDP components were found and seem to be registered properly. - ///Remote Desktop Connection Control Version {0}. - /// - internal static string strCcRDPOK { - get { - return ResourceManager.GetString("strCcRDPOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to VNC requires VncSharp.dll to be located in your mRemoteNG application folder. - ///Please make sure that you have the VncSharp.dll file in your mRemoteNG application folder (usually C:\Program Files\mRemoteNG\). - ///If you are still not able to pass this check or use VNC in mRemoteNG please consult the mRemoteNG Forum at {0}.. - /// - internal static string strCcVNCFailed { - get { - return ResourceManager.GetString("strCcVNCFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All VNC components were found and seem to be registered properly. - ///VncSharp Control Version {0}. - /// - internal static string strCcVNCOK { - get { - return ResourceManager.GetString("strCcVNCOK", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Automatically try to reconnect when disconnected from server (RDP && ICA only). - /// - internal static string strCheckboxAutomaticReconnect { - get { - return ResourceManager.GetString("strCheckboxAutomaticReconnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Domain. - /// - internal static string strCheckboxDomain { - get { - return ResourceManager.GetString("strCheckboxDomain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do not show this message again.. - /// - internal static string strCheckboxDoNotShowThisMessageAgain { - get { - return ResourceManager.GetString("strCheckboxDoNotShowThisMessageAgain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Inheritance. - /// - internal static string strCheckboxInheritance { - get { - return ResourceManager.GetString("strCheckboxInheritance", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password. - /// - internal static string strCheckboxPassword { - get { - return ResourceManager.GetString("strCheckboxPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to This proxy server requires authentication. - /// - internal static string strCheckboxProxyAuthentication { - get { - return ResourceManager.GetString("strCheckboxProxyAuthentication", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use custom PuTTY path:. - /// - internal static string strCheckboxPuttyPath { - get { - return ResourceManager.GetString("strCheckboxPuttyPath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Reconnect when ready. - /// - internal static string strCheckboxReconnectWhenReady { - get { - return ResourceManager.GetString("strCheckboxReconnectWhenReady", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use a proxy server to connect. - /// - internal static string strCheckboxUpdateUseProxy { - get { - return ResourceManager.GetString("strCheckboxUpdateUseProxy", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Username. - /// - internal static string strCheckboxUsername { - get { - return ResourceManager.GetString("strCheckboxUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Wait for exit. - /// - internal static string strCheckboxWaitForExit { - get { - return ResourceManager.GetString("strCheckboxWaitForExit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check Again. - /// - internal static string strCheckForUpdate { - get { - return ResourceManager.GetString("strCheckForUpdate", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check for updates at startup. - /// - internal static string strCheckForUpdatesOnStartup { - get { - return ResourceManager.GetString("strCheckForUpdatesOnStartup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check now. - /// - internal static string strCheckNow { - get { - return ResourceManager.GetString("strCheckNow", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Check proper installation of components at startup. - /// - internal static string strCheckProperInstallationOfComponentsAtStartup { - get { - return ResourceManager.GetString("strCheckProperInstallationOfComponentsAtStartup", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose a path for the mRemoteNG log file. - /// - internal static string strChooseLogPath { - get { - return ResourceManager.GetString("strChooseLogPath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose panel before connecting. - /// - internal static string strChoosePanelBeforeConnecting { - get { - return ResourceManager.GetString("strChoosePanelBeforeConnecting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose Path. - /// - internal static string strChoosePath { - get { - return ResourceManager.GetString("strChoosePath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Closed Ports. - /// - internal static string strClosedPorts { - get { - return ResourceManager.GetString("strClosedPorts", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Collapse all folders. - /// - internal static string strCollapseAllFolders { - get { - return ResourceManager.GetString("strCollapseAllFolders", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Arguments. - /// - internal static string strColumnArguments { - get { - return ResourceManager.GetString("strColumnArguments", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Display Name. - /// - internal static string strColumnDisplayName { - get { - return ResourceManager.GetString("strColumnDisplayName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Filename. - /// - internal static string strColumnFilename { - get { - return ResourceManager.GetString("strColumnFilename", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hostname/IP. - /// - internal static string strColumnHostnameIP { - get { - return ResourceManager.GetString("strColumnHostnameIP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Message. - /// - internal static string strColumnMessage { - get { - return ResourceManager.GetString("strColumnMessage", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Username. - /// - internal static string strColumnUsername { - get { - return ResourceManager.GetString("strColumnUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Wait For Exit. - /// - internal static string strColumnWaitForExit { - get { - return ResourceManager.GetString("strColumnWaitForExit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to E&xit {0}. - /// - internal static string strCommandExitProgram { - get { - return ResourceManager.GetString("strCommandExitProgram", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't parse command line args!. - /// - internal static string strCommandLineArgsCouldNotBeParsed { - get { - return ResourceManager.GetString("strCommandLineArgsCouldNotBeParsed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Open a connection file. - /// - internal static string strCommandOpenConnectionFile { - get { - return ResourceManager.GetString("strCommandOpenConnectionFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Try again. - /// - internal static string strCommandTryAgain { - get { - return ResourceManager.GetString("strCommandTryAgain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to {0} has detected the Lenovo Auto Scroll Utility running on this system. This utility is known to cause problems with {0}. It is recommended that you disable or uninstall it.. - /// - internal static string strCompatibilityLenovoAutoScrollUtilityDetected { - get { - return ResourceManager.GetString("strCompatibilityLenovoAutoScrollUtilityDetected", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compatibility problem detected. - /// - internal static string strCompatibilityProblemDetected { - get { - return ResourceManager.GetString("strCompatibilityProblemDetected", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Components Check. - /// - internal static string strComponentsCheck { - get { - return ResourceManager.GetString("strComponentsCheck", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to btnIcon_Click failed!. - /// - internal static string strConfigPropertyGridButtonIconClickFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridButtonIconClickFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to ShowHideGridItems failed!. - /// - internal static string strConfigPropertyGridHideItemsFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridHideItemsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to IconMenu_Click failed!. - /// - internal static string strConfigPropertyGridMenuClickFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridMenuClickFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Property Grid object failed!. - /// - internal static string strConfigPropertyGridObjectFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridObjectFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SetHostStatus failed!. - /// - internal static string strConfigPropertyGridSetHostStatusFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridSetHostStatusFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to pGrid_PopertyValueChanged failed!. - /// - internal static string strConfigPropertyGridValueFailed { - get { - return ResourceManager.GetString("strConfigPropertyGridValueFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Config UI load failed!. - /// - internal static string strConfigUiLoadFailed { - get { - return ResourceManager.GetString("strConfigUiLoadFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do you want to close the connection: - ///"{0}"?. - /// - internal static string strConfirmCloseConnectionMainInstruction { - get { - return ResourceManager.GetString("strConfirmCloseConnectionMainInstruction", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to close the panel, "{0}"? Any connections that it contains will also be closed.. - /// - internal static string strConfirmCloseConnectionPanelMainInstruction { - get { - return ResourceManager.GetString("strConfirmCloseConnectionPanelMainInstruction", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the credential record, {0}?. - /// - internal static string strConfirmDeleteCredentialRecord { - get { - return ResourceManager.GetString("strConfirmDeleteCredentialRecord", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the external tool, "{0}"?. - /// - internal static string strConfirmDeleteExternalTool { - get { - return ResourceManager.GetString("strConfirmDeleteExternalTool", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the {0} selected external tools?. - /// - internal static string strConfirmDeleteExternalToolMultiple { - get { - return ResourceManager.GetString("strConfirmDeleteExternalToolMultiple", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the connection, "{0}"?. - /// - internal static string strConfirmDeleteNodeConnection { - get { - return ResourceManager.GetString("strConfirmDeleteNodeConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the empty folder, "{0}"?. - /// - internal static string strConfirmDeleteNodeFolder { - get { - return ResourceManager.GetString("strConfirmDeleteNodeFolder", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to delete the folder, "{0}"? Any folders or connections that it contains will also be deleted.. - /// - internal static string strConfirmDeleteNodeFolderNotEmpty { - get { - return ResourceManager.GetString("strConfirmDeleteNodeFolderNotEmpty", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do you want to close all open connections?. - /// - internal static string strConfirmExitMainInstruction { - get { - return ResourceManager.GetString("strConfirmExitMainInstruction", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Are you sure you want to reset the panels to their default layout?. - /// - internal static string strConfirmResetLayout { - get { - return ResourceManager.GetString("strConfirmResetLayout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect. - /// - internal static string strConnect { - get { - return ResourceManager.GetString("strConnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect in fullscreen mode. - /// - internal static string strConnectInFullscreen { - get { - return ResourceManager.GetString("strConnectInFullscreen", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connecting.... - /// - internal static string strConnecting { - get { - return ResourceManager.GetString("strConnecting", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol Event Connected. - /// - internal static string strConnectionEventConnected { - get { - return ResourceManager.GetString("strConnectionEventConnected", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection to "{0}" via "{1}" established by user "{2}" (Description: "{3}"; User Field: "{4}"). - /// - internal static string strConnectionEventConnectedDetail { - get { - return ResourceManager.GetString("strConnectionEventConnectedDetail", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection failed!. - /// - internal static string strConnectionEventConnectionFailed { - get { - return ResourceManager.GetString("strConnectionEventConnectionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol Event ErrorOccured. - /// - internal static string strConnectionEventErrorOccured { - get { - return ResourceManager.GetString("strConnectionEventErrorOccured", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection file path. - /// - internal static string strConnectionFilePath { - get { - return ResourceManager.GetString("strConnectionFilePath", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Opening connection failed!. - /// - internal static string strConnectionOpenFailed { - get { - return ResourceManager.GetString("strConnectionOpenFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cannot open connection: No hostname specified!. - /// - internal static string strConnectionOpenFailedNoHostname { - get { - return ResourceManager.GetString("strConnectionOpenFailedNoHostname", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP error! - ///Error Code: {0} - ///Error Description: {1}. - /// - internal static string strConnectionRdpErrorDetail { - get { - return ResourceManager.GetString("strConnectionRdpErrorDetail", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections. - /// - internal static string strConnections { - get { - return ResourceManager.GetString("strConnections", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't set default port!. - /// - internal static string strConnectionSetDefaultPortFailed { - get { - return ResourceManager.GetString("strConnectionSetDefaultPortFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't create backup of connections file!. - /// - internal static string strConnectionsFileBackupFailed { - get { - return ResourceManager.GetString("strConnectionsFileBackupFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't import connections file!. - /// - internal static string strConnectionsFileCouldNotBeImported { - get { - return ResourceManager.GetString("strConnectionsFileCouldNotBeImported", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections file "{0}" could not be loaded!. - /// - internal static string strConnectionsFileCouldNotBeLoaded { - get { - return ResourceManager.GetString("strConnectionsFileCouldNotBeLoaded", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connections file "{0}" could not be loaded! - ///Starting with new connections file.. - /// - internal static string strConnectionsFileCouldNotBeLoadedNew { - get { - return ResourceManager.GetString("strConnectionsFileCouldNotBeLoadedNew", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't save connections file!. - /// - internal static string strConnectionsFileCouldNotBeSaved { - get { - return ResourceManager.GetString("strConnectionsFileCouldNotBeSaved", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't save connections file as "{0}"!. - /// - internal static string strConnectionsFileCouldNotSaveAs { - get { - return ResourceManager.GetString("strConnectionsFileCouldNotSaveAs", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect without credentials. - /// - internal static string strConnectNoCredentials { - get { - return ResourceManager.GetString("strConnectNoCredentials", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect to console session. - /// - internal static string strConnectToConsoleSession { - get { - return ResourceManager.GetString("strConnectToConsoleSession", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect (with options). - /// - internal static string strConnectWithOptions { - get { - return ResourceManager.GetString("strConnectWithOptions", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection to {0} via {1} closed by user {2}.. - /// - internal static string strConnenctionClosedByUser { - get { - return ResourceManager.GetString("strConnenctionClosedByUser", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection to {0} via {1} closed by user {2}. (Description: "{3}"; User Field: "{4}"). - /// - internal static string strConnenctionClosedByUserDetail { - get { - return ResourceManager.GetString("strConnenctionClosedByUserDetail", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection Event Closed. - /// - internal static string strConnenctionCloseEvent { - get { - return ResourceManager.GetString("strConnenctionCloseEvent", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection Event Closed failed!. - /// - internal static string strConnenctionCloseEventFailed { - get { - return ResourceManager.GetString("strConnenctionCloseEventFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't create new connections file!. - /// - internal static string strCouldNotCreateNewConnectionsFile { - get { - return ResourceManager.GetString("strCouldNotCreateNewConnectionsFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Could not find ToolStrip control in FilteredPropertyGrid.. - /// - internal static string strCouldNotFindToolStripInFilteredPropertyGrid { - get { - return ResourceManager.GetString("strCouldNotFindToolStripInFilteredPropertyGrid", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Create and open new file. - /// - internal static string strCreateAndOpenNewFile { - get { - return ResourceManager.GetString("strCreateAndOpenNewFile", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Create an empty panel when mRemoteNG starts. - /// - internal static string strCreateEmptyPanelOnStartUp { - get { - return ResourceManager.GetString("strCreateEmptyPanelOnStartUp", 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 Delete.... - /// - internal static string strDelete { - get { - return ResourceManager.GetString("strDelete", 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. - /// - ///See the Microsoft Support article at http://support.microsoft.com/kb/811833 for more information. - /// - ///{0} is not fully FIPS compliant. Click OK to proceed at your own discretion, or Cancel to Exit.. - /// - 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 Import sub OUs. - /// - internal static string strImportSubOUs { - get { - return ResourceManager.GetString("strImportSubOUs", 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 Must Be Between 0 and 255. - /// - internal static string strIPRange { - get { - return ResourceManager.GetString("strIPRange", 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 Read Only:. - /// - internal static string strLabelReadOnly { - get { - return ResourceManager.GetString("strLabelReadOnly", 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 Use UTF8 encoding for RDP "Load Balance Info" property. - /// - internal static string strLoadBalanceInfoUseUtf8 { - get { - return ResourceManager.GetString("strLoadBalanceInfoUseUtf8", 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 Lock toolbar positions. - /// - internal static string strLockToolbars { - get { - return ResourceManager.GetString("strLockToolbars", 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 Lock Toolbar Positions. - /// - internal static string strMenuLockToolbars { - get { - return ResourceManager.GetString("strMenuLockToolbars", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Multi SSH Toolbar. - /// - internal static string strMenuMultiSshToolbar { - get { - return ResourceManager.GetString("strMenuMultiSshToolbar", 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 Multi SSH toolbar. - /// - internal static string strMultiSshToolbar { - get { - return ResourceManager.GetString("strMultiSshToolbar", 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 mRemoteNG Options. - /// - internal static string strOptionsPageTitle { - get { - return ResourceManager.GetString("strOptionsPageTitle", 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 '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 Out Of Range. - /// - internal static string strOutOfRange { - get { - return ResourceManager.GetString("strOutOfRange", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Panel Name. - /// - internal static string strPanelName { - get { - return ResourceManager.GetString("strPanelName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password must contain at least {0} of the following characters: {1}. - /// - internal static string strPasswordConstainsSpecialCharactersConstraintHint { - get { - return ResourceManager.GetString("strPasswordConstainsSpecialCharactersConstraintHint", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password must contain at least {0} lower case character(s). - /// - internal static string strPasswordContainsLowerCaseConstraintHint { - get { - return ResourceManager.GetString("strPasswordContainsLowerCaseConstraintHint", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password must contain at least {0} number(s). - /// - internal static string strPasswordContainsNumbersConstraint { - get { - return ResourceManager.GetString("strPasswordContainsNumbersConstraint", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password must contain at least {0} upper case character(s). - /// - internal static string strPasswordContainsUpperCaseConstraintHint { - get { - return ResourceManager.GetString("strPasswordContainsUpperCaseConstraintHint", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password length must be between {0} and {1}. - /// - internal static string strPasswordLengthConstraintHint { - get { - return ResourceManager.GetString("strPasswordLengthConstraintHint", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password protect. - /// - internal static string strPasswordProtect { - get { - return ResourceManager.GetString("strPasswordProtect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Both passwords must match.. - /// - internal static string strPasswordStatusMustMatch { - get { - return ResourceManager.GetString("strPasswordStatusMustMatch", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The password must be at least 3 characters long.. - /// - internal static string strPasswordStatusTooShort { - get { - return ResourceManager.GetString("strPasswordStatusTooShort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Please fill all fields. - /// - internal static string strPleaseFillAllFields { - get { - return ResourceManager.GetString("strPleaseFillAllFields", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Popups. - /// - internal static string strPopups { - get { - return ResourceManager.GetString("strPopups", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Port scan complete.. - /// - internal static string strPortScanComplete { - get { - return ResourceManager.GetString("strPortScanComplete", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't load PortScan panel!. - /// - internal static string strPortScanCouldNotLoadPanel { - get { - return ResourceManager.GetString("strPortScanCouldNotLoadPanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to (These properties will only be saved if you select mRemote/mRemoteNG XML as output file format!). - /// - internal static string strPropertiesWillOnlyBeSavedMRemoteXML { - get { - return ResourceManager.GetString("strPropertiesWillOnlyBeSavedMRemoteXML", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter the hostname or ip you want to connect to.. - /// - internal static string strPropertyDescriptionAddress { - get { - return ResourceManager.GetString("strPropertyDescriptionAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Toggle all inheritance options.. - /// - internal static string strPropertyDescriptionAll { - get { - return ResourceManager.GetString("strPropertyDescriptionAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select which authentication level this connection should use.. - /// - internal static string strPropertyDescriptionAuthenticationLevel { - get { - return ResourceManager.GetString("strPropertyDescriptionAuthenticationLevel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select how you want to authenticate against the VNC server.. - /// - internal static string strPropertyDescriptionAuthenticationMode { - get { - return ResourceManager.GetString("strPropertyDescriptionAuthenticationMode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether to automatically resize the connection when the window is resized or when fullscreen mode is toggled. Requires RDC 8.0 or higher.. - /// - internal static string strPropertyDescriptionAutomaticResize { - get { - return ResourceManager.GetString("strPropertyDescriptionAutomaticResize", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether to use bitmap caching or not.. - /// - internal static string strPropertyDescriptionCacheBitmaps { - get { - return ResourceManager.GetString("strPropertyDescriptionCacheBitmaps", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the colour quality to be used.. - /// - internal static string strPropertyDescriptionColors { - get { - return ResourceManager.GetString("strPropertyDescriptionColors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the compression value to be used.. - /// - internal static string strPropertyDescriptionCompression { - get { - return ResourceManager.GetString("strPropertyDescriptionCompression", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select which credential to use for this connection.. - /// - internal static string strPropertyDescriptionCredential { - get { - return ResourceManager.GetString("strPropertyDescriptionCredential", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Put your notes or a description for the host here.. - /// - internal static string strPropertyDescriptionDescription { - get { - return ResourceManager.GetString("strPropertyDescriptionDescription", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select yes if the theme of the remote host should be displayed.. - /// - internal static string strPropertyDescriptionDisplayThemes { - get { - return ResourceManager.GetString("strPropertyDescriptionDisplayThemes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select yes if the wallpaper of the remote host should be displayed.. - /// - internal static string strPropertyDescriptionDisplayWallpaper { - get { - return ResourceManager.GetString("strPropertyDescriptionDisplayWallpaper", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter your domain.. - /// - internal static string strPropertyDescriptionDomain { - get { - return ResourceManager.GetString("strPropertyDescriptionDomain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether to use desktop composition or not.. - /// - internal static string strPropertyDescriptionEnableDesktopComposition { - get { - return ResourceManager.GetString("strPropertyDescriptionEnableDesktopComposition", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether to use font smoothing or not.. - /// - internal static string strPropertyDescriptionEnableFontSmoothing { - get { - return ResourceManager.GetString("strPropertyDescriptionEnableFontSmoothing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the encoding mode to be used.. - /// - internal static string strPropertyDescriptionEncoding { - get { - return ResourceManager.GetString("strPropertyDescriptionEncoding", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the encryption strength of the remote host.. - /// - internal static string strPropertyDescriptionEncryptionStrength { - get { - return ResourceManager.GetString("strPropertyDescriptionEncryptionStrength", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the external tool to be started.. - /// - internal static string strPropertyDescriptionExternalTool { - get { - return ResourceManager.GetString("strPropertyDescriptionExternalTool", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select a external tool to be started after the disconnection to the remote host.. - /// - internal static string strPropertyDescriptionExternalToolAfter { - get { - return ResourceManager.GetString("strPropertyDescriptionExternalToolAfter", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select a external tool to be started before the connection to the remote host is established.. - /// - internal static string strPropertyDescriptionExternalToolBefore { - get { - return ResourceManager.GetString("strPropertyDescriptionExternalToolBefore", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose a icon that will be displayed when connected to the host.. - /// - internal static string strPropertyDescriptionIcon { - get { - return ResourceManager.GetString("strPropertyDescriptionIcon", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies the load balancing information for use by load balancing routers to choose the best server.. - /// - internal static string strPropertyDescriptionLoadBalanceInfo { - get { - return ResourceManager.GetString("strPropertyDescriptionLoadBalanceInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter the MAC address of the remote host if you wish to use it in an external tool.. - /// - internal static string strPropertyDescriptionMACAddress { - get { - return ResourceManager.GetString("strPropertyDescriptionMACAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to This is the name that will be displayed in the connections tree.. - /// - internal static string strPropertyDescriptionName { - get { - return ResourceManager.GetString("strPropertyDescriptionName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sets the panel in which the connection will open.. - /// - internal static string strPropertyDescriptionPanel { - get { - return ResourceManager.GetString("strPropertyDescriptionPanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter your password.. - /// - internal static string strPropertyDescriptionPassword { - get { - return ResourceManager.GetString("strPropertyDescriptionPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter the port the selected protocol is listening on.. - /// - internal static string strPropertyDescriptionPort { - get { - return ResourceManager.GetString("strPropertyDescriptionPort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose the protocol mRemoteNG should use to connect to the host.. - /// - internal static string strPropertyDescriptionProtocol { - get { - return ResourceManager.GetString("strPropertyDescriptionProtocol", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select a PuTTY session to be used when connecting.. - /// - internal static string strPropertyDescriptionPuttySession { - get { - return ResourceManager.GetString("strPropertyDescriptionPuttySession", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies the domain name that a user provides to connect to the RD Gateway server.. - /// - internal static string strPropertyDescriptionRDGatewayDomain { - get { - return ResourceManager.GetString("strPropertyDescriptionRDGatewayDomain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies the host name of the Remote Desktop Gateway server.. - /// - internal static string strPropertyDescriptionRDGatewayHostname { - get { - return ResourceManager.GetString("strPropertyDescriptionRDGatewayHostname", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies when to use a Remote Desktop Gateway (RD Gateway) server.. - /// - internal static string strPropertyDescriptionRDGatewayUsageMethod { - get { - return ResourceManager.GetString("strPropertyDescriptionRDGatewayUsageMethod", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies whether or not to log on to the gateway using the same username and password as the connection.. - /// - internal static string strPropertyDescriptionRDGatewayUseConnectionCredentials { - get { - return ResourceManager.GetString("strPropertyDescriptionRDGatewayUseConnectionCredentials", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Specifies the user name that a user provides to connect to the RD Gateway server.. - /// - internal static string strPropertyDescriptionRDGatewayUsername { - get { - return ResourceManager.GetString("strPropertyDescriptionRDGatewayUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether to receive an alert after the RDP session disconnects due to inactivity. - /// - internal static string strPropertyDescriptionRDPAlertIdleTimeout { - get { - return ResourceManager.GetString("strPropertyDescriptionRDPAlertIdleTimeout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to The number of minutes for the RDP session to sit idle before automatically disconnecting (for no limit use 0). - /// - internal static string strPropertyDescriptionRDPMinutesToIdleTimeout { - get { - return ResourceManager.GetString("strPropertyDescriptionRDPMinutesToIdleTimeout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether local disk drives should be shown on the remote host.. - /// - internal static string strPropertyDescriptionRedirectDrives { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectDrives", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host.. - /// - internal static string strPropertyDescriptionRedirectKeys { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectKeys", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether local ports (ie. com, parallel) should be shown on the remote host.. - /// - internal static string strPropertyDescriptionRedirectPorts { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectPorts", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether local printers should be shown on the remote host.. - /// - internal static string strPropertyDescriptionRedirectPrinters { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectPrinters", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select whether local smart cards should be available on the remote host.. - /// - internal static string strPropertyDescriptionRedirectSmartCards { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectSmartCards", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select how remote sound should be redirected.. - /// - internal static string strPropertyDescriptionRedirectSounds { - get { - return ResourceManager.GetString("strPropertyDescriptionRedirectSounds", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select one of the available rendering engines that will be used to display HTML.. - /// - internal static string strPropertyDescriptionRenderingEngine { - get { - return ResourceManager.GetString("strPropertyDescriptionRenderingEngine", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose the resolution or mode this connection will open in.. - /// - internal static string strPropertyDescriptionResolution { - get { - return ResourceManager.GetString("strPropertyDescriptionResolution", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Select the SmartSize mode to be used.. - /// - internal static string strPropertyDescriptionSmartSizeMode { - get { - return ResourceManager.GetString("strPropertyDescriptionSmartSizeMode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Choose the Sound Quality provided by the protocol: Dynamic, Medium, High. - /// - internal static string strPropertyDescriptionSoundQuality { - get { - return ResourceManager.GetString("strPropertyDescriptionSoundQuality", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connect to the console session of the remote host.. - /// - internal static string strPropertyDescriptionUseConsoleSession { - get { - return ResourceManager.GetString("strPropertyDescriptionUseConsoleSession", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use the Credential Security Support Provider (CredSSP) for authentication if it is available.. - /// - internal static string strPropertyDescriptionUseCredSsp { - get { - return ResourceManager.GetString("strPropertyDescriptionUseCredSsp", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Feel free to enter any information you need here.. - /// - internal static string strPropertyDescriptionUser1 { - get { - return ResourceManager.GetString("strPropertyDescriptionUser1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter your username.. - /// - internal static string strPropertyDescriptionUsername { - get { - return ResourceManager.GetString("strPropertyDescriptionUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to If you want to establish a view only connection to the host select yes.. - /// - internal static string strPropertyDescriptionViewOnly { - get { - return ResourceManager.GetString("strPropertyDescriptionViewOnly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter the proxy address to be used.. - /// - internal static string strPropertyDescriptionVNCProxyAddress { - get { - return ResourceManager.GetString("strPropertyDescriptionVNCProxyAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter your password for authenticating against the proxy.. - /// - internal static string strPropertyDescriptionVNCProxyPassword { - get { - return ResourceManager.GetString("strPropertyDescriptionVNCProxyPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter the port the proxy server listens on.. - /// - internal static string strPropertyDescriptionVNCProxyPort { - get { - return ResourceManager.GetString("strPropertyDescriptionVNCProxyPort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to If you use a proxy to tunnel VNC connections, select which type it is.. - /// - internal static string strPropertyDescriptionVNCProxyType { - get { - return ResourceManager.GetString("strPropertyDescriptionVNCProxyType", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Enter your username for authenticating against the proxy.. - /// - internal static string strPropertyDescriptionVNCProxyUsername { - get { - return ResourceManager.GetString("strPropertyDescriptionVNCProxyUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Hostname/IP. - /// - internal static string strPropertyNameAddress { - get { - return ResourceManager.GetString("strPropertyNameAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to All. - /// - internal static string strPropertyNameAll { - get { - return ResourceManager.GetString("strPropertyNameAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Server Authentication. - /// - internal static string strPropertyNameAuthenticationLevel { - get { - return ResourceManager.GetString("strPropertyNameAuthenticationLevel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Authentication Mode. - /// - internal static string strPropertyNameAuthenticationMode { - get { - return ResourceManager.GetString("strPropertyNameAuthenticationMode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Automatic Resize. - /// - internal static string strPropertyNameAutomaticResize { - get { - return ResourceManager.GetString("strPropertyNameAutomaticResize", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Cache Bitmaps. - /// - internal static string strPropertyNameCacheBitmaps { - get { - return ResourceManager.GetString("strPropertyNameCacheBitmaps", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Colours. - /// - internal static string strPropertyNameColors { - get { - return ResourceManager.GetString("strPropertyNameColors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Compression. - /// - internal static string strPropertyNameCompression { - get { - return ResourceManager.GetString("strPropertyNameCompression", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Description. - /// - internal static string strPropertyNameDescription { - get { - return ResourceManager.GetString("strPropertyNameDescription", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Display Themes. - /// - internal static string strPropertyNameDisplayThemes { - get { - return ResourceManager.GetString("strPropertyNameDisplayThemes", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Display Wallpaper. - /// - internal static string strPropertyNameDisplayWallpaper { - get { - return ResourceManager.GetString("strPropertyNameDisplayWallpaper", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Domain. - /// - internal static string strPropertyNameDomain { - get { - return ResourceManager.GetString("strPropertyNameDomain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Desktop Composition. - /// - internal static string strPropertyNameEnableDesktopComposition { - get { - return ResourceManager.GetString("strPropertyNameEnableDesktopComposition", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Font Smoothing. - /// - internal static string strPropertyNameEnableFontSmoothing { - get { - return ResourceManager.GetString("strPropertyNameEnableFontSmoothing", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Encoding. - /// - internal static string strPropertyNameEncoding { - get { - return ResourceManager.GetString("strPropertyNameEncoding", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Encryption Strength. - /// - internal static string strPropertyNameEncryptionStrength { - get { - return ResourceManager.GetString("strPropertyNameEncryptionStrength", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to External Tool. - /// - internal static string strPropertyNameExternalTool { - get { - return ResourceManager.GetString("strPropertyNameExternalTool", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to External Tool After. - /// - internal static string strPropertyNameExternalToolAfter { - get { - return ResourceManager.GetString("strPropertyNameExternalToolAfter", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to External Tool Before. - /// - internal static string strPropertyNameExternalToolBefore { - get { - return ResourceManager.GetString("strPropertyNameExternalToolBefore", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Icon. - /// - internal static string strPropertyNameIcon { - get { - return ResourceManager.GetString("strPropertyNameIcon", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Load Balance Info. - /// - internal static string strPropertyNameLoadBalanceInfo { - get { - return ResourceManager.GetString("strPropertyNameLoadBalanceInfo", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to MAC Address. - /// - internal static string strPropertyNameMACAddress { - get { - return ResourceManager.GetString("strPropertyNameMACAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Name. - /// - internal static string strPropertyNameName { - get { - return ResourceManager.GetString("strPropertyNameName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Panel. - /// - internal static string strPropertyNamePanel { - get { - return ResourceManager.GetString("strPropertyNamePanel", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Password. - /// - internal static string strPropertyNamePassword { - get { - return ResourceManager.GetString("strPropertyNamePassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Port. - /// - internal static string strPropertyNamePort { - get { - return ResourceManager.GetString("strPropertyNamePort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol. - /// - internal static string strPropertyNameProtocol { - get { - return ResourceManager.GetString("strPropertyNameProtocol", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY Session. - /// - internal static string strPropertyNamePuttySession { - get { - return ResourceManager.GetString("strPropertyNamePuttySession", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway Domain. - /// - internal static string strPropertyNameRDGatewayDomain { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayDomain", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway Hostname. - /// - internal static string strPropertyNameRDGatewayHostname { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayHostname", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Remote Desktop Gateway Password. - /// - internal static string strPropertyNameRDGatewayPassword { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use Gateway. - /// - internal static string strPropertyNameRDGatewayUsageMethod { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayUsageMethod", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway Credentials. - /// - internal static string strPropertyNameRDGatewayUseConnectionCredentials { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayUseConnectionCredentials", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Gateway Username. - /// - internal static string strPropertyNameRDGatewayUsername { - get { - return ResourceManager.GetString("strPropertyNameRDGatewayUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Alert on Idle Disconnect. - /// - internal static string strPropertyNameRDPAlertIdleTimeout { - get { - return ResourceManager.GetString("strPropertyNameRDPAlertIdleTimeout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Minutes to Idle. - /// - internal static string strPropertyNameRDPMinutesToIdleTimeout { - get { - return ResourceManager.GetString("strPropertyNameRDPMinutesToIdleTimeout", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Disk Drives. - /// - internal static string strPropertyNameRedirectDrives { - get { - return ResourceManager.GetString("strPropertyNameRedirectDrives", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Key Combinations. - /// - internal static string strPropertyNameRedirectKeys { - get { - return ResourceManager.GetString("strPropertyNameRedirectKeys", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Ports. - /// - internal static string strPropertyNameRedirectPorts { - get { - return ResourceManager.GetString("strPropertyNameRedirectPorts", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Printers. - /// - internal static string strPropertyNameRedirectPrinters { - get { - return ResourceManager.GetString("strPropertyNameRedirectPrinters", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Smart Cards. - /// - internal static string strPropertyNameRedirectSmartCards { - get { - return ResourceManager.GetString("strPropertyNameRedirectSmartCards", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sounds. - /// - internal static string strPropertyNameRedirectSounds { - get { - return ResourceManager.GetString("strPropertyNameRedirectSounds", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Rendering Engine. - /// - internal static string strPropertyNameRenderingEngine { - get { - return ResourceManager.GetString("strPropertyNameRenderingEngine", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Resolution. - /// - internal static string strPropertyNameResolution { - get { - return ResourceManager.GetString("strPropertyNameResolution", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to SmartSize Mode. - /// - internal static string strPropertyNameSmartSizeMode { - get { - return ResourceManager.GetString("strPropertyNameSmartSizeMode", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Sound Quality. - /// - internal static string strPropertyNameSoundQuality { - get { - return ResourceManager.GetString("strPropertyNameSoundQuality", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use Console Session. - /// - internal static string strPropertyNameUseConsoleSession { - get { - return ResourceManager.GetString("strPropertyNameUseConsoleSession", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Use CredSSP. - /// - internal static string strPropertyNameUseCredSsp { - get { - return ResourceManager.GetString("strPropertyNameUseCredSsp", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to User Field. - /// - internal static string strPropertyNameUser1 { - get { - return ResourceManager.GetString("strPropertyNameUser1", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Username. - /// - internal static string strPropertyNameUsername { - get { - return ResourceManager.GetString("strPropertyNameUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to View Only. - /// - internal static string strPropertyNameViewOnly { - get { - return ResourceManager.GetString("strPropertyNameViewOnly", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy Address. - /// - internal static string strPropertyNameVNCProxyAddress { - get { - return ResourceManager.GetString("strPropertyNameVNCProxyAddress", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy Password. - /// - internal static string strPropertyNameVNCProxyPassword { - get { - return ResourceManager.GetString("strPropertyNameVNCProxyPassword", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy Port. - /// - internal static string strPropertyNameVNCProxyPort { - get { - return ResourceManager.GetString("strPropertyNameVNCProxyPort", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy Type. - /// - internal static string strPropertyNameVNCProxyType { - get { - return ResourceManager.GetString("strPropertyNameVNCProxyType", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy Username. - /// - internal static string strPropertyNameVNCProxyUsername { - get { - return ResourceManager.GetString("strPropertyNameVNCProxyUsername", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol Event Disconnected. - ///Message: - ///{0}. - /// - internal static string strProtocolEventDisconnected { - get { - return ResourceManager.GetString("strProtocolEventDisconnected", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol Event Disconnected failed. - ///{0}. - /// - internal static string strProtocolEventDisconnectFailed { - get { - return ResourceManager.GetString("strProtocolEventDisconnectFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Protocol to import. - /// - internal static string strProtocolToImport { - get { - return ResourceManager.GetString("strProtocolToImport", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy test failed!. - /// - internal static string strProxyTestFailed { - get { - return ResourceManager.GetString("strProxyTestFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Proxy test succeeded!. - /// - internal static string strProxyTestSucceeded { - get { - return ResourceManager.GetString("strProxyTestSucceeded", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Connection failed!. - /// - internal static string strPuttyConnectionFailed { - get { - return ResourceManager.GetString("strPuttyConnectionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Dispose of Putty process failed!. - /// - internal static string strPuttyDisposeFailed { - get { - return ResourceManager.GetString("strPuttyDisposeFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Couldn't set focus!. - /// - internal static string strPuttyFocusFailed { - get { - return ResourceManager.GetString("strPuttyFocusFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Get Putty Sessions Failed!. - /// - internal static string strPuttyGetSessionsFailed { - get { - return ResourceManager.GetString("strPuttyGetSessionsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Putty Handle: {0}. - /// - internal static string strPuttyHandle { - get { - return ResourceManager.GetString("strPuttyHandle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Killing Putty Process failed!. - /// - internal static string strPuttyKillFailed { - get { - return ResourceManager.GetString("strPuttyKillFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Panel Handle: {0}. - /// - internal static string strPuttyParentHandle { - get { - return ResourceManager.GetString("strPuttyParentHandle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Putty Resize Failed!. - /// - internal static string strPuttyResizeFailed { - get { - return ResourceManager.GetString("strPuttyResizeFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY Saved Sessions. - /// - internal static string strPuttySavedSessionsRootName { - get { - return ResourceManager.GetString("strPuttySavedSessionsRootName", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY Session Settings. - /// - internal static string strPuttySessionSettings { - get { - return ResourceManager.GetString("strPuttySessionSettings", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY Settings. - /// - internal static string strPuttySettings { - get { - return ResourceManager.GetString("strPuttySettings", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show PuTTY Settings Dialog failed!. - /// - internal static string strPuttyShowSettingsDialogFailed { - get { - return ResourceManager.GetString("strPuttyShowSettingsDialogFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Putty Start Failed!. - /// - internal static string strPuttyStartFailed { - get { - return ResourceManager.GetString("strPuttyStartFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to --- PuTTY Stuff ---. - /// - internal static string strPuttyStuff { - get { - return ResourceManager.GetString("strPuttyStuff", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to PuTTY Title: {0}. - /// - internal static string strPuttyTitle { - get { - return ResourceManager.GetString("strPuttyTitle", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Quick: {0}. - /// - internal static string strQuick { - get { - return ResourceManager.GetString("strQuick", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Quick Connect. - /// - internal static string strQuickConnect { - get { - return ResourceManager.GetString("strQuickConnect", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Quick Connect Add Failed!. - /// - internal static string strQuickConnectAddFailed { - get { - return ResourceManager.GetString("strQuickConnectAddFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Creating quick connect failed. - /// - internal static string strQuickConnectFailed { - get { - return ResourceManager.GetString("strQuickConnectFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to &Warn me when closing connections. - /// - internal static string strRadioCloseWarnAll { - get { - return ResourceManager.GetString("strRadioCloseWarnAll", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Warn me only when e&xiting mRemoteNG. - /// - internal static string strRadioCloseWarnExit { - get { - return ResourceManager.GetString("strRadioCloseWarnExit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Warn me only when closing &multiple connections. - /// - internal static string strRadioCloseWarnMultiple { - get { - return ResourceManager.GetString("strRadioCloseWarnMultiple", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Do &not warn me when closing connections. - /// - internal static string strRadioCloseWarnNever { - get { - return ResourceManager.GetString("strRadioCloseWarnNever", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RAW. - /// - internal static string strRAW { - get { - return ResourceManager.GetString("strRAW", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP. - /// - internal static string strRDP { - get { - return ResourceManager.GetString("strRDP", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 16777216 Colours (24-bit). - /// - internal static string strRDP16777216Colors { - get { - return ResourceManager.GetString("strRDP16777216Colors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 256 Colours (8-bit). - /// - internal static string strRDP256Colors { - get { - return ResourceManager.GetString("strRDP256Colors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 32768 Colours (15-bit). - /// - internal static string strRDP32768Colors { - get { - return ResourceManager.GetString("strRDP32768Colors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 16777216 Colours (32-bit). - /// - internal static string strRDP4294967296Colors { - get { - return ResourceManager.GetString("strRDP4294967296Colors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 65536 Colours (16-bit). - /// - internal static string strRDP65536Colors { - get { - return ResourceManager.GetString("strRDP65536Colors", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP Add Resolution failed!. - /// - internal static string strRdpAddResolutionFailed { - get { - return ResourceManager.GetString("strRdpAddResolutionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to RDP Add Resolutions failed!. - /// - internal static string strRdpAddResolutionsFailed { - get { - return ResourceManager.GetString("strRdpAddResolutionsFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Add Session failed. - /// - internal static string strRdpAddSessionFailed { - get { - return ResourceManager.GetString("strRdpAddSessionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Close RDP Connection failed!. - /// - internal static string strRdpCloseConnectionFailed { - get { - return ResourceManager.GetString("strRdpCloseConnectionFailed", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to 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 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 All Connections. - /// - internal static string strReconnectAllConnections { - get { - return ResourceManager.GetString("strReconnectAllConnections", 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 Run elevated. - /// - internal static string strRunElevated { - get { - return ResourceManager.GetString("strRunElevated", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Run elevate. - /// - internal static string strRunElevateHeader { - get { - return ResourceManager.GetString("strRunElevateHeader", 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 On Toolbar. - /// - internal static string strShowOnToolbar { - get { - return ResourceManager.GetString("strShowOnToolbar", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Show on toolbar column. - /// - internal static string strShowOnToolbarColumnHeader { - get { - return ResourceManager.GetString("strShowOnToolbarColumnHeader", 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 Timeout (seconds). - /// - internal static string strTimeoutInSeconds { - get { - return ResourceManager.GetString("strTimeoutInSeconds", 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 Try to integrate. - /// - internal static string strTryToIntegrateColumnHeader { - get { - return ResourceManager.GetString("strTryToIntegrateColumnHeader", 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 UltraVNC SingleClick. - /// - internal static string strUltraVNCSingleClick { - get { - return ResourceManager.GetString("strUltraVNCSingleClick", 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 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 Working directory. - /// - internal static string strWorkingDirColumnHeader { - get { - return ResourceManager.GetString("strWorkingDirColumnHeader", 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 Test Connection. - /// - internal static string TestConnection { - get { - return ResourceManager.GetString("TestConnection", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Testing connection. - /// - internal static string TestingConnection { - get { - return ResourceManager.GetString("TestingConnection", 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); - } - } - } -} +//------------------------------------------------------------------------------ +// +// 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", "16.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 An error occurred while trying to reconnect to RDP host '{0}'. + /// + internal static string AutomaticReconnectError { + get { + return ResourceManager.GetString("AutomaticReconnectError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An error occurred while trying to change the connection resolution to host '{0}'. + /// + internal static string ChangeConnectionResolutionError { + get { + return ResourceManager.GetString("ChangeConnectionResolutionError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create a New Connection File. + /// + internal static string ConfigurationCreateNew { + get { + return ResourceManager.GetString("ConfigurationCreateNew", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use a Custom File Path. + /// + internal static string ConfigurationCustomPath { + get { + return ResourceManager.GetString("ConfigurationCustomPath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Import an Existing File. + /// + internal static string ConfigurationImportFile { + get { + return ResourceManager.GetString("ConfigurationImportFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The connection file could not be found.. + /// + internal static string ConnectionFileNotFound { + get { + return ResourceManager.GetString("ConnectionFileNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection successful. + /// + internal static string ConnectionSuccessful { + get { + return ResourceManager.GetString("ConnectionSuccessful", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not find external tool with name "{0}". + /// + internal static string CouldNotFindExternalTool { + get { + return ResourceManager.GetString("CouldNotFindExternalTool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Credentials. + /// + internal static string Credentials { + get { + return ResourceManager.GetString("Credentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Credential not available. + /// + internal static string CredentialUnavailable { + get { + return ResourceManager.GetString("CredentialUnavailable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Database '{0}' not available.. + /// + internal static string DatabaseNotAvailable { + get { + return ResourceManager.GetString("DatabaseNotAvailable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filter search matches in connection tree. + /// + internal static string FilterSearchMatchesInConnectionTree { + get { + return ResourceManager.GetString("FilterSearchMatchesInConnectionTree", 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 Use UTF8 encoding for RDP "Load Balance Info" property. + /// + internal static string LoadBalanceInfoUseUtf8 { + get { + return ResourceManager.GetString("LoadBalanceInfoUseUtf8", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Login failed for user '{0}'.. + /// + internal static string LoginFailedForUser { + get { + return ResourceManager.GetString("LoginFailedForUser", 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 Save connections after every edit. + /// + internal static string SaveConnectionsAfterEveryEdit { + get { + return ResourceManager.GetString("SaveConnectionsAfterEveryEdit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Server '{0}' was not accessible.. + /// + internal static string ServerNotAccessible { + get { + return ResourceManager.GetString("ServerNotAccessible", 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 Working directory:. + /// + internal static string srtWorkingDirectory { + get { + return ResourceManager.GetString("srtWorkingDirectory", 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 AdvancedSecurityOptions. + /// + internal static string strAdvancedSecurityOptions { + get { + return ResourceManager.GetString("strAdvancedSecurityOptions", 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 time in minutes (0 means disabled):. + /// + internal static string strAutoSaveEvery { + get { + return ResourceManager.GetString("strAutoSaveEvery", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minutes (0 means disabled). + /// + internal static string strAutoSaveMins { + get { + return ResourceManager.GetString("strAutoSaveMins", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Latest version. + /// + internal static string strAvailableVersion { + get { + return ResourceManager.GetString("strAvailableVersion", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Back. + /// + internal static string strBack { + get { + return ResourceManager.GetString("strBack", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Browse.... + /// + internal static string strButtonBrowse { + get { + return ResourceManager.GetString("strButtonBrowse", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Cancel. + /// + internal static string strButtonCancel { + get { + return ResourceManager.GetString("strButtonCancel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Change. + /// + internal static string strButtonChange { + get { + return ResourceManager.GetString("strButtonChange", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Close. + /// + internal static string strButtonClose { + get { + return ResourceManager.GetString("strButtonClose", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default Inheritance. + /// + internal static string strButtonDefaultInheritance { + get { + return ResourceManager.GetString("strButtonDefaultInheritance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Default Properties. + /// + internal static string strButtonDefaultProperties { + get { + return ResourceManager.GetString("strButtonDefaultProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disconnect. + /// + internal static string strButtonDisconnect { + get { + return ResourceManager.GetString("strButtonDisconnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icon. + /// + internal static string strButtonIcon { + get { + return ResourceManager.GetString("strButtonIcon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Import. + /// + internal static string strButtonImport { + get { + return ResourceManager.GetString("strButtonImport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inheritance. + /// + internal static string strButtonInheritance { + get { + return ResourceManager.GetString("strButtonInheritance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Launch. + /// + internal static string strButtonLaunch { + get { + return ResourceManager.GetString("strButtonLaunch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Launch PuTTY. + /// + internal static string strButtonLaunchPutty { + get { + return ResourceManager.GetString("strButtonLaunchPutty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &New. + /// + internal static string strButtonNew { + get { + return ResourceManager.GetString("strButtonNew", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &OK. + /// + internal static string strButtonOK { + get { + return ResourceManager.GetString("strButtonOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Properties. + /// + internal static string strButtonProperties { + get { + return ResourceManager.GetString("strButtonProperties", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Scan. + /// + internal static string strButtonScan { + get { + return ResourceManager.GetString("strButtonScan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Stop. + /// + internal static string strButtonStop { + get { + return ResourceManager.GetString("strButtonStop", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Test Proxy. + /// + internal static string strButtonTestProxy { + get { + return ResourceManager.GetString("strButtonTestProxy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to You cannot import a normal connection file. + ///Please use File - Open Connection File for normal connection files!. + /// + internal static string strCannotImportNormalSessionFile { + get { + return ResourceManager.GetString("strCannotImportNormalSessionFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot start Port Scan, incorrect IP format!. + /// + internal static string strCannotStartPortScan { + get { + return ResourceManager.GetString("strCannotStartPortScan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Appearance. + /// + internal static string strCategoryAppearance { + get { + return ResourceManager.GetString("strCategoryAppearance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection. + /// + internal static string strCategoryConnection { + get { + return ResourceManager.GetString("strCategoryConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Credentials. + /// + internal static string strCategoryCredentials { + get { + return ResourceManager.GetString("strCategoryCredentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display. + /// + internal static string strCategoryDisplay { + get { + return ResourceManager.GetString("strCategoryDisplay", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gateway. + /// + internal static string strCategoryGateway { + get { + return ResourceManager.GetString("strCategoryGateway", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to General. + /// + internal static string strCategoryGeneral { + get { + return ResourceManager.GetString("strCategoryGeneral", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Miscellaneous. + /// + internal static string strCategoryMiscellaneous { + get { + return ResourceManager.GetString("strCategoryMiscellaneous", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol. + /// + internal static string strCategoryProtocol { + get { + return ResourceManager.GetString("strCategoryProtocol", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Redirect. + /// + internal static string strCategoryRedirect { + get { + return ResourceManager.GetString("strCategoryRedirect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Always show this screen at startup. + /// + internal static string strCcAlwaysShowScreen { + get { + return ResourceManager.GetString("strCcAlwaysShowScreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Refresh. + /// + internal static string strCcCheckAgain { + get { + return ResourceManager.GetString("strCcCheckAgain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check failed!. + /// + internal static string strCcCheckFailed { + get { + return ResourceManager.GetString("strCcCheckFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check succeeded!. + /// + internal static string strCcCheckSucceeded { + get { + return ResourceManager.GetString("strCcCheckSucceeded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The (RDP) Sessions feature requires that you have a copy of eolwtscom.dll registered on your system. + ///mRemoteNG ships with this component but it is not registered automatically if you do not use the mRemoteNG Installer. + ///To register it manually, run the following command from an elevated command prompt: regsvr32 "C:\Program Files\mRemoteNG\eolwtscom.dll" (where C:\Program Files\mRemoteNG\ is the path to your mRemoteNG installation). + ///If this check still fails or you are unable to use the (RDP) Sessions feature [rest of string was truncated]";. + /// + internal static string strCcEOLFailed { + get { + return ResourceManager.GetString("strCcEOLFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to EOLWTSCOM was found and seems to be registered properly.. + /// + internal static string strCcEOLOK { + get { + return ResourceManager.GetString("strCcEOLOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To use the Gecko Rendering Engine you need to have XULrunner 1.8.1.x and the path to the installation set in your Options. + ///You can download XULrunner 1.8.1.3 here: ftp://ftp.mozilla.org/pub/xulrunner/releases/1.8.1.3/contrib/win32/ + ///When you are finished downloading extract the package to a path of your choice. Then in mRemoteNG go to Tools - Options - Advanced and enter the correct path in the XULrunner path field. + ///If you are still not able to pass this check or use the Gecko Engine in mRemoteNG please cons [rest of string was truncated]";. + /// + internal static string strCcGeckoFailed { + get { + return ResourceManager.GetString("strCcGeckoFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to GeckoFx was found and seems to be installed properly.. + /// + internal static string strCcGeckoOK { + get { + return ResourceManager.GetString("strCcGeckoOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ICA requires that the XenDesktop Online Plugin is installed and that the wfica.ocx library is registered. You can download the client here: http://www.citrix.com/download/ + ///If you have the XenDesktop Online Plugin installed and the check still fails, try to register wfica.ocx manually. + ///To do this open up the run dialog (Start - Run) and enter the following: regsvr32 "c:\Program Files\Citrix\ICA Client\wfica.ocx" (Where c:\Program Files\Citrix\ICA Client\ is the path to your XenDesktop Online Plugin installat [rest of string was truncated]";. + /// + internal static string strCcICAFailed { + get { + return ResourceManager.GetString("strCcICAFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All ICA components were found and seem to be registered properly. + ///Citrix ICA Client Control Version {0}. + /// + internal static string strCcICAOK { + get { + return ResourceManager.GetString("strCcICAOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to not installed properly. + /// + internal static string strCcNotInstalledProperly { + get { + return ResourceManager.GetString("strCcNotInstalledProperly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The SSH, Telnet, Rlogin and RAW protocols need PuTTY to work. PuTTY comes with every mRemoteNG package and is located in the installation path. + ///Please make sure that either you have the Putty.exe in your mRemoteNG directory (default: c:\Program Files\mRemoteNG\) or that you specified a valid path to your PuTTY executable in the Options (Tools - Options - Advanced - Custom PuTTY path). + /// + internal static string strCcPuttyFailed { + get { + return ResourceManager.GetString("strCcPuttyFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The PuTTY executable was found and should be ready to use.. + /// + internal static string strCcPuttyOK { + get { + return ResourceManager.GetString("strCcPuttyOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to For RDP to work properly you need to have at least Remote Desktop Connection (Terminal Services) Client 8.0 installed. You can download it here: http://support.microsoft.com/kb/925876 + ///If this check still fails or you are unable to use RDP, please consult the mRemoteNG Forum at {0}.. + /// + internal static string strCcRDPFailed { + get { + return ResourceManager.GetString("strCcRDPFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All RDP components were found and seem to be registered properly. + ///Remote Desktop Connection Control Version {0}. + /// + internal static string strCcRDPOK { + get { + return ResourceManager.GetString("strCcRDPOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to VNC requires VncSharp.dll to be located in your mRemoteNG application folder. + ///Please make sure that you have the VncSharp.dll file in your mRemoteNG application folder (usually C:\Program Files\mRemoteNG\). + ///If you are still not able to pass this check or use VNC in mRemoteNG please consult the mRemoteNG Forum at {0}.. + /// + internal static string strCcVNCFailed { + get { + return ResourceManager.GetString("strCcVNCFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All VNC components were found and seem to be registered properly. + ///VncSharp Control Version {0}. + /// + internal static string strCcVNCOK { + get { + return ResourceManager.GetString("strCcVNCOK", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatically try to reconnect when disconnected from server (RDP && ICA only). + /// + internal static string strCheckboxAutomaticReconnect { + get { + return ResourceManager.GetString("strCheckboxAutomaticReconnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Domain. + /// + internal static string strCheckboxDomain { + get { + return ResourceManager.GetString("strCheckboxDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do not show this message again.. + /// + internal static string strCheckboxDoNotShowThisMessageAgain { + get { + return ResourceManager.GetString("strCheckboxDoNotShowThisMessageAgain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Inheritance. + /// + internal static string strCheckboxInheritance { + get { + return ResourceManager.GetString("strCheckboxInheritance", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password. + /// + internal static string strCheckboxPassword { + get { + return ResourceManager.GetString("strCheckboxPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This proxy server requires authentication. + /// + internal static string strCheckboxProxyAuthentication { + get { + return ResourceManager.GetString("strCheckboxProxyAuthentication", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use custom PuTTY path:. + /// + internal static string strCheckboxPuttyPath { + get { + return ResourceManager.GetString("strCheckboxPuttyPath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Reconnect when ready. + /// + internal static string strCheckboxReconnectWhenReady { + get { + return ResourceManager.GetString("strCheckboxReconnectWhenReady", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use a proxy server to connect. + /// + internal static string strCheckboxUpdateUseProxy { + get { + return ResourceManager.GetString("strCheckboxUpdateUseProxy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Username. + /// + internal static string strCheckboxUsername { + get { + return ResourceManager.GetString("strCheckboxUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wait for exit. + /// + internal static string strCheckboxWaitForExit { + get { + return ResourceManager.GetString("strCheckboxWaitForExit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check Again. + /// + internal static string strCheckForUpdate { + get { + return ResourceManager.GetString("strCheckForUpdate", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check for updates at startup. + /// + internal static string strCheckForUpdatesOnStartup { + get { + return ResourceManager.GetString("strCheckForUpdatesOnStartup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check now. + /// + internal static string strCheckNow { + get { + return ResourceManager.GetString("strCheckNow", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Check proper installation of components at startup. + /// + internal static string strCheckProperInstallationOfComponentsAtStartup { + get { + return ResourceManager.GetString("strCheckProperInstallationOfComponentsAtStartup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose a path for the mRemoteNG log file. + /// + internal static string strChooseLogPath { + get { + return ResourceManager.GetString("strChooseLogPath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose panel before connecting. + /// + internal static string strChoosePanelBeforeConnecting { + get { + return ResourceManager.GetString("strChoosePanelBeforeConnecting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose Path. + /// + internal static string strChoosePath { + get { + return ResourceManager.GetString("strChoosePath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Closed Ports. + /// + internal static string strClosedPorts { + get { + return ResourceManager.GetString("strClosedPorts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Collapse all folders. + /// + internal static string strCollapseAllFolders { + get { + return ResourceManager.GetString("strCollapseAllFolders", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Arguments. + /// + internal static string strColumnArguments { + get { + return ResourceManager.GetString("strColumnArguments", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display Name. + /// + internal static string strColumnDisplayName { + get { + return ResourceManager.GetString("strColumnDisplayName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Filename. + /// + internal static string strColumnFilename { + get { + return ResourceManager.GetString("strColumnFilename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hostname/IP. + /// + internal static string strColumnHostnameIP { + get { + return ResourceManager.GetString("strColumnHostnameIP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Message. + /// + internal static string strColumnMessage { + get { + return ResourceManager.GetString("strColumnMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Username. + /// + internal static string strColumnUsername { + get { + return ResourceManager.GetString("strColumnUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wait For Exit. + /// + internal static string strColumnWaitForExit { + get { + return ResourceManager.GetString("strColumnWaitForExit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to E&xit {0}. + /// + internal static string strCommandExitProgram { + get { + return ResourceManager.GetString("strCommandExitProgram", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't parse command line args!. + /// + internal static string strCommandLineArgsCouldNotBeParsed { + get { + return ResourceManager.GetString("strCommandLineArgsCouldNotBeParsed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Open a connection file. + /// + internal static string strCommandOpenConnectionFile { + get { + return ResourceManager.GetString("strCommandOpenConnectionFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Try again. + /// + internal static string strCommandTryAgain { + get { + return ResourceManager.GetString("strCommandTryAgain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} has detected the Lenovo Auto Scroll Utility running on this system. This utility is known to cause problems with {0}. It is recommended that you disable or uninstall it.. + /// + internal static string strCompatibilityLenovoAutoScrollUtilityDetected { + get { + return ResourceManager.GetString("strCompatibilityLenovoAutoScrollUtilityDetected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Compatibility problem detected. + /// + internal static string strCompatibilityProblemDetected { + get { + return ResourceManager.GetString("strCompatibilityProblemDetected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Components Check. + /// + internal static string strComponentsCheck { + get { + return ResourceManager.GetString("strComponentsCheck", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to btnIcon_Click failed!. + /// + internal static string strConfigPropertyGridButtonIconClickFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridButtonIconClickFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ShowHideGridItems failed!. + /// + internal static string strConfigPropertyGridHideItemsFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridHideItemsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to IconMenu_Click failed!. + /// + internal static string strConfigPropertyGridMenuClickFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridMenuClickFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Property Grid object failed!. + /// + internal static string strConfigPropertyGridObjectFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridObjectFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SetHostStatus failed!. + /// + internal static string strConfigPropertyGridSetHostStatusFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridSetHostStatusFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to pGrid_PopertyValueChanged failed!. + /// + internal static string strConfigPropertyGridValueFailed { + get { + return ResourceManager.GetString("strConfigPropertyGridValueFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Config UI load failed!. + /// + internal static string strConfigUiLoadFailed { + get { + return ResourceManager.GetString("strConfigUiLoadFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to close the connection: + ///"{0}"?. + /// + internal static string strConfirmCloseConnectionMainInstruction { + get { + return ResourceManager.GetString("strConfirmCloseConnectionMainInstruction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to close the panel, "{0}"? Any connections that it contains will also be closed.. + /// + internal static string strConfirmCloseConnectionPanelMainInstruction { + get { + return ResourceManager.GetString("strConfirmCloseConnectionPanelMainInstruction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the credential record, {0}?. + /// + internal static string strConfirmDeleteCredentialRecord { + get { + return ResourceManager.GetString("strConfirmDeleteCredentialRecord", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the external tool, "{0}"?. + /// + internal static string strConfirmDeleteExternalTool { + get { + return ResourceManager.GetString("strConfirmDeleteExternalTool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the {0} selected external tools?. + /// + internal static string strConfirmDeleteExternalToolMultiple { + get { + return ResourceManager.GetString("strConfirmDeleteExternalToolMultiple", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the connection, "{0}"?. + /// + internal static string strConfirmDeleteNodeConnection { + get { + return ResourceManager.GetString("strConfirmDeleteNodeConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the empty folder, "{0}"?. + /// + internal static string strConfirmDeleteNodeFolder { + get { + return ResourceManager.GetString("strConfirmDeleteNodeFolder", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to delete the folder, "{0}"? Any folders or connections that it contains will also be deleted.. + /// + internal static string strConfirmDeleteNodeFolderNotEmpty { + get { + return ResourceManager.GetString("strConfirmDeleteNodeFolderNotEmpty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do you want to close all open connections?. + /// + internal static string strConfirmExitMainInstruction { + get { + return ResourceManager.GetString("strConfirmExitMainInstruction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to reset the panels to their default layout?. + /// + internal static string strConfirmResetLayout { + get { + return ResourceManager.GetString("strConfirmResetLayout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect. + /// + internal static string strConnect { + get { + return ResourceManager.GetString("strConnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect in fullscreen mode. + /// + internal static string strConnectInFullscreen { + get { + return ResourceManager.GetString("strConnectInFullscreen", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connecting.... + /// + internal static string strConnecting { + get { + return ResourceManager.GetString("strConnecting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol Event Connected. + /// + internal static string strConnectionEventConnected { + get { + return ResourceManager.GetString("strConnectionEventConnected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection to "{0}" via "{1}" established by user "{2}" (Description: "{3}"; User Field: "{4}"). + /// + internal static string strConnectionEventConnectedDetail { + get { + return ResourceManager.GetString("strConnectionEventConnectedDetail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection failed!. + /// + internal static string strConnectionEventConnectionFailed { + get { + return ResourceManager.GetString("strConnectionEventConnectionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol Event ErrorOccured. + /// + internal static string strConnectionEventErrorOccured { + get { + return ResourceManager.GetString("strConnectionEventErrorOccured", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection file path. + /// + internal static string strConnectionFilePath { + get { + return ResourceManager.GetString("strConnectionFilePath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Opening connection failed!. + /// + internal static string strConnectionOpenFailed { + get { + return ResourceManager.GetString("strConnectionOpenFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot open connection: No hostname specified!. + /// + internal static string strConnectionOpenFailedNoHostname { + get { + return ResourceManager.GetString("strConnectionOpenFailedNoHostname", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP error! + ///Error Code: {0} + ///Error Description: {1}. + /// + internal static string strConnectionRdpErrorDetail { + get { + return ResourceManager.GetString("strConnectionRdpErrorDetail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections. + /// + internal static string strConnections { + get { + return ResourceManager.GetString("strConnections", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't set default port!. + /// + internal static string strConnectionSetDefaultPortFailed { + get { + return ResourceManager.GetString("strConnectionSetDefaultPortFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't create backup of connections file!. + /// + internal static string strConnectionsFileBackupFailed { + get { + return ResourceManager.GetString("strConnectionsFileBackupFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't import connections file!. + /// + internal static string strConnectionsFileCouldNotBeImported { + get { + return ResourceManager.GetString("strConnectionsFileCouldNotBeImported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections file "{0}" could not be loaded!. + /// + internal static string strConnectionsFileCouldNotBeLoaded { + get { + return ResourceManager.GetString("strConnectionsFileCouldNotBeLoaded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connections file "{0}" could not be loaded! + ///Starting with new connections file.. + /// + internal static string strConnectionsFileCouldNotBeLoadedNew { + get { + return ResourceManager.GetString("strConnectionsFileCouldNotBeLoadedNew", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't save connections file!. + /// + internal static string strConnectionsFileCouldNotBeSaved { + get { + return ResourceManager.GetString("strConnectionsFileCouldNotBeSaved", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't save connections file as "{0}"!. + /// + internal static string strConnectionsFileCouldNotSaveAs { + get { + return ResourceManager.GetString("strConnectionsFileCouldNotSaveAs", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect without credentials. + /// + internal static string strConnectNoCredentials { + get { + return ResourceManager.GetString("strConnectNoCredentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect to console session. + /// + internal static string strConnectToConsoleSession { + get { + return ResourceManager.GetString("strConnectToConsoleSession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect (with options). + /// + internal static string strConnectWithOptions { + get { + return ResourceManager.GetString("strConnectWithOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection to {0} via {1} closed by user {2}.. + /// + internal static string strConnenctionClosedByUser { + get { + return ResourceManager.GetString("strConnenctionClosedByUser", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection to {0} via {1} closed by user {2}. (Description: "{3}"; User Field: "{4}"). + /// + internal static string strConnenctionClosedByUserDetail { + get { + return ResourceManager.GetString("strConnenctionClosedByUserDetail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection Event Closed. + /// + internal static string strConnenctionCloseEvent { + get { + return ResourceManager.GetString("strConnenctionCloseEvent", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection Event Closed failed!. + /// + internal static string strConnenctionCloseEventFailed { + get { + return ResourceManager.GetString("strConnenctionCloseEventFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't create new connections file!. + /// + internal static string strCouldNotCreateNewConnectionsFile { + get { + return ResourceManager.GetString("strCouldNotCreateNewConnectionsFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not find ToolStrip control in FilteredPropertyGrid.. + /// + internal static string strCouldNotFindToolStripInFilteredPropertyGrid { + get { + return ResourceManager.GetString("strCouldNotFindToolStripInFilteredPropertyGrid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create and open new file. + /// + internal static string strCreateAndOpenNewFile { + get { + return ResourceManager.GetString("strCreateAndOpenNewFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Create an empty panel when mRemoteNG starts. + /// + internal static string strCreateEmptyPanelOnStartUp { + get { + return ResourceManager.GetString("strCreateEmptyPanelOnStartUp", 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 Delete.... + /// + internal static string strDelete { + get { + return ResourceManager.GetString("strDelete", 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. + /// + /// See the Microsoft Support article at http://support.microsoft.com/kb/811833 for more information. + /// + ///{0} is not fully FIPS compliant. Click OK to proceed at your own discretion, or Cancel to Exit.. + /// + 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 Import sub OUs. + /// + internal static string strImportSubOUs { + get { + return ResourceManager.GetString("strImportSubOUs", 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 Must Be Between 0 and 255. + /// + internal static string strIPRange { + get { + return ResourceManager.GetString("strIPRange", 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 Read Only:. + /// + internal static string strLabelReadOnly { + get { + return ResourceManager.GetString("strLabelReadOnly", 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 Use UTF8 encoding for RDP "Load Balance Info" property. + /// + internal static string strLoadBalanceInfoUseUtf8 { + get { + return ResourceManager.GetString("strLoadBalanceInfoUseUtf8", 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 Lock toolbar positions. + /// + internal static string strLockToolbars { + get { + return ResourceManager.GetString("strLockToolbars", 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 Lock Toolbar Positions. + /// + internal static string strMenuLockToolbars { + get { + return ResourceManager.GetString("strMenuLockToolbars", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multi SSH Toolbar. + /// + internal static string strMenuMultiSshToolbar { + get { + return ResourceManager.GetString("strMenuMultiSshToolbar", 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 Multi SSH toolbar. + /// + internal static string strMultiSshToolbar { + get { + return ResourceManager.GetString("strMultiSshToolbar", 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 mRemoteNG Options. + /// + internal static string strOptionsPageTitle { + get { + return ResourceManager.GetString("strOptionsPageTitle", 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 '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 Out Of Range. + /// + internal static string strOutOfRange { + get { + return ResourceManager.GetString("strOutOfRange", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Panel Name. + /// + internal static string strPanelName { + get { + return ResourceManager.GetString("strPanelName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password must contain at least {0} of the following characters: {1}. + /// + internal static string strPasswordConstainsSpecialCharactersConstraintHint { + get { + return ResourceManager.GetString("strPasswordConstainsSpecialCharactersConstraintHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password must contain at least {0} lower case character(s). + /// + internal static string strPasswordContainsLowerCaseConstraintHint { + get { + return ResourceManager.GetString("strPasswordContainsLowerCaseConstraintHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password must contain at least {0} number(s). + /// + internal static string strPasswordContainsNumbersConstraint { + get { + return ResourceManager.GetString("strPasswordContainsNumbersConstraint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password must contain at least {0} upper case character(s). + /// + internal static string strPasswordContainsUpperCaseConstraintHint { + get { + return ResourceManager.GetString("strPasswordContainsUpperCaseConstraintHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password length must be between {0} and {1}. + /// + internal static string strPasswordLengthConstraintHint { + get { + return ResourceManager.GetString("strPasswordLengthConstraintHint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password protect. + /// + internal static string strPasswordProtect { + get { + return ResourceManager.GetString("strPasswordProtect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Both passwords must match.. + /// + internal static string strPasswordStatusMustMatch { + get { + return ResourceManager.GetString("strPasswordStatusMustMatch", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The password must be at least 3 characters long.. + /// + internal static string strPasswordStatusTooShort { + get { + return ResourceManager.GetString("strPasswordStatusTooShort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Please fill all fields. + /// + internal static string strPleaseFillAllFields { + get { + return ResourceManager.GetString("strPleaseFillAllFields", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Popups. + /// + internal static string strPopups { + get { + return ResourceManager.GetString("strPopups", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port scan complete.. + /// + internal static string strPortScanComplete { + get { + return ResourceManager.GetString("strPortScanComplete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't load PortScan panel!. + /// + internal static string strPortScanCouldNotLoadPanel { + get { + return ResourceManager.GetString("strPortScanCouldNotLoadPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to (These properties will only be saved if you select mRemote/mRemoteNG XML as output file format!). + /// + internal static string strPropertiesWillOnlyBeSavedMRemoteXML { + get { + return ResourceManager.GetString("strPropertiesWillOnlyBeSavedMRemoteXML", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the hostname or ip you want to connect to.. + /// + internal static string strPropertyDescriptionAddress { + get { + return ResourceManager.GetString("strPropertyDescriptionAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Toggle all inheritance options.. + /// + internal static string strPropertyDescriptionAll { + get { + return ResourceManager.GetString("strPropertyDescriptionAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select which authentication level this connection should use.. + /// + internal static string strPropertyDescriptionAuthenticationLevel { + get { + return ResourceManager.GetString("strPropertyDescriptionAuthenticationLevel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select how you want to authenticate against the VNC server.. + /// + internal static string strPropertyDescriptionAuthenticationMode { + get { + return ResourceManager.GetString("strPropertyDescriptionAuthenticationMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether to automatically resize the connection when the window is resized or when fullscreen mode is toggled. Requires RDC 8.0 or higher.. + /// + internal static string strPropertyDescriptionAutomaticResize { + get { + return ResourceManager.GetString("strPropertyDescriptionAutomaticResize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether to use bitmap caching or not.. + /// + internal static string strPropertyDescriptionCacheBitmaps { + get { + return ResourceManager.GetString("strPropertyDescriptionCacheBitmaps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the colour quality to be used.. + /// + internal static string strPropertyDescriptionColors { + get { + return ResourceManager.GetString("strPropertyDescriptionColors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the compression value to be used.. + /// + internal static string strPropertyDescriptionCompression { + get { + return ResourceManager.GetString("strPropertyDescriptionCompression", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select which credential to use for this connection.. + /// + internal static string strPropertyDescriptionCredential { + get { + return ResourceManager.GetString("strPropertyDescriptionCredential", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Put your notes or a description for the host here.. + /// + internal static string strPropertyDescriptionDescription { + get { + return ResourceManager.GetString("strPropertyDescriptionDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select yes if the theme of the remote host should be displayed.. + /// + internal static string strPropertyDescriptionDisplayThemes { + get { + return ResourceManager.GetString("strPropertyDescriptionDisplayThemes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select yes if the wallpaper of the remote host should be displayed.. + /// + internal static string strPropertyDescriptionDisplayWallpaper { + get { + return ResourceManager.GetString("strPropertyDescriptionDisplayWallpaper", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your domain.. + /// + internal static string strPropertyDescriptionDomain { + get { + return ResourceManager.GetString("strPropertyDescriptionDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether to use desktop composition or not.. + /// + internal static string strPropertyDescriptionEnableDesktopComposition { + get { + return ResourceManager.GetString("strPropertyDescriptionEnableDesktopComposition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether to use font smoothing or not.. + /// + internal static string strPropertyDescriptionEnableFontSmoothing { + get { + return ResourceManager.GetString("strPropertyDescriptionEnableFontSmoothing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the encoding mode to be used.. + /// + internal static string strPropertyDescriptionEncoding { + get { + return ResourceManager.GetString("strPropertyDescriptionEncoding", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the encryption strength of the remote host.. + /// + internal static string strPropertyDescriptionEncryptionStrength { + get { + return ResourceManager.GetString("strPropertyDescriptionEncryptionStrength", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the external tool to be started.. + /// + internal static string strPropertyDescriptionExternalTool { + get { + return ResourceManager.GetString("strPropertyDescriptionExternalTool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select a external tool to be started after the disconnection to the remote host.. + /// + internal static string strPropertyDescriptionExternalToolAfter { + get { + return ResourceManager.GetString("strPropertyDescriptionExternalToolAfter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select a external tool to be started before the connection to the remote host is established.. + /// + internal static string strPropertyDescriptionExternalToolBefore { + get { + return ResourceManager.GetString("strPropertyDescriptionExternalToolBefore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose a icon that will be displayed when connected to the host.. + /// + internal static string strPropertyDescriptionIcon { + get { + return ResourceManager.GetString("strPropertyDescriptionIcon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies the load balancing information for use by load balancing routers to choose the best server.. + /// + internal static string strPropertyDescriptionLoadBalanceInfo { + get { + return ResourceManager.GetString("strPropertyDescriptionLoadBalanceInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the MAC address of the remote host if you wish to use it in an external tool.. + /// + internal static string strPropertyDescriptionMACAddress { + get { + return ResourceManager.GetString("strPropertyDescriptionMACAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This is the name that will be displayed in the connections tree.. + /// + internal static string strPropertyDescriptionName { + get { + return ResourceManager.GetString("strPropertyDescriptionName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sets the panel in which the connection will open.. + /// + internal static string strPropertyDescriptionPanel { + get { + return ResourceManager.GetString("strPropertyDescriptionPanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your password.. + /// + internal static string strPropertyDescriptionPassword { + get { + return ResourceManager.GetString("strPropertyDescriptionPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the port the selected protocol is listening on.. + /// + internal static string strPropertyDescriptionPort { + get { + return ResourceManager.GetString("strPropertyDescriptionPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose the protocol mRemoteNG should use to connect to the host.. + /// + internal static string strPropertyDescriptionProtocol { + get { + return ResourceManager.GetString("strPropertyDescriptionProtocol", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select a PuTTY session to be used when connecting.. + /// + internal static string strPropertyDescriptionPuttySession { + get { + return ResourceManager.GetString("strPropertyDescriptionPuttySession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies the domain name that a user provides to connect to the RD Gateway server.. + /// + internal static string strPropertyDescriptionRDGatewayDomain { + get { + return ResourceManager.GetString("strPropertyDescriptionRDGatewayDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies the host name of the Remote Desktop Gateway server.. + /// + internal static string strPropertyDescriptionRDGatewayHostname { + get { + return ResourceManager.GetString("strPropertyDescriptionRDGatewayHostname", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies when to use a Remote Desktop Gateway (RD Gateway) server.. + /// + internal static string strPropertyDescriptionRDGatewayUsageMethod { + get { + return ResourceManager.GetString("strPropertyDescriptionRDGatewayUsageMethod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies whether or not to log on to the gateway using the same username and password as the connection.. + /// + internal static string strPropertyDescriptionRDGatewayUseConnectionCredentials { + get { + return ResourceManager.GetString("strPropertyDescriptionRDGatewayUseConnectionCredentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Specifies the user name that a user provides to connect to the RD Gateway server.. + /// + internal static string strPropertyDescriptionRDGatewayUsername { + get { + return ResourceManager.GetString("strPropertyDescriptionRDGatewayUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether to receive an alert after the RDP session disconnects due to inactivity. + /// + internal static string strPropertyDescriptionRDPAlertIdleTimeout { + get { + return ResourceManager.GetString("strPropertyDescriptionRDPAlertIdleTimeout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The number of minutes for the RDP session to sit idle before automatically disconnecting (for no limit use 0). + /// + internal static string strPropertyDescriptionRDPMinutesToIdleTimeout { + get { + return ResourceManager.GetString("strPropertyDescriptionRDPMinutesToIdleTimeout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether local disk drives should be shown on the remote host.. + /// + internal static string strPropertyDescriptionRedirectDrives { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectDrives", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host.. + /// + internal static string strPropertyDescriptionRedirectKeys { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectKeys", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether local ports (ie. com, parallel) should be shown on the remote host.. + /// + internal static string strPropertyDescriptionRedirectPorts { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectPorts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether local printers should be shown on the remote host.. + /// + internal static string strPropertyDescriptionRedirectPrinters { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectPrinters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select whether local smart cards should be available on the remote host.. + /// + internal static string strPropertyDescriptionRedirectSmartCards { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectSmartCards", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select how remote sound should be redirected.. + /// + internal static string strPropertyDescriptionRedirectSounds { + get { + return ResourceManager.GetString("strPropertyDescriptionRedirectSounds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select one of the available rendering engines that will be used to display HTML.. + /// + internal static string strPropertyDescriptionRenderingEngine { + get { + return ResourceManager.GetString("strPropertyDescriptionRenderingEngine", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose the resolution or mode this connection will open in.. + /// + internal static string strPropertyDescriptionResolution { + get { + return ResourceManager.GetString("strPropertyDescriptionResolution", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select the SmartSize mode to be used.. + /// + internal static string strPropertyDescriptionSmartSizeMode { + get { + return ResourceManager.GetString("strPropertyDescriptionSmartSizeMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Choose the Sound Quality provided by the protocol: Dynamic, Medium, High. + /// + internal static string strPropertyDescriptionSoundQuality { + get { + return ResourceManager.GetString("strPropertyDescriptionSoundQuality", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connect to the console session of the remote host.. + /// + internal static string strPropertyDescriptionUseConsoleSession { + get { + return ResourceManager.GetString("strPropertyDescriptionUseConsoleSession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use the Credential Security Support Provider (CredSSP) for authentication if it is available.. + /// + internal static string strPropertyDescriptionUseCredSsp { + get { + return ResourceManager.GetString("strPropertyDescriptionUseCredSsp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Feel free to enter any information you need here.. + /// + internal static string strPropertyDescriptionUser1 { + get { + return ResourceManager.GetString("strPropertyDescriptionUser1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your username.. + /// + internal static string strPropertyDescriptionUsername { + get { + return ResourceManager.GetString("strPropertyDescriptionUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If you want to establish a view only connection to the host select yes.. + /// + internal static string strPropertyDescriptionViewOnly { + get { + return ResourceManager.GetString("strPropertyDescriptionViewOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the proxy address to be used.. + /// + internal static string strPropertyDescriptionVNCProxyAddress { + get { + return ResourceManager.GetString("strPropertyDescriptionVNCProxyAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your password for authenticating against the proxy.. + /// + internal static string strPropertyDescriptionVNCProxyPassword { + get { + return ResourceManager.GetString("strPropertyDescriptionVNCProxyPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter the port the proxy server listens on.. + /// + internal static string strPropertyDescriptionVNCProxyPort { + get { + return ResourceManager.GetString("strPropertyDescriptionVNCProxyPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to If you use a proxy to tunnel VNC connections, select which type it is.. + /// + internal static string strPropertyDescriptionVNCProxyType { + get { + return ResourceManager.GetString("strPropertyDescriptionVNCProxyType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter your username for authenticating against the proxy.. + /// + internal static string strPropertyDescriptionVNCProxyUsername { + get { + return ResourceManager.GetString("strPropertyDescriptionVNCProxyUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hostname/IP. + /// + internal static string strPropertyNameAddress { + get { + return ResourceManager.GetString("strPropertyNameAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to All. + /// + internal static string strPropertyNameAll { + get { + return ResourceManager.GetString("strPropertyNameAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Server Authentication. + /// + internal static string strPropertyNameAuthenticationLevel { + get { + return ResourceManager.GetString("strPropertyNameAuthenticationLevel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Authentication Mode. + /// + internal static string strPropertyNameAuthenticationMode { + get { + return ResourceManager.GetString("strPropertyNameAuthenticationMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Automatic Resize. + /// + internal static string strPropertyNameAutomaticResize { + get { + return ResourceManager.GetString("strPropertyNameAutomaticResize", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cache Bitmaps. + /// + internal static string strPropertyNameCacheBitmaps { + get { + return ResourceManager.GetString("strPropertyNameCacheBitmaps", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Colours. + /// + internal static string strPropertyNameColors { + get { + return ResourceManager.GetString("strPropertyNameColors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Compression. + /// + internal static string strPropertyNameCompression { + get { + return ResourceManager.GetString("strPropertyNameCompression", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Description. + /// + internal static string strPropertyNameDescription { + get { + return ResourceManager.GetString("strPropertyNameDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display Themes. + /// + internal static string strPropertyNameDisplayThemes { + get { + return ResourceManager.GetString("strPropertyNameDisplayThemes", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Display Wallpaper. + /// + internal static string strPropertyNameDisplayWallpaper { + get { + return ResourceManager.GetString("strPropertyNameDisplayWallpaper", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Domain. + /// + internal static string strPropertyNameDomain { + get { + return ResourceManager.GetString("strPropertyNameDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Desktop Composition. + /// + internal static string strPropertyNameEnableDesktopComposition { + get { + return ResourceManager.GetString("strPropertyNameEnableDesktopComposition", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Font Smoothing. + /// + internal static string strPropertyNameEnableFontSmoothing { + get { + return ResourceManager.GetString("strPropertyNameEnableFontSmoothing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Encoding. + /// + internal static string strPropertyNameEncoding { + get { + return ResourceManager.GetString("strPropertyNameEncoding", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Encryption Strength. + /// + internal static string strPropertyNameEncryptionStrength { + get { + return ResourceManager.GetString("strPropertyNameEncryptionStrength", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to External Tool. + /// + internal static string strPropertyNameExternalTool { + get { + return ResourceManager.GetString("strPropertyNameExternalTool", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to External Tool After. + /// + internal static string strPropertyNameExternalToolAfter { + get { + return ResourceManager.GetString("strPropertyNameExternalToolAfter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to External Tool Before. + /// + internal static string strPropertyNameExternalToolBefore { + get { + return ResourceManager.GetString("strPropertyNameExternalToolBefore", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Icon. + /// + internal static string strPropertyNameIcon { + get { + return ResourceManager.GetString("strPropertyNameIcon", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Load Balance Info. + /// + internal static string strPropertyNameLoadBalanceInfo { + get { + return ResourceManager.GetString("strPropertyNameLoadBalanceInfo", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to MAC Address. + /// + internal static string strPropertyNameMACAddress { + get { + return ResourceManager.GetString("strPropertyNameMACAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name. + /// + internal static string strPropertyNameName { + get { + return ResourceManager.GetString("strPropertyNameName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Panel. + /// + internal static string strPropertyNamePanel { + get { + return ResourceManager.GetString("strPropertyNamePanel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Password. + /// + internal static string strPropertyNamePassword { + get { + return ResourceManager.GetString("strPropertyNamePassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Port. + /// + internal static string strPropertyNamePort { + get { + return ResourceManager.GetString("strPropertyNamePort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol. + /// + internal static string strPropertyNameProtocol { + get { + return ResourceManager.GetString("strPropertyNameProtocol", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY Session. + /// + internal static string strPropertyNamePuttySession { + get { + return ResourceManager.GetString("strPropertyNamePuttySession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gateway Domain. + /// + internal static string strPropertyNameRDGatewayDomain { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gateway Hostname. + /// + internal static string strPropertyNameRDGatewayHostname { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayHostname", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote Desktop Gateway Password. + /// + internal static string strPropertyNameRDGatewayPassword { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use Gateway. + /// + internal static string strPropertyNameRDGatewayUsageMethod { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayUsageMethod", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gateway Credentials. + /// + internal static string strPropertyNameRDGatewayUseConnectionCredentials { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayUseConnectionCredentials", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Gateway Username. + /// + internal static string strPropertyNameRDGatewayUsername { + get { + return ResourceManager.GetString("strPropertyNameRDGatewayUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alert on Idle Disconnect. + /// + internal static string strPropertyNameRDPAlertIdleTimeout { + get { + return ResourceManager.GetString("strPropertyNameRDPAlertIdleTimeout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Minutes to Idle. + /// + internal static string strPropertyNameRDPMinutesToIdleTimeout { + get { + return ResourceManager.GetString("strPropertyNameRDPMinutesToIdleTimeout", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Disk Drives. + /// + internal static string strPropertyNameRedirectDrives { + get { + return ResourceManager.GetString("strPropertyNameRedirectDrives", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Key Combinations. + /// + internal static string strPropertyNameRedirectKeys { + get { + return ResourceManager.GetString("strPropertyNameRedirectKeys", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ports. + /// + internal static string strPropertyNameRedirectPorts { + get { + return ResourceManager.GetString("strPropertyNameRedirectPorts", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Printers. + /// + internal static string strPropertyNameRedirectPrinters { + get { + return ResourceManager.GetString("strPropertyNameRedirectPrinters", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Smart Cards. + /// + internal static string strPropertyNameRedirectSmartCards { + get { + return ResourceManager.GetString("strPropertyNameRedirectSmartCards", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sounds. + /// + internal static string strPropertyNameRedirectSounds { + get { + return ResourceManager.GetString("strPropertyNameRedirectSounds", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Rendering Engine. + /// + internal static string strPropertyNameRenderingEngine { + get { + return ResourceManager.GetString("strPropertyNameRenderingEngine", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Resolution. + /// + internal static string strPropertyNameResolution { + get { + return ResourceManager.GetString("strPropertyNameResolution", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SmartSize Mode. + /// + internal static string strPropertyNameSmartSizeMode { + get { + return ResourceManager.GetString("strPropertyNameSmartSizeMode", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Sound Quality. + /// + internal static string strPropertyNameSoundQuality { + get { + return ResourceManager.GetString("strPropertyNameSoundQuality", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use Console Session. + /// + internal static string strPropertyNameUseConsoleSession { + get { + return ResourceManager.GetString("strPropertyNameUseConsoleSession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Use CredSSP. + /// + internal static string strPropertyNameUseCredSsp { + get { + return ResourceManager.GetString("strPropertyNameUseCredSsp", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to User Field. + /// + internal static string strPropertyNameUser1 { + get { + return ResourceManager.GetString("strPropertyNameUser1", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Username. + /// + internal static string strPropertyNameUsername { + get { + return ResourceManager.GetString("strPropertyNameUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to View Only. + /// + internal static string strPropertyNameViewOnly { + get { + return ResourceManager.GetString("strPropertyNameViewOnly", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy Address. + /// + internal static string strPropertyNameVNCProxyAddress { + get { + return ResourceManager.GetString("strPropertyNameVNCProxyAddress", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy Password. + /// + internal static string strPropertyNameVNCProxyPassword { + get { + return ResourceManager.GetString("strPropertyNameVNCProxyPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy Port. + /// + internal static string strPropertyNameVNCProxyPort { + get { + return ResourceManager.GetString("strPropertyNameVNCProxyPort", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy Type. + /// + internal static string strPropertyNameVNCProxyType { + get { + return ResourceManager.GetString("strPropertyNameVNCProxyType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy Username. + /// + internal static string strPropertyNameVNCProxyUsername { + get { + return ResourceManager.GetString("strPropertyNameVNCProxyUsername", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol Event Disconnected. + ///Message: + ///{0}. + /// + internal static string strProtocolEventDisconnected { + get { + return ResourceManager.GetString("strProtocolEventDisconnected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol Event Disconnected failed. + ///{0}. + /// + internal static string strProtocolEventDisconnectFailed { + get { + return ResourceManager.GetString("strProtocolEventDisconnectFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Protocol to import. + /// + internal static string strProtocolToImport { + get { + return ResourceManager.GetString("strProtocolToImport", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy test failed!. + /// + internal static string strProxyTestFailed { + get { + return ResourceManager.GetString("strProxyTestFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Proxy test succeeded!. + /// + internal static string strProxyTestSucceeded { + get { + return ResourceManager.GetString("strProxyTestSucceeded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Connection failed!. + /// + internal static string strPuttyConnectionFailed { + get { + return ResourceManager.GetString("strPuttyConnectionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Dispose of Putty process failed!. + /// + internal static string strPuttyDisposeFailed { + get { + return ResourceManager.GetString("strPuttyDisposeFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Couldn't set focus!. + /// + internal static string strPuttyFocusFailed { + get { + return ResourceManager.GetString("strPuttyFocusFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get Putty Sessions Failed!. + /// + internal static string strPuttyGetSessionsFailed { + get { + return ResourceManager.GetString("strPuttyGetSessionsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Putty Handle: {0}. + /// + internal static string strPuttyHandle { + get { + return ResourceManager.GetString("strPuttyHandle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Killing Putty Process failed!. + /// + internal static string strPuttyKillFailed { + get { + return ResourceManager.GetString("strPuttyKillFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Panel Handle: {0}. + /// + internal static string strPuttyParentHandle { + get { + return ResourceManager.GetString("strPuttyParentHandle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Putty Resize Failed!. + /// + internal static string strPuttyResizeFailed { + get { + return ResourceManager.GetString("strPuttyResizeFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY Saved Sessions. + /// + internal static string strPuttySavedSessionsRootName { + get { + return ResourceManager.GetString("strPuttySavedSessionsRootName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY Session Settings. + /// + internal static string strPuttySessionSettings { + get { + return ResourceManager.GetString("strPuttySessionSettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY Settings. + /// + internal static string strPuttySettings { + get { + return ResourceManager.GetString("strPuttySettings", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show PuTTY Settings Dialog failed!. + /// + internal static string strPuttyShowSettingsDialogFailed { + get { + return ResourceManager.GetString("strPuttyShowSettingsDialogFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Putty Start Failed!. + /// + internal static string strPuttyStartFailed { + get { + return ResourceManager.GetString("strPuttyStartFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to --- PuTTY Stuff ---. + /// + internal static string strPuttyStuff { + get { + return ResourceManager.GetString("strPuttyStuff", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to PuTTY Title: {0}. + /// + internal static string strPuttyTitle { + get { + return ResourceManager.GetString("strPuttyTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quick: {0}. + /// + internal static string strQuick { + get { + return ResourceManager.GetString("strQuick", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quick Connect. + /// + internal static string strQuickConnect { + get { + return ResourceManager.GetString("strQuickConnect", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Quick Connect Add Failed!. + /// + internal static string strQuickConnectAddFailed { + get { + return ResourceManager.GetString("strQuickConnectAddFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Creating quick connect failed. + /// + internal static string strQuickConnectFailed { + get { + return ResourceManager.GetString("strQuickConnectFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to &Warn me when closing connections. + /// + internal static string strRadioCloseWarnAll { + get { + return ResourceManager.GetString("strRadioCloseWarnAll", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warn me only when e&xiting mRemoteNG. + /// + internal static string strRadioCloseWarnExit { + get { + return ResourceManager.GetString("strRadioCloseWarnExit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Warn me only when closing &multiple connections. + /// + internal static string strRadioCloseWarnMultiple { + get { + return ResourceManager.GetString("strRadioCloseWarnMultiple", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Do &not warn me when closing connections. + /// + internal static string strRadioCloseWarnNever { + get { + return ResourceManager.GetString("strRadioCloseWarnNever", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RAW. + /// + internal static string strRAW { + get { + return ResourceManager.GetString("strRAW", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP. + /// + internal static string strRDP { + get { + return ResourceManager.GetString("strRDP", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 16777216 Colours (24-bit). + /// + internal static string strRDP16777216Colors { + get { + return ResourceManager.GetString("strRDP16777216Colors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 256 Colours (8-bit). + /// + internal static string strRDP256Colors { + get { + return ResourceManager.GetString("strRDP256Colors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 32768 Colours (15-bit). + /// + internal static string strRDP32768Colors { + get { + return ResourceManager.GetString("strRDP32768Colors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 16777216 Colours (32-bit). + /// + internal static string strRDP4294967296Colors { + get { + return ResourceManager.GetString("strRDP4294967296Colors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 65536 Colours (16-bit). + /// + internal static string strRDP65536Colors { + get { + return ResourceManager.GetString("strRDP65536Colors", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP Add Resolution failed!. + /// + internal static string strRdpAddResolutionFailed { + get { + return ResourceManager.GetString("strRdpAddResolutionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to RDP Add Resolutions failed!. + /// + internal static string strRdpAddResolutionsFailed { + get { + return ResourceManager.GetString("strRdpAddResolutionsFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add Session failed. + /// + internal static string strRdpAddSessionFailed { + get { + return ResourceManager.GetString("strRdpAddSessionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Close RDP Connection failed!. + /// + internal static string strRdpCloseConnectionFailed { + get { + return ResourceManager.GetString("strRdpCloseConnectionFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 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 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 All Connections. + /// + internal static string strReconnectAllConnections { + get { + return ResourceManager.GetString("strReconnectAllConnections", 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 Run elevated. + /// + internal static string strRunElevated { + get { + return ResourceManager.GetString("strRunElevated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Run elevate. + /// + internal static string strRunElevateHeader { + get { + return ResourceManager.GetString("strRunElevateHeader", 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 On Toolbar. + /// + internal static string strShowOnToolbar { + get { + return ResourceManager.GetString("strShowOnToolbar", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Show on toolbar column. + /// + internal static string strShowOnToolbarColumnHeader { + get { + return ResourceManager.GetString("strShowOnToolbarColumnHeader", 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 Timeout (seconds). + /// + internal static string strTimeoutInSeconds { + get { + return ResourceManager.GetString("strTimeoutInSeconds", 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 Try to integrate. + /// + internal static string strTryToIntegrateColumnHeader { + get { + return ResourceManager.GetString("strTryToIntegrateColumnHeader", 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 UltraVNC SingleClick. + /// + internal static string strUltraVNCSingleClick { + get { + return ResourceManager.GetString("strUltraVNCSingleClick", 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 AdmPwd.E to retrieve the password. + /// + internal static string strUseAdmPwd { + get { + return ResourceManager.GetString("strUseAdmPwd", 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 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 Working directory. + /// + internal static string strWorkingDirColumnHeader { + get { + return ResourceManager.GetString("strWorkingDirColumnHeader", 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 Test Connection. + /// + internal static string TestConnection { + get { + return ResourceManager.GetString("TestConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Testing connection. + /// + internal static string TestingConnection { + get { + return ResourceManager.GetString("TestingConnection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unlock. + /// + internal static string Unlock { + get { + return ResourceManager.GetString("Unlock", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unlock Credential Repository. + /// + internal static string UnlockCredentialRepository { + get { + return ResourceManager.GetString("UnlockCredentialRepository", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unlocking. + /// + internal static string Unlocking { + get { + return ResourceManager.GetString("Unlocking", resourceCulture); + } + } + } +} diff --git a/mRemoteV1/Resources/Language/Language.resx b/mRemoteV1/Resources/Language/Language.resx index 56cff0772..b9d8db907 100644 --- a/mRemoteV1/Resources/Language/Language.resx +++ b/mRemoteV1/Resources/Language/Language.resx @@ -2700,4 +2700,7 @@ This page will walk you through the process of upgrading your connections file o An error occurred while trying to change the connection resolution to host '{0}' + + Use AdmPwd.E to retrieve the password + \ No newline at end of file diff --git a/mRemoteV1/Tools/ExternalToolArgumentParser.cs b/mRemoteV1/Tools/ExternalToolArgumentParser.cs index edbb1d2b3..4f3ffe0eb 100644 --- a/mRemoteV1/Tools/ExternalToolArgumentParser.cs +++ b/mRemoteV1/Tools/ExternalToolArgumentParser.cs @@ -182,8 +182,24 @@ namespace mRemoteNG.Tools replacement = _connectionInfo.Password; if (string.IsNullOrEmpty(replacement) && Settings.Default.EmptyCredentials == "custom") replacement = new LegacyRijndaelCryptographyProvider() - .Decrypt(Convert.ToString(Settings.Default.DefaultPassword), - Runtime.EncryptionKey); + .Decrypt(Convert.ToString(Settings.Default.DefaultPassword), + Runtime.EncryptionKey); + if (string.IsNullOrEmpty(replacement) && Settings.Default.EmptyCredentials == "admpwd") + { + if (_connectionInfo.Domain == ".") + replacement = AdmPwd.PDSUtils.PdsWrapper.GetPassword(null, _connectionInfo.Hostname, AdmPwd.Types.IdentityType.LocalComputerAdmin, false, false).Password; + else + { + var userName = _connectionInfo.Username; + if (string.IsNullOrEmpty(userName)) + if (Settings.Default.EmptyCredentials == "windows") + userName = Environment.UserName; + else if (Settings.Default.EmptyCredentials == "custom") + userName = Settings.Default.DefaultUsername; + + replacement = AdmPwd.PDSUtils.PdsWrapper.GetPassword(_connectionInfo.Domain, userName, AdmPwd.Types.IdentityType.ManagedDomainAccount, false, false).Password; + } + } break; case "domain": replacement = _connectionInfo.Domain; diff --git a/mRemoteV1/UI/Controls/Base/NGCheckBox.cs b/mRemoteV1/UI/Controls/Base/NGCheckBox.cs index fb75a6511..814936050 100644 --- a/mRemoteV1/UI/Controls/Base/NGCheckBox.cs +++ b/mRemoteV1/UI/Controls/Base/NGCheckBox.cs @@ -68,7 +68,8 @@ namespace mRemoteNG.UI.Controls.Base Color fore; Color glyph; Color checkBorder; - + if (_themeManager.ActiveTheme == null) + return; var back = _themeManager.ActiveTheme.ExtendedPalette.getColor("CheckBox_Background"); if (Enabled) { diff --git a/mRemoteV1/UI/Controls/Base/NGLabel.cs b/mRemoteV1/UI/Controls/Base/NGLabel.cs index 80ad21aa0..4204e9552 100644 --- a/mRemoteV1/UI/Controls/Base/NGLabel.cs +++ b/mRemoteV1/UI/Controls/Base/NGLabel.cs @@ -25,10 +25,13 @@ namespace mRemoteNG.UI.Controls.Base _themeManager = ThemeManager.getInstance(); if (!_themeManager.ThemingActive) return; // Use the Dialog_* colors since Labels generally have the same colors as panels/dialogs/windows/etc... - BackColor = _themeManager.ActiveTheme.ExtendedPalette.getColor("Dialog_Background"); - ForeColor = _themeManager.ActiveTheme.ExtendedPalette.getColor("Dialog_Foreground"); - FontOverrider.FontOverride(this); - Invalidate(); + if (_themeManager.ActiveTheme != null) + { + BackColor = _themeManager.ActiveTheme.ExtendedPalette.getColor("Dialog_Background"); + ForeColor = _themeManager.ActiveTheme.ExtendedPalette.getColor("Dialog_Foreground"); + FontOverrider.FontOverride(this); + Invalidate(); + } } diff --git a/mRemoteV1/UI/Controls/Base/NGRadioButton.cs b/mRemoteV1/UI/Controls/Base/NGRadioButton.cs index 6b480f5ea..ab99b3bc2 100644 --- a/mRemoteV1/UI/Controls/Base/NGRadioButton.cs +++ b/mRemoteV1/UI/Controls/Base/NGRadioButton.cs @@ -78,6 +78,8 @@ namespace mRemoteNG.UI.Controls.Base // Init var g = e.Graphics; g.SmoothingMode = SmoothingMode.AntiAlias; + if (_themeManager.ActiveTheme == null) + return; var fore = _themeManager.ActiveTheme.ExtendedPalette.getColor("CheckBox_Text"); var outline = _themeManager.ActiveTheme.ExtendedPalette.getColor("CheckBox_Border"); diff --git a/mRemoteV1/UI/Controls/Base/NGTextBox.cs b/mRemoteV1/UI/Controls/Base/NGTextBox.cs index 0d51c25e3..9f2429073 100644 --- a/mRemoteV1/UI/Controls/Base/NGTextBox.cs +++ b/mRemoteV1/UI/Controls/Base/NGTextBox.cs @@ -20,9 +20,12 @@ namespace mRemoteNG.UI.Controls.Base base.OnCreateControl(); _themeManager = ThemeManager.getInstance(); if (!_themeManager.ThemingActive) return; - ForeColor = _themeManager.ActiveTheme.ExtendedPalette.getColor("TextBox_Foreground"); - BackColor = _themeManager.ActiveTheme.ExtendedPalette.getColor("TextBox_Background"); - Invalidate(); + if (_themeManager.ActiveTheme != null) + { + ForeColor = _themeManager.ActiveTheme.ExtendedPalette.getColor("TextBox_Foreground"); + BackColor = _themeManager.ActiveTheme.ExtendedPalette.getColor("TextBox_Background"); + Invalidate(); + } } diff --git a/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.Designer.cs b/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.Designer.cs index 0d06f197f..237b7cc2f 100644 --- a/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.Designer.cs +++ b/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.Designer.cs @@ -28,8 +28,8 @@ /// private void InitializeComponent() { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CredentialsPage)); this.pnlDefaultCredentials = new System.Windows.Forms.Panel(); + this.chkUseAdmPwd = new mRemoteNG.UI.Controls.Base.NGCheckBox(); this.radCredentialsCustom = new mRemoteNG.UI.Controls.Base.NGRadioButton(); this.lblDefaultCredentials = new mRemoteNG.UI.Controls.Base.NGLabel(); this.radCredentialsNoInfo = new mRemoteNG.UI.Controls.Base.NGRadioButton(); @@ -45,6 +45,7 @@ // // pnlDefaultCredentials // + this.pnlDefaultCredentials.Controls.Add(this.chkUseAdmPwd); this.pnlDefaultCredentials.Controls.Add(this.radCredentialsCustom); this.pnlDefaultCredentials.Controls.Add(this.lblDefaultCredentials); this.pnlDefaultCredentials.Controls.Add(this.radCredentialsNoInfo); @@ -57,18 +58,32 @@ this.pnlDefaultCredentials.Controls.Add(this.lblCredentialsDomain); this.pnlDefaultCredentials.Location = new System.Drawing.Point(3, 3); this.pnlDefaultCredentials.Name = "pnlDefaultCredentials"; - this.pnlDefaultCredentials.Size = new System.Drawing.Size(596, 175); + this.pnlDefaultCredentials.Size = new System.Drawing.Size(596, 210); this.pnlDefaultCredentials.TabIndex = 0; // + // chkUseAdmPwd + // + this.chkUseAdmPwd._mice = mRemoteNG.UI.Controls.Base.NGCheckBox.MouseState.OUT; + this.chkUseAdmPwd.AutoSize = true; + this.chkUseAdmPwd.Enabled = false; + this.chkUseAdmPwd.Location = new System.Drawing.Point(140, 149); + this.chkUseAdmPwd.Name = "chkUseAdmPwd"; + this.chkUseAdmPwd.Size = new System.Drawing.Size(214, 17); + this.chkUseAdmPwd.TabIndex = 10; + this.chkUseAdmPwd.Text = "use AdmPwd.E to retrieve the password"; + this.chkUseAdmPwd.UseVisualStyleBackColor = true; + this.chkUseAdmPwd.CheckedChanged += new System.EventHandler(this.chkUseAdmPwd_CheckedChanged); + // // radCredentialsCustom // this.radCredentialsCustom.AutoSize = true; + this.radCredentialsCustom.BackColor = System.Drawing.Color.Transparent; this.radCredentialsCustom.Location = new System.Drawing.Point(16, 69); this.radCredentialsCustom.Name = "radCredentialsCustom"; this.radCredentialsCustom.Size = new System.Drawing.Size(87, 17); this.radCredentialsCustom.TabIndex = 3; this.radCredentialsCustom.Text = "the following:"; - this.radCredentialsCustom.UseVisualStyleBackColor = true; + this.radCredentialsCustom.UseVisualStyleBackColor = false; this.radCredentialsCustom.CheckedChanged += new System.EventHandler(this.radCredentialsCustom_CheckedChanged); // // lblDefaultCredentials @@ -83,6 +98,7 @@ // radCredentialsNoInfo // this.radCredentialsNoInfo.AutoSize = true; + this.radCredentialsNoInfo.BackColor = System.Drawing.Color.Transparent; this.radCredentialsNoInfo.Checked = true; this.radCredentialsNoInfo.Location = new System.Drawing.Point(16, 31); this.radCredentialsNoInfo.Name = "radCredentialsNoInfo"; @@ -90,23 +106,24 @@ this.radCredentialsNoInfo.TabIndex = 1; this.radCredentialsNoInfo.TabStop = true; this.radCredentialsNoInfo.Text = "no information"; - this.radCredentialsNoInfo.UseVisualStyleBackColor = true; + this.radCredentialsNoInfo.UseVisualStyleBackColor = false; // // radCredentialsWindows // this.radCredentialsWindows.AutoSize = true; + this.radCredentialsWindows.BackColor = System.Drawing.Color.Transparent; this.radCredentialsWindows.Location = new System.Drawing.Point(16, 50); this.radCredentialsWindows.Name = "radCredentialsWindows"; this.radCredentialsWindows.Size = new System.Drawing.Size(227, 17); this.radCredentialsWindows.TabIndex = 2; this.radCredentialsWindows.Text = "my current credentials (windows logon info)"; - this.radCredentialsWindows.UseVisualStyleBackColor = true; + this.radCredentialsWindows.UseVisualStyleBackColor = false; // // txtCredentialsDomain // this.txtCredentialsDomain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCredentialsDomain.Enabled = false; - this.txtCredentialsDomain.Location = new System.Drawing.Point(140, 147); + this.txtCredentialsDomain.Location = new System.Drawing.Point(140, 172); this.txtCredentialsDomain.Name = "txtCredentialsDomain"; this.txtCredentialsDomain.Size = new System.Drawing.Size(150, 20); this.txtCredentialsDomain.TabIndex = 9; @@ -153,7 +170,7 @@ // lblCredentialsDomain // this.lblCredentialsDomain.Enabled = false; - this.lblCredentialsDomain.Location = new System.Drawing.Point(34, 150); + this.lblCredentialsDomain.Location = new System.Drawing.Point(34, 175); this.lblCredentialsDomain.Name = "lblCredentialsDomain"; this.lblCredentialsDomain.Size = new System.Drawing.Size(100, 13); this.lblCredentialsDomain.TabIndex = 8; @@ -166,7 +183,6 @@ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.pnlDefaultCredentials); this.Name = "CredentialsPage"; - this.PageIcon = ((System.Drawing.Icon)(resources.GetObject("$this.PageIcon"))); this.Size = new System.Drawing.Size(610, 489); this.pnlDefaultCredentials.ResumeLayout(false); this.pnlDefaultCredentials.PerformLayout(); @@ -186,5 +202,6 @@ internal Controls.Base.NGLabel lblCredentialsPassword; internal Controls.Base.NGTextBox txtCredentialsUsername; internal Controls.Base.NGLabel lblCredentialsDomain; + private Controls.Base.NGCheckBox chkUseAdmPwd; } } diff --git a/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.cs b/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.cs index 27b5e608a..c999e30d6 100644 --- a/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.cs +++ b/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.cs @@ -27,6 +27,7 @@ namespace mRemoteNG.UI.Forms.OptionsPages lblCredentialsUsername.Text = Language.strLabelUsername; lblCredentialsPassword.Text = Language.strLabelPassword; lblCredentialsDomain.Text = Language.strLabelDomain; + chkUseAdmPwd.Text = Language.strUseAdmPwd; } public override void LoadSettings() @@ -45,6 +46,10 @@ namespace mRemoteNG.UI.Forms.OptionsPages case "custom": radCredentialsCustom.Checked = true; break; + case "admpwd": + radCredentialsCustom.Checked = true; + chkUseAdmPwd.Checked = true; + break; } txtCredentialsUsername.Text = Settings.Default.DefaultUsername; @@ -65,7 +70,10 @@ namespace mRemoteNG.UI.Forms.OptionsPages } else if (radCredentialsCustom.Checked) { - Settings.Default.EmptyCredentials = "custom"; + if (chkUseAdmPwd.Checked) + Settings.Default.EmptyCredentials = "admpwd"; + else + Settings.Default.EmptyCredentials = "custom"; } Settings.Default.DefaultUsername = txtCredentialsUsername.Text; @@ -84,6 +92,13 @@ namespace mRemoteNG.UI.Forms.OptionsPages txtCredentialsUsername.Enabled = radCredentialsCustom.Checked; txtCredentialsPassword.Enabled = radCredentialsCustom.Checked; txtCredentialsDomain.Enabled = radCredentialsCustom.Checked; + chkUseAdmPwd.Enabled = radCredentialsCustom.Checked; + } + + private void chkUseAdmPwd_CheckedChanged(object sender, EventArgs e) + { + lblCredentialsPassword.Enabled = !chkUseAdmPwd.Checked; + txtCredentialsPassword.Enabled = !chkUseAdmPwd.Checked; } } } \ No newline at end of file diff --git a/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.resx b/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.resx index aefcb0857..1af7de150 100644 --- a/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.resx +++ b/mRemoteV1/UI/Forms/OptionsPages/CredentialsPage.resx @@ -117,29 +117,4 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - AAABAAEAEBAAAAAAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAA - AAA+ncp7NpbR5TOQzOsyi8vtO5XCh////wH///8B////Af///wH///8B////Af///wH///8B////Af// - /wH///8BQqzhzcTr9/9/4fb/n+b3/zKKye86kLqR////Af///wH///8B////Af///wH///8B////Af// - /wH///8B////AUSw4//G9Pv/Q9bx/0jb9f+C4fX/MYjI8TmNt5n///8B////Af///wH///8B////Af// - /wH///8B////Af///wFEsOPzu+/6/znR8f8oxe7/Ttz2/4Xi9/8yi8rvOYu1m////wH///8B////Af// - /wH///8B////Af///wH///8BRLDj//D8/v+w7vr/Q9j0/yjI7v9B1/T/ieL3/zKLy+04iLKj////Af// - /wH///8B////Af///wH///8B////AUSw45dEsOP/RLDj/6vq+f9O2PP/K8nv/z3W8/+K4ff/MorK7zOD - uN0pfdb/LIXY/zaOwcv///8B////Af///wH///8B////AUSw4//x/P7/u/H7/3vk9v8o0vD/N9T1/4Pg - 9v8+qeP/oPP8/6n1/P8rgtf/NYu/z////wH///8B////Af///wFEsOOXRLDj/0Wy4/92xer/rO76/znW - 8v9N2/X/ZeT3/zzO8v8yye//he/7/yuB1/81iLvV////Af///wH///8B////Af///wFEsOMDRLDjl2/E - 6v+A5ff/PdHx/13b9f9p3/b/UNfz/zTN7/+F7/v/KX/W/zSGutn///8B////Af///wH///8B////AUSw - 4//V9/z/ief4/37k9/9+5Pf/fuT3/4Ll9/9H1vL/OM7w/671/P8pfNb/////Af///wH///8B////Af// - /wFEsOP/vvL7/37k9/9+5Pf/geX3/5Tp+P+88fv/i9rz/0nd9f/B+P3/MJDa/////wH///8B////Af// - /wH///8BRLDj/974/P+N5/j/fuT3/5Tp+P+86fj/RLDj/0Ks4//u/P7/Mpjd/zmVyL////8B////Af// - /wH///8B////AUSw45dEsOP/zvX8/43n+P+h7Pn/RLDj/0Sw4///////OaHf/zmVyL////8B////Af// - /wH///8B////Af///wH///8BRLDjl0Sw4//O9fz/nuv5/77y+//+////RLDj/0Kr353///8B////Af// - /wH///8B////Af///wH///8B////Af///wFEsOOXRLDj/974/P/e+Pz/RLDj/0Sw45f///8B////Af// - /wH///8B////Af///wH///8B////Af///wH///8B////AUSw45dEsOP/RLDj/0Sw45f///8B////Af// - /wH///8BAAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA - //8AAP//AAD//w== - - \ No newline at end of file diff --git a/mRemoteV1/app.config b/mRemoteV1/app.config index e0a91c64e..6cffb0f61 100644 --- a/mRemoteV1/app.config +++ b/mRemoteV1/app.config @@ -705,12 +705,12 @@ - - 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 - + + https://gcstoragedownload.blob.core.windows.net/download/mRemoteNG/ + + + 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 8e4f03368..6e566182b 100644 --- a/mRemoteV1/mRemoteV1.csproj +++ b/mRemoteV1/mRemoteV1.csproj @@ -47,17 +47,20 @@ true
+ + ..\packages\Greycorbel.AdmPwd-E.PDSWrapper.7.7.2\lib\net45\AdmPwd.PDSWrapper.dll + References\ADTree.dll - - ..\packages\BouncyCastle.1.8.1\lib\BouncyCastle.Crypto.dll + + ..\packages\BouncyCastle.1.8.5\lib\BouncyCastle.Crypto.dll - - ..\packages\Geckofx45.45.0.32\lib\net45\Geckofx-Core.dll + + ..\packages\Geckofx45.45.0.34\lib\net45\Geckofx-Core.dll - - ..\packages\Geckofx45.45.0.32\lib\net45\Geckofx-Winforms.dll + + ..\packages\Geckofx45.45.0.34\lib\net45\Geckofx-Winforms.dll ..\packages\log4net.2.0.8\lib\net45-full\log4net.dll @@ -71,8 +74,8 @@ ..\packages\ObjectListView.Official.2.9.1\lib\net20\ObjectListView.dll - - ..\packages\SSH.NET.2016.0.0\lib\net40\Renci.SshNet.dll + + ..\packages\SSH.NET.2016.1.0\lib\net40\Renci.SshNet.dll @@ -89,20 +92,20 @@ False References\VncSharp.dll - - ..\packages\DockPanelSuite.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.dll + + ..\packages\DockPanelSuite.3.0.6\lib\net40\WeifenLuo.WinFormsUI.Docking.dll - - ..\packages\DockPanelSuite.ThemeVS2003.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2003.dll + + ..\packages\DockPanelSuite.ThemeVS2003.3.0.6\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2003.dll - - ..\packages\DockPanelSuite.ThemeVS2012.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2012.dll + + ..\packages\DockPanelSuite.ThemeVS2012.3.0.6\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2012.dll - - ..\packages\DockPanelSuite.ThemeVS2013.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2013.dll + + ..\packages\DockPanelSuite.ThemeVS2013.3.0.6\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2013.dll - - ..\packages\DockPanelSuite.ThemeVS2015.2.16.1\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2015.dll + + ..\packages\DockPanelSuite.ThemeVS2015.3.0.6\lib\net40\WeifenLuo.WinFormsUI.Docking.ThemeVS2015.dll @@ -969,25 +972,15 @@ Designer - - Designer - Always - - - Designer - - - Designer - - - + + - - - + + + @@ -1000,6 +993,18 @@ + + Designer + Always + + + Designer + + + Designer + + + PreserveNewest @@ -1614,11 +1619,11 @@ powershell.exe -ExecutionPolicy Bypass -File "%25psScriptsDir%25\postbuild_mremo 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 de93aab2e..d18fbfcb4 100644 --- a/mRemoteV1/packages.config +++ b/mRemoteV1/packages.config @@ -1,13 +1,14 @@  - - - - - - - + + + + + + + + - + \ No newline at end of file