diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9e8410be..07988a62 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- #1476: Configurable backups. Can now edit/set backup frequency, backup path, and max number of backup files.
- #1427: Fix RDP local desktop scale not taking effect on remote
- #1332: Added option to hide menu strip container
+- #870: Added option to push inheritance settings to child nodes recursively
- #545: Option to minimize to system tray on closing
- #503: SSH Execute a single command after login
- #420: SSH tunneling implemented
diff --git a/mRemoteNG/Connection/ConnectionInfo.cs b/mRemoteNG/Connection/ConnectionInfo.cs
index fe1de1b7..6afd1a7a 100644
--- a/mRemoteNG/Connection/ConnectionInfo.cs
+++ b/mRemoteNG/Connection/ConnectionInfo.cs
@@ -17,6 +17,7 @@ using mRemoteNG.Container;
using mRemoteNG.Properties;
using mRemoteNG.Tree;
using mRemoteNG.Resources.Language;
+using mRemoteNG.Tree.Root;
namespace mRemoteNG.Connection
@@ -46,10 +47,10 @@ namespace mRemoteNG.Connection
[Browsable(false)] public ContainerInfo Parent { get; internal set; }
[Browsable(false)]
- // ReSharper disable once UnusedAutoPropertyAccessor.Global
public bool IsQuickConnect { get; set; }
- [Browsable(false)] public bool PleaseConnect { get; set; }
+ [Browsable(false)]
+ public bool PleaseConnect { get; set; }
#endregion
@@ -65,7 +66,7 @@ namespace mRemoteNG.Connection
{
SetTreeDisplayDefaults();
SetConnectionDefaults();
- SetProtocolDefaults();
+ SetProtocolDefaults();
SetRemoteDesktopServicesDefaults();
SetRdGatewayDefaults();
SetAppearanceDefaults();
@@ -200,7 +201,10 @@ namespace mRemoteNG.Connection
private bool ShouldThisPropertyBeInherited(string propertyName)
{
- return ParentIsValidInheritanceTarget() && IsInheritanceTurnedOnForThisProperty(propertyName);
+ return
+ Inheritance.InheritanceActive &&
+ ParentIsValidInheritanceTarget() &&
+ IsInheritanceTurnedOnForThisProperty(propertyName);
}
private bool ParentIsValidInheritanceTarget()
@@ -309,10 +313,10 @@ namespace mRemoteNG.Connection
UseCredSsp = Settings.Default.ConDefaultUseCredSsp;
UseVmId = Settings.Default.ConDefaultUseVmId;
UseEnhancedMode = Settings.Default.ConDefaultUseEnhancedMode;
- }
+ }
private void SetRemoteDesktopServicesDefaults()
- {
+ {
StartProgram = string.Empty;
StartProgramWorkDir = string.Empty;
}
diff --git a/mRemoteNG/Connection/ConnectionInfoInheritance.cs b/mRemoteNG/Connection/ConnectionInfoInheritance.cs
index d3e1298b..85bf1f42 100644
--- a/mRemoteNG/Connection/ConnectionInfoInheritance.cs
+++ b/mRemoteNG/Connection/ConnectionInfoInheritance.cs
@@ -3,6 +3,7 @@ using System.ComponentModel;
using System.Linq;
using System.Reflection;
using mRemoteNG.Tools;
+using mRemoteNG.Tree.Root;
using mRemoteNG.Resources.Language;
namespace mRemoteNG.Connection
@@ -455,7 +456,16 @@ namespace mRemoteNG.Connection
TypeConverter(typeof(MiscTools.YesNoTypeConverter))]public bool VNCViewOnly {get; set;}
#endregion
- [Browsable(false)] public ConnectionInfo Parent { get; private set; }
+ [Browsable(false)]
+ public ConnectionInfo Parent { get; private set; }
+
+ ///
+ /// Indicates whether this inheritance object is enabled.
+ /// When false, users of this object should not respect inheritance
+ /// settings for individual properties.
+ ///
+ [Browsable(false)]
+ public bool InheritanceActive => !(Parent is RootNodeInfo || Parent?.Parent is RootNodeInfo);
#endregion
@@ -472,7 +482,6 @@ namespace mRemoteNG.Connection
{
var newInheritance = (ConnectionInfoInheritance)MemberwiseClone();
newInheritance.Parent = parent;
- newInheritance._tempInheritanceStorage = null;
return newInheritance;
}
@@ -530,15 +539,22 @@ namespace mRemoteNG.Connection
///
public IEnumerable GetEnabledInheritanceProperties()
{
- return GetProperties()
- .Where(property => (bool)property.GetValue(this))
- .Select(property => property.Name)
- .ToList();
+ return InheritanceActive
+ ? GetProperties()
+ .Where(property => (bool)property.GetValue(this))
+ .Select(property => property.Name)
+ .ToList()
+ : Enumerable.Empty();
}
private bool FilterProperty(PropertyInfo propertyInfo)
{
- var exclusions = new[] {"EverythingInherited", "Parent"};
+ var exclusions = new[]
+ {
+ nameof(EverythingInherited),
+ nameof(Parent),
+ nameof(InheritanceActive)
+ };
var valueShouldNotBeFiltered = !exclusions.Contains(propertyInfo.Name);
return valueShouldNotBeFiltered;
}
diff --git a/mRemoteNG/Container/ContainerInfo.cs b/mRemoteNG/Container/ContainerInfo.cs
index b5b36127..597a91e2 100644
--- a/mRemoteNG/Container/ContainerInfo.cs
+++ b/mRemoteNG/Container/ContainerInfo.cs
@@ -263,6 +263,34 @@ namespace mRemoteNG.Container
return childList;
}
+ ///
+ /// Pushes the connection properties of this container to all
+ /// children recursively.
+ ///
+ public void ApplyConnectionPropertiesToChildren()
+ {
+ var children = GetRecursiveChildList();
+
+ foreach (var child in children)
+ {
+ child.CopyFrom(this);
+ }
+ }
+
+ ///
+ /// Pushes the inheritance settings of this container to all
+ /// children recursively.
+ ///
+ public void ApplyInheritancePropertiesToChildren()
+ {
+ var children = GetRecursiveChildList();
+
+ foreach (var child in children)
+ {
+ child.Inheritance = Inheritance.Clone(child);
+ }
+ }
+
private IEnumerable GetRecursiveFavoritChildList(ContainerInfo container)
{
var childList = new List();
diff --git a/mRemoteNG/Language/Language.Designer.cs b/mRemoteNG/Language/Language.Designer.cs
index f9c2418a..855cc2a0 100644
--- a/mRemoteNG/Language/Language.Designer.cs
+++ b/mRemoteNG/Language/Language.Designer.cs
@@ -1,6319 +1,6337 @@
-//------------------------------------------------------------------------------
-//
-// 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.Resources.Language {
- 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", "17.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.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 &Browse....
- ///
- internal static string _Browse {
- get {
- return ResourceManager.GetString("_Browse", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Cancel.
- ///
- internal static string _Cancel {
- get {
- return ResourceManager.GetString("_Cancel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Close.
- ///
- internal static string _Close {
- get {
- return ResourceManager.GetString("_Close", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Warn me when closing connections.
- ///
- internal static string _CloseWarnAll {
- get {
- return ResourceManager.GetString("_CloseWarnAll", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Delete.
- ///
- internal static string _Delete {
- get {
- return ResourceManager.GetString("_Delete", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Export to File....
- ///
- internal static string _ExportToFile {
- get {
- return ResourceManager.GetString("_ExportToFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &File.
- ///
- internal static string _File {
- get {
- return ResourceManager.GetString("_File", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Help.
- ///
- internal static string _Help {
- get {
- return ResourceManager.GetString("_Help", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Import.
- ///
- internal static string _Import {
- get {
- return ResourceManager.GetString("_Import", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Launch.
- ///
- internal static string _Launch {
- get {
- return ResourceManager.GetString("_Launch", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &New.
- ///
- internal static string _New {
- get {
- return ResourceManager.GetString("_New", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &OK.
- ///
- internal static string _Ok {
- get {
- return ResourceManager.GetString("_Ok", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Scan.
- ///
- internal static string _Scan {
- get {
- return ResourceManager.GetString("_Scan", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Stop.
- ///
- internal static string _Stop {
- get {
- return ResourceManager.GetString("_Stop", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Tools.
- ///
- internal static string _Tools {
- get {
- return ResourceManager.GetString("_Tools", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Try again.
- ///
- internal static string _TryAgain {
- get {
- return ResourceManager.GetString("_TryAgain", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &View.
- ///
- internal static string _View {
- get {
- return ResourceManager.GetString("_View", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to About.
- ///
- internal static string About {
- get {
- return ResourceManager.GetString("About", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Active Directory.
- ///
- internal static string ActiveDirectory {
- get {
- return ResourceManager.GetString("ActiveDirectory", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Add.
- ///
- internal static string Add {
- get {
- return ResourceManager.GetString("Add", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Add Connection Panel.
- ///
- internal static string AddConnectionPanel {
- get {
- return ResourceManager.GetString("AddConnectionPanel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to AddNodeFromXML failed!.
- ///
- internal static string AddNodeFromXmlFailed {
- get {
- return ResourceManager.GetString("AddNodeFromXmlFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Address:.
- ///
- internal static string Address {
- get {
- return ResourceManager.GetString("Address", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Advanced.
- ///
- internal static string Advanced {
- get {
- return ResourceManager.GetString("Advanced", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Advanced security options.
- ///
- internal static string AdvancedSecurityOptions {
- get {
- return ResourceManager.GetString("AdvancedSecurityOptions", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to All.
- ///
- internal static string All {
- get {
- return ResourceManager.GetString("All", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Allow only a single instance of the application (mRemoteNG restart required).
- ///
- internal static string AllowOnlySingleInstance {
- get {
- return ResourceManager.GetString("AllowOnlySingleInstance", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Always.
- ///
- internal static string Always {
- get {
- return ResourceManager.GetString("Always", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Always connect, even if authentication fails.
- ///
- internal static string AlwaysConnectEvenIfAuthFails {
- get {
- return ResourceManager.GetString("AlwaysConnectEvenIfAuthFails", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Always show connection tabs.
- ///
- internal static string AlwaysShowConnectionTabs {
- get {
- return ResourceManager.GetString("AlwaysShowConnectionTabs", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Always show panel selection dialog when opening connections.
- ///
- internal static string AlwaysShowPanelSelection {
- get {
- return ResourceManager.GetString("AlwaysShowPanelSelection", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Always show panel tabs.
- ///
- internal static string AlwaysShowPanelTabs {
- get {
- return ResourceManager.GetString("AlwaysShowPanelTabs", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Always show notification area icon.
- ///
- internal static string AlwaysShowSysTrayIcon {
- get {
- return ResourceManager.GetString("AlwaysShowSysTrayIcon", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Appearance.
- ///
- internal static string Appearance {
- get {
- return ResourceManager.GetString("Appearance", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Apply.
- ///
- internal static string Apply {
- get {
- return ResourceManager.GetString("Apply", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Arguments.
- ///
- internal static string Arguments {
- get {
- return ResourceManager.GetString("Arguments", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Ask me again later.
- ///
- internal static string AskUpdatesCommandAskLater {
- get {
- return ResourceManager.GetString("AskUpdatesCommandAskLater", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Customize the settings now.
- ///
- internal static string AskUpdatesCommandCustom {
- get {
- return ResourceManager.GetString("AskUpdatesCommandCustom", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use the recommended settings.
- ///
- internal static string AskUpdatesCommandRecommended {
- get {
- return ResourceManager.GetString("AskUpdatesCommandRecommended", 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 AskUpdatesContent {
- get {
- return ResourceManager.GetString("AskUpdatesContent", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Automatic update settings.
- ///
- internal static string AskUpdatesMainInstruction {
- get {
- return ResourceManager.GetString("AskUpdatesMainInstruction", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Aspect.
- ///
- internal static string Aspect {
- get {
- return ResourceManager.GetString("Aspect", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Assigned Credential.
- ///
- internal static string AssignedCredential {
- get {
- return ResourceManager.GetString("AssignedCredential", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Audio Capture.
- ///
- internal static string AudioCapture {
- get {
- return ResourceManager.GetString("AudioCapture", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Server Authentication.
- ///
- internal static string AuthenticationLevel {
- get {
- return ResourceManager.GetString("AuthenticationLevel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Authentication mode.
- ///
- internal static string AuthenticationMode {
- get {
- return ResourceManager.GetString("AuthenticationMode", resourceCulture);
- }
- }
-
- ///
- /// 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 Automatic resize.
- ///
- internal static string AutomaticResize {
- get {
- return ResourceManager.GetString("AutomaticResize", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Auto save time in minutes (0 means disabled):.
- ///
- internal static string AutoSaveEvery {
- get {
- return ResourceManager.GetString("AutoSaveEvery", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Latest version.
- ///
- internal static string AvailableVersion {
- get {
- return ResourceManager.GetString("AvailableVersion", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Default Inheritance.
- ///
- internal static string ButtonDefaultInheritance {
- get {
- return ResourceManager.GetString("ButtonDefaultInheritance", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Default Properties.
- ///
- internal static string ButtonDefaultProperties {
- get {
- return ResourceManager.GetString("ButtonDefaultProperties", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Launch PuTTY.
- ///
- internal static string ButtonLaunchPutty {
- get {
- return ResourceManager.GetString("ButtonLaunchPutty", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Cache Bitmaps.
- ///
- internal static string CacheBitmaps {
- get {
- return ResourceManager.GetString("CacheBitmaps", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Cannot start Port Scan, incorrect IP format!.
- ///
- internal static string CannotStartPortScan {
- get {
- return ResourceManager.GetString("CannotStartPortScan", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Change.
- ///
- internal static string Change {
- get {
- return ResourceManager.GetString("Change", 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 Changelog.
- ///
- internal static string Changelog {
- get {
- return ResourceManager.GetString("Changelog", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Check Again.
- ///
- internal static string CheckAgain {
- get {
- return ResourceManager.GetString("CheckAgain", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Automatically try to reconnect when disconnected from server (RDP && ICA only).
- ///
- internal static string CheckboxAutomaticReconnect {
- get {
- return ResourceManager.GetString("CheckboxAutomaticReconnect", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Do not show this message again..
- ///
- internal static string CheckboxDoNotShowThisMessageAgain {
- get {
- return ResourceManager.GetString("CheckboxDoNotShowThisMessageAgain", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to This proxy server requires authentication.
- ///
- internal static string CheckboxProxyAuthentication {
- get {
- return ResourceManager.GetString("CheckboxProxyAuthentication", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use custom PuTTY path:.
- ///
- internal static string CheckboxPuttyPath {
- get {
- return ResourceManager.GetString("CheckboxPuttyPath", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Reconnect when ready.
- ///
- internal static string CheckboxReconnectWhenReady {
- get {
- return ResourceManager.GetString("CheckboxReconnectWhenReady", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use a proxy server to connect.
- ///
- internal static string CheckboxUpdateUseProxy {
- get {
- return ResourceManager.GetString("CheckboxUpdateUseProxy", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Check failed!.
- ///
- internal static string CheckFailed {
- get {
- return ResourceManager.GetString("CheckFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Check for Updates.
- ///
- internal static string CheckForUpdates {
- get {
- return ResourceManager.GetString("CheckForUpdates", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Check for updates at startup.
- ///
- internal static string CheckForUpdatesOnStartup {
- get {
- return ResourceManager.GetString("CheckForUpdatesOnStartup", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Check now.
- ///
- internal static string CheckNow {
- get {
- return ResourceManager.GetString("CheckNow", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Check proper installation of components at startup.
- ///
- internal static string CheckProperInstallationOfComponentsAtStartup {
- get {
- return ResourceManager.GetString("CheckProperInstallationOfComponentsAtStartup", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Choose a path for the mRemoteNG log file.
- ///
- internal static string ChooseLogPath {
- get {
- return ResourceManager.GetString("ChooseLogPath", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Choose panel before connecting.
- ///
- internal static string ChoosePanelBeforeConnecting {
- get {
- return ResourceManager.GetString("ChoosePanelBeforeConnecting", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Choose path.
- ///
- internal static string ChoosePath {
- get {
- return ResourceManager.GetString("ChoosePath", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Clear search string.
- ///
- internal static string ClearSearchString {
- get {
- return ResourceManager.GetString("ClearSearchString", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Clipboard.
- ///
- internal static string Clipboard {
- get {
- return ResourceManager.GetString("Clipboard", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Closed Ports.
- ///
- internal static string ClosedPorts {
- get {
- return ResourceManager.GetString("ClosedPorts", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Close to notification area.
- ///
- internal static string CloseToSysTray {
- get {
- return ResourceManager.GetString("CloseToSysTray", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to When closing connections:.
- ///
- internal static string ClosingConnections {
- get {
- return ResourceManager.GetString("ClosingConnections", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Collapse all folders.
- ///
- internal static string CollapseAllFolders {
- get {
- return ResourceManager.GetString("CollapseAllFolders", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Colours.
- ///
- internal static string Colors {
- get {
- return ResourceManager.GetString("Colors", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to E&xit {0}.
- ///
- internal static string CommandExitProgram {
- get {
- return ResourceManager.GetString("CommandExitProgram", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Couldn't parse command line args!.
- ///
- internal static string CommandLineArgsCouldNotBeParsed {
- get {
- return ResourceManager.GetString("CommandLineArgsCouldNotBeParsed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Open a connection file.
- ///
- internal static string CommandOpenConnectionFile {
- get {
- return ResourceManager.GetString("CommandOpenConnectionFile", 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 CompatibilityLenovoAutoScrollUtilityDetected {
- get {
- return ResourceManager.GetString("CompatibilityLenovoAutoScrollUtilityDetected", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Compatibility problem detected.
- ///
- internal static string CompatibilityProblemDetected {
- get {
- return ResourceManager.GetString("CompatibilityProblemDetected", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Compression.
- ///
- internal static string Compression {
- get {
- return ResourceManager.GetString("Compression", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Config.
- ///
- internal static string Config {
- get {
- return ResourceManager.GetString("Config", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to btnIcon_Click failed!.
- ///
- internal static string ConfigPropertyGridButtonIconClickFailed {
- get {
- return ResourceManager.GetString("ConfigPropertyGridButtonIconClickFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to ShowHideGridItems failed!.
- ///
- internal static string ConfigPropertyGridHideItemsFailed {
- get {
- return ResourceManager.GetString("ConfigPropertyGridHideItemsFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to IconMenu_Click failed!.
- ///
- internal static string ConfigPropertyGridMenuClickFailed {
- get {
- return ResourceManager.GetString("ConfigPropertyGridMenuClickFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Property Grid object failed!.
- ///
- internal static string ConfigPropertyGridObjectFailed {
- get {
- return ResourceManager.GetString("ConfigPropertyGridObjectFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SetHostStatus failed!.
- ///
- internal static string ConfigPropertyGridSetHostStatusFailed {
- get {
- return ResourceManager.GetString("ConfigPropertyGridSetHostStatusFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to pGrid_PopertyValueChanged failed!.
- ///
- internal static string ConfigPropertyGridValueFailed {
- get {
- return ResourceManager.GetString("ConfigPropertyGridValueFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Config UI load failed!.
- ///
- internal static string ConfigUiLoadFailed {
- get {
- return ResourceManager.GetString("ConfigUiLoadFailed", 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 Are you sure you want to close all connections except for "{0}"?.
- ///
- internal static string ConfirmCloseConnectionOthersInstruction {
- get {
- return ResourceManager.GetString("ConfirmCloseConnectionOthersInstruction", 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 ConfirmCloseConnectionPanelMainInstruction {
- get {
- return ResourceManager.GetString("ConfirmCloseConnectionPanelMainInstruction", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Are you sure you want to delete the credential record, {0}?.
- ///
- internal static string ConfirmDeleteCredentialRecord {
- get {
- return ResourceManager.GetString("ConfirmDeleteCredentialRecord", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Are you sure you want to delete the external tool, "{0}"?.
- ///
- internal static string ConfirmDeleteExternalTool {
- get {
- return ResourceManager.GetString("ConfirmDeleteExternalTool", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Are you sure you want to delete the {0} selected external tools?.
- ///
- internal static string ConfirmDeleteExternalToolMultiple {
- get {
- return ResourceManager.GetString("ConfirmDeleteExternalToolMultiple", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Are you sure you want to delete the connection, "{0}"?.
- ///
- internal static string ConfirmDeleteNodeConnection {
- get {
- return ResourceManager.GetString("ConfirmDeleteNodeConnection", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Are you sure you want to delete the empty folder, "{0}"?.
- ///
- internal static string ConfirmDeleteNodeFolder {
- get {
- return ResourceManager.GetString("ConfirmDeleteNodeFolder", 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 ConfirmDeleteNodeFolderNotEmpty {
- get {
- return ResourceManager.GetString("ConfirmDeleteNodeFolderNotEmpty", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Do you want to close all open connections?.
- ///
- internal static string ConfirmExitMainInstruction {
- get {
- return ResourceManager.GetString("ConfirmExitMainInstruction", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Are you sure you want to reset the panels to their default layout?.
- ///
- internal static string ConfirmResetLayout {
- get {
- return ResourceManager.GetString("ConfirmResetLayout", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connect.
- ///
- internal static string Connect {
- get {
- return ResourceManager.GetString("Connect", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connect in fullscreen mode.
- ///
- internal static string ConnectInFullscreen {
- get {
- return ResourceManager.GetString("ConnectInFullscreen", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connecting....
- ///
- internal static string Connecting {
- get {
- return ResourceManager.GetString("Connecting", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connect in View Only mode.
- ///
- internal static string ConnectInViewOnlyMode {
- get {
- return ResourceManager.GetString("ConnectInViewOnlyMode", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connection.
- ///
- internal static string Connection {
- get {
- return ResourceManager.GetString("Connection", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Protocol Event Connected.
- ///
- internal static string ConnectionEventConnected {
- get {
- return ResourceManager.GetString("ConnectionEventConnected", 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 ConnectionEventConnectedDetail {
- get {
- return ResourceManager.GetString("ConnectionEventConnectedDetail", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to A connection protocol error occurred. Host: "{1}"; Error code: "{2}"; Error Description: "{0}".
- ///
- internal static string ConnectionEventErrorOccured {
- get {
- return ResourceManager.GetString("ConnectionEventErrorOccured", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connection failed!.
- ///
- internal static string ConnectionFailed {
- get {
- return ResourceManager.GetString("ConnectionFailed", 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 Opening connection failed!.
- ///
- internal static string ConnectionOpenFailed {
- get {
- return ResourceManager.GetString("ConnectionOpenFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Cannot open connection: No hostname specified!.
- ///
- internal static string ConnectionOpenFailedNoHostname {
- get {
- return ResourceManager.GetString("ConnectionOpenFailedNoHostname", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connection Panels.
- ///
- internal static string ConnectionPanels {
- get {
- return ResourceManager.GetString("ConnectionPanels", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connections.
- ///
- internal static string Connections {
- get {
- return ResourceManager.GetString("Connections", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Daily.
- ///
- internal static string ConnectionsBackupFrequencyDaily {
- get {
- return ResourceManager.GetString("ConnectionsBackupFrequencyDaily", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Never backup connections.
- ///
- internal static string ConnectionsBackupFrequencyNever {
- get {
- return ResourceManager.GetString("ConnectionsBackupFrequencyNever", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to On Edit.
- ///
- internal static string ConnectionsBackupFrequencyOnEdit {
- get {
- return ResourceManager.GetString("ConnectionsBackupFrequencyOnEdit", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to On Exit.
- ///
- internal static string ConnectionsBackupFrequencyOnExit {
- get {
- return ResourceManager.GetString("ConnectionsBackupFrequencyOnExit", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Weekly.
- ///
- internal static string ConnectionsBackupFrequencyWeekly {
- get {
- return ResourceManager.GetString("ConnectionsBackupFrequencyWeekly", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Couldn't set default port!.
- ///
- internal static string ConnectionSetDefaultPortFailed {
- get {
- return ResourceManager.GetString("ConnectionSetDefaultPortFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Couldn't create backup of connections file!.
- ///
- internal static string ConnectionsFileBackupFailed {
- get {
- return ResourceManager.GetString("ConnectionsFileBackupFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connections file "{0}" could not be loaded!.
- ///
- internal static string ConnectionsFileCouldNotBeLoaded {
- get {
- return ResourceManager.GetString("ConnectionsFileCouldNotBeLoaded", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connections file "{0}" could not be loaded!
- ///Starting with new connections file..
- ///
- internal static string ConnectionsFileCouldNotBeLoadedNew {
- get {
- return ResourceManager.GetString("ConnectionsFileCouldNotBeLoadedNew", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Couldn't save connections file as "{0}"!.
- ///
- internal static string ConnectionsFileCouldNotSaveAs {
- get {
- return ResourceManager.GetString("ConnectionsFileCouldNotSaveAs", 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 Connect without credentials.
- ///
- internal static string ConnectNoCredentials {
- get {
- return ResourceManager.GetString("ConnectNoCredentials", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connect to console session.
- ///
- internal static string ConnectToConsoleSession {
- get {
- return ResourceManager.GetString("ConnectToConsoleSession", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connect (with options).
- ///
- internal static string ConnectWithOptions {
- get {
- return ResourceManager.GetString("ConnectWithOptions", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connection to {0} via {1} closed by user {2}..
- ///
- internal static string ConnenctionClosedByUser {
- get {
- return ResourceManager.GetString("ConnenctionClosedByUser", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connection Event Closed.
- ///
- internal static string ConnenctionCloseEvent {
- get {
- return ResourceManager.GetString("ConnenctionCloseEvent", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connection Event Closed failed!.
- ///
- internal static string ConnenctionCloseEventFailed {
- get {
- return ResourceManager.GetString("ConnenctionCloseEventFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Copy.
- ///
- internal static string Copy {
- get {
- return ResourceManager.GetString("Copy", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Copy All.
- ///
- internal static string CopyAll {
- get {
- return ResourceManager.GetString("CopyAll", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Copy Hostname.
- ///
- internal static string CopyHostname {
- get {
- return ResourceManager.GetString("CopyHostname", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Couldn't create new connections file!.
- ///
- internal static string CouldNotCreateNewConnectionsFile {
- get {
- return ResourceManager.GetString("CouldNotCreateNewConnectionsFile", 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 Could not find ToolStrip control in FilteredPropertyGrid..
- ///
- internal static string CouldNotFindToolStripInFilteredPropertyGrid {
- get {
- return ResourceManager.GetString("CouldNotFindToolStripInFilteredPropertyGrid", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Create an empty panel when mRemoteNG starts.
- ///
- internal static string CreateEmptyPanelOnStartUp {
- get {
- return ResourceManager.GetString("CreateEmptyPanelOnStartUp", 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 Credits.
- ///
- internal static string Credits {
- get {
- return ResourceManager.GetString("Credits", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Ctrl-Alt-Del.
- ///
- internal static string CtrlAltDel {
- get {
- return ResourceManager.GetString("CtrlAltDel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Ctrl-Esc.
- ///
- internal static string CtrlEsc {
- get {
- return ResourceManager.GetString("CtrlEsc", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Daily.
- ///
- internal static string Daily {
- get {
- return ResourceManager.GetString("Daily", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Database:.
- ///
- internal static string Database {
- get {
- return ResourceManager.GetString("Database", 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 Debug.
- ///
- internal static string Debug {
- get {
- return ResourceManager.GetString("Debug", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Delete.
- ///
- internal static string Delete {
- get {
- return ResourceManager.GetString("Delete", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Delete All.
- ///
- internal static string DeleteAll {
- get {
- return ResourceManager.GetString("DeleteAll", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Delete External Tool....
- ///
- internal static string DeleteExternalTool {
- get {
- return ResourceManager.GetString("DeleteExternalTool", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Description.
- ///
- internal static string Description {
- get {
- return ResourceManager.GetString("Description", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Detect.
- ///
- internal static string Detect {
- get {
- return ResourceManager.GetString("Detect", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Disable Cursor blinking.
- ///
- internal static string DisableCursorBlinking {
- get {
- return ResourceManager.GetString("DisableCursorBlinking", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Disable Cursor Shadow.
- ///
- internal static string DisableCursorShadow {
- get {
- return ResourceManager.GetString("DisableCursorShadow", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Disable Full Window drag.
- ///
- internal static string DisableFullWindowDrag {
- get {
- return ResourceManager.GetString("DisableFullWindowDrag", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Disable Menu Animations.
- ///
- internal static string DisableMenuAnimations {
- get {
- return ResourceManager.GetString("DisableMenuAnimations", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Disconnect.
- ///
- internal static string Disconnect {
- get {
- return ResourceManager.GetString("Disconnect", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Disconnect All But This.
- ///
- internal static string DisconnectOthers {
- get {
- return ResourceManager.GetString("DisconnectOthers", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Disconnect Tabs To The Right.
- ///
- internal static string DisconnectOthersRight {
- get {
- return ResourceManager.GetString("DisconnectOthersRight", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Disk Drives.
- ///
- internal static string DiskDrives {
- get {
- return ResourceManager.GetString("DiskDrives", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Display.
- ///
- internal static string Display {
- get {
- return ResourceManager.GetString("Display", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Display Name.
- ///
- internal static string DisplayName {
- get {
- return ResourceManager.GetString("DisplayName", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Display Themes.
- ///
- internal static string DisplayThemes {
- get {
- return ResourceManager.GetString("DisplayThemes", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Display Wallpaper.
- ///
- internal static string DisplayWallpaper {
- get {
- return ResourceManager.GetString("DisplayWallpaper", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Domain.
- ///
- internal static string Domain {
- get {
- return ResourceManager.GetString("Domain", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Donate.
- ///
- internal static string Donate {
- get {
- return ResourceManager.GetString("Donate", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Do not play.
- ///
- internal static string DoNotPlay {
- get {
- return ResourceManager.GetString("DoNotPlay", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Do not trim spaces from usernames.
- ///
- internal static string DoNotTrimUsername {
- get {
- return ResourceManager.GetString("DoNotTrimUsername", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Don't connect to console session.
- ///
- internal static string DontConnectToConsoleSession {
- get {
- return ResourceManager.GetString("DontConnectToConsoleSession", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Don't connect if authentication fails.
- ///
- internal static string DontConnectWhenAuthFails {
- get {
- return ResourceManager.GetString("DontConnectWhenAuthFails", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Double click on tab closes it.
- ///
- internal static string DoubleClickTabClosesIt {
- get {
- return ResourceManager.GetString("DoubleClickTabClosesIt", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Download.
- ///
- internal static string Download {
- get {
- return ResourceManager.GetString("Download", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Download and Install.
- ///
- internal static string DownloadAndInstall {
- get {
- return ResourceManager.GetString("DownloadAndInstall", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Duplicate.
- ///
- internal static string Duplicate {
- get {
- return ResourceManager.GetString("Duplicate", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Duplicate Tab.
- ///
- internal static string DuplicateTab {
- get {
- return ResourceManager.GetString("DuplicateTab", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Dynamic.
- ///
- internal static string Dynamic {
- get {
- return ResourceManager.GetString("Dynamic", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Do you want to continue with no password?.
- ///
- internal static string EmptyPasswordContinue {
- get {
- return ResourceManager.GetString("EmptyPasswordContinue", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to For empty Username, Password or Domain fields use:.
- ///
- internal static string EmptyUsernamePasswordDomainFields {
- get {
- return ResourceManager.GetString("EmptyUsernamePasswordDomainFields", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Desktop Composition.
- ///
- internal static string EnableDesktopComposition {
- get {
- return ResourceManager.GetString("EnableDesktopComposition", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Encoding.
- ///
- internal static string Encoding {
- get {
- return ResourceManager.GetString("Encoding", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Completely encrypt connection file.
- ///
- internal static string EncryptCompleteConnectionFile {
- get {
- return ResourceManager.GetString("EncryptCompleteConnectionFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Block Cipher Mode.
- ///
- internal static string EncryptionBlockCipherMode {
- get {
- return ResourceManager.GetString("EncryptionBlockCipherMode", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Encryption Engine.
- ///
- internal static string EncryptionEngine {
- get {
- return ResourceManager.GetString("EncryptionEngine", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Key Derivation Function Iterations.
- ///
- internal static string EncryptionKeyDerivationIterations {
- get {
- return ResourceManager.GetString("EncryptionKeyDerivationIterations", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Encryption Test.
- ///
- internal static string EncryptionTest {
- get {
- return ResourceManager.GetString("EncryptionTest", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Encrypting {0} entries using {1}/{2} and {3} iterations took {4} seconds..
- ///
- internal static string EncryptionTestResultMessage {
- get {
- return ResourceManager.GetString("EncryptionTestResultMessage", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Environment.
- ///
- internal static string Environment {
- get {
- return ResourceManager.GetString("Environment", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to AddExternalToolsToToolBar (frmMain) failed. {0}.
- ///
- internal static string ErrorAddExternalToolsToToolBarFailed {
- get {
- return ResourceManager.GetString("ErrorAddExternalToolsToToolBarFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to AddFolder (UI.Window.ConnectionTreeWindow) failed. {0}.
- ///
- internal static string ErrorAddFolderFailed {
- get {
- return ResourceManager.GetString("ErrorAddFolderFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to The database version {0} is not compatible with this version of {1}..
- ///
- internal static string ErrorBadDatabaseVersion {
- get {
- return ResourceManager.GetString("ErrorBadDatabaseVersion", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to The connection list could not be saved..
- ///
- internal static string ErrorConnectionListSaveFailed {
- get {
- return ResourceManager.GetString("ErrorConnectionListSaveFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to PuTTY could not be launched..
- ///
- internal static string ErrorCouldNotLaunchPutty {
- get {
- return ResourceManager.GetString("ErrorCouldNotLaunchPutty", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Decryption failed. {0}.
- ///
- internal static string ErrorDecryptionFailed {
- get {
- return ResourceManager.GetString("ErrorDecryptionFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Encryption failed. {0}.
- ///
- internal static string ErrorEncryptionFailed {
- get {
- return ResourceManager.GetString("ErrorEncryptionFailed", 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 ErrorFipsPolicyIncompatible {
- get {
- return ResourceManager.GetString("ErrorFipsPolicyIncompatible", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Errors.
- ///
- internal static string Errors {
- get {
- return ResourceManager.GetString("Errors", 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 ErrorStartupConnectionFileLoad {
- get {
- return ResourceManager.GetString("ErrorStartupConnectionFileLoad", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to VerifyDatabaseVersion (Config.Connections.Save) failed. {0}.
- ///
- internal static string ErrorVerifyDatabaseVersionFailed {
- get {
- return ResourceManager.GetString("ErrorVerifyDatabaseVersionFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to This exception will force mRemoteNG to close.
- ///
- internal static string ExceptionForcesmRemoteNGToClose {
- get {
- return ResourceManager.GetString("ExceptionForcesmRemoteNGToClose", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Exception Message.
- ///
- internal static string ExceptionMessage {
- get {
- return ResourceManager.GetString("ExceptionMessage", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Exit.
- ///
- internal static string Exit {
- get {
- return ResourceManager.GetString("Exit", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Expand all folders.
- ///
- internal static string ExpandAllFolders {
- get {
- return ResourceManager.GetString("ExpandAllFolders", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Experimental.
- ///
- internal static string Experimental {
- get {
- return ResourceManager.GetString("Experimental", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Export.
- ///
- internal static string Export {
- get {
- return ResourceManager.GetString("Export", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Export everything.
- ///
- internal static string ExportEverything {
- get {
- return ResourceManager.GetString("ExportEverything", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Export File.
- ///
- internal static string ExportFile {
- get {
- return ResourceManager.GetString("ExportFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Export Items.
- ///
- internal static string ExportItems {
- get {
- return ResourceManager.GetString("ExportItems", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Export Properties.
- ///
- internal static string ExportProperties {
- get {
- return ResourceManager.GetString("ExportProperties", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Export the currently selected connection.
- ///
- internal static string ExportSelectedConnection {
- get {
- return ResourceManager.GetString("ExportSelectedConnection", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Export the currently selected folder.
- ///
- internal static string ExportSelectedFolder {
- get {
- return ResourceManager.GetString("ExportSelectedFolder", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to External Tool.
- ///
- internal static string ExternalTool {
- get {
- return ResourceManager.GetString("ExternalTool", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to External Tool After.
- ///
- internal static string ExternalToolAfter {
- get {
- return ResourceManager.GetString("ExternalToolAfter", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to External Tool Before.
- ///
- internal static string ExternalToolBefore {
- get {
- return ResourceManager.GetString("ExternalToolBefore", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to New External Tool.
- ///
- internal static string ExternalToolDefaultName {
- get {
- return ResourceManager.GetString("ExternalToolDefaultName", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to External Tool Properties.
- ///
- internal static string ExternalToolProperties {
- get {
- return ResourceManager.GetString("ExternalToolProperties", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to External Tools Toolbar.
- ///
- internal static string ExternalToolsToolbar {
- get {
- return ResourceManager.GetString("ExternalToolsToolbar", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Favorite.
- ///
- internal static string Favorite {
- get {
- return ResourceManager.GetString("Favorite", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Favorites.
- ///
- internal static string Favorites {
- get {
- return ResourceManager.GetString("Favorites", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to File &Format:.
- ///
- internal static string FileFormat {
- get {
- return ResourceManager.GetString("FileFormat", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Filename.
- ///
- internal static string Filename {
- get {
- return ResourceManager.GetString("Filename", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Files.
- ///
- internal static string Files {
- get {
- return ResourceManager.GetString("Files", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to All Files (*.*).
- ///
- internal static string FilterAll {
- get {
- return ResourceManager.GetString("FilterAll", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to All importable files.
- ///
- internal static string FilterAllImportable {
- get {
- return ResourceManager.GetString("FilterAllImportable", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Application Files (*.exe).
- ///
- internal static string FilterApplication {
- get {
- return ResourceManager.GetString("FilterApplication", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to mRemote CSV Files (*.csv).
- ///
- internal static string FiltermRemoteCSV {
- get {
- return ResourceManager.GetString("FiltermRemoteCSV", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to mRemote XML Files (*.xml).
- ///
- internal static string FiltermRemoteXML {
- get {
- return ResourceManager.GetString("FiltermRemoteXML", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to PuTTY Connection Manager files.
- ///
- internal static string FilterPuttyConnectionManager {
- get {
- return ResourceManager.GetString("FilterPuttyConnectionManager", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Remote Desktop Connection Manager files (*.rdg).
- ///
- internal static string FilterRdgFiles {
- get {
- return ResourceManager.GetString("FilterRdgFiles", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP Files (*.rdp).
- ///
- internal static string FilterRDP {
- get {
- return ResourceManager.GetString("FilterRDP", 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 First IP.
- ///
- internal static string FirstIp {
- get {
- return ResourceManager.GetString("FirstIp", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to First Port.
- ///
- internal static string FirstPort {
- get {
- return ResourceManager.GetString("FirstPort", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Fit To Panel.
- ///
- internal static string FitToPanel {
- get {
- return ResourceManager.GetString("FitToPanel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Font Smoothing.
- ///
- internal static string FontSmoothing {
- get {
- return ResourceManager.GetString("FontSmoothing", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Inherit {0}.
- ///
- internal static string FormatInherit {
- get {
- return ResourceManager.GetString("FormatInherit", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Description of inherited property: {0}.
- ///
- internal static string FormatInheritDescription {
- get {
- return ResourceManager.GetString("FormatInheritDescription", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Free.
- ///
- internal static string Free {
- get {
- return ResourceManager.GetString("Free", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Fullscreen.
- ///
- internal static string Fullscreen {
- get {
- return ResourceManager.GetString("Fullscreen", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Gateway.
- ///
- internal static string Gateway {
- get {
- return ResourceManager.GetString("Gateway", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to General.
- ///
- internal static string General {
- get {
- return ResourceManager.GetString("General", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to An error occured while loading the connection entry for "{0}" from "{1}". {2}.
- ///
- internal static string GetConnectionInfoFromXmlFailed {
- get {
- return ResourceManager.GetString("GetConnectionInfoFromXmlFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Automatic Reconnect.
- ///
- internal static string GroupboxAutomaticReconnect {
- get {
- return ResourceManager.GetString("GroupboxAutomaticReconnect", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to mRemoteNG Help.
- ///
- internal static string HelpContents {
- get {
- return ResourceManager.GetString("HelpContents", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to High.
- ///
- internal static string High {
- get {
- return ResourceManager.GetString("High", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Host.
- ///
- internal static string Host {
- get {
- return ResourceManager.GetString("Host", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Hostname:.
- ///
- internal static string Hostname {
- get {
- return ResourceManager.GetString("Hostname", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Hostname/IP.
- ///
- internal static string HostnameIp {
- get {
- return ResourceManager.GetString("HostnameIp", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to HTTP.
- ///
- internal static string Http {
- get {
- return ResourceManager.GetString("Http", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Edge Chromium.
- ///
- internal static string HttpCEF {
- get {
- return ResourceManager.GetString("HttpCEF", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to HTTP Connect Failed!.
- ///
- internal static string HttpConnectFailed {
- get {
- return ResourceManager.GetString("HttpConnectFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Couldn't create new HTTP Connection!.
- ///
- internal static string HttpConnectionFailed {
- get {
- return ResourceManager.GetString("HttpConnectionFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Changing HTTP Document Tile Failed!.
- ///
- internal static string HttpDocumentTileChangeFailed {
- get {
- return ResourceManager.GetString("HttpDocumentTileChangeFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Failed to contruct the URL to load.
- ///
- internal static string HttpFailedUrlBuild {
- get {
- return ResourceManager.GetString("HttpFailedUrlBuild", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Internet Explorer.
- ///
- internal static string HttpInternetExplorer {
- get {
- return ResourceManager.GetString("HttpInternetExplorer", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to HTTPS.
- ///
- internal static string Https {
- get {
- return ResourceManager.GetString("Https", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Set HTTP Props failed!.
- ///
- internal static string HttpSetPropsFailed {
- get {
- return ResourceManager.GetString("HttpSetPropsFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Icon.
- ///
- internal static string Icon {
- get {
- return ResourceManager.GetString("Icon", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Identify quick connect tabs by adding the prefix "Quick:".
- ///
- internal static string IdentifyQuickConnectTabs {
- get {
- return ResourceManager.GetString("IdentifyQuickConnectTabs", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Import from Active Directory.
- ///
- internal static string ImportAD {
- get {
- return ResourceManager.GetString("ImportAD", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to An error occurred while importing the file "{0}"..
- ///
- internal static string ImportFileFailedContent {
- get {
- return ResourceManager.GetString("ImportFileFailedContent", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Import from &File....
- ///
- internal static string ImportFromFile {
- get {
- return ResourceManager.GetString("ImportFromFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Import from Port Scan.
- ///
- internal static string ImportPortScan {
- get {
- return ResourceManager.GetString("ImportPortScan", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Import sub OUs.
- ///
- internal static string ImportSubOUs {
- get {
- return ResourceManager.GetString("ImportSubOUs", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Informations.
- ///
- internal static string Informations {
- get {
- return ResourceManager.GetString("Informations", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Inheritance.
- ///
- internal static string Inheritance {
- get {
- return ResourceManager.GetString("Inheritance", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Dispose of Int App process failed!.
- ///
- internal static string IntAppDisposeFailed {
- get {
- return ResourceManager.GetString("IntAppDisposeFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Int App Focus Failed!.
- ///
- internal static string IntAppFocusFailed {
- get {
- return ResourceManager.GetString("IntAppFocusFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Int App Handle: {0}.
- ///
- internal static string IntAppHandle {
- get {
- return ResourceManager.GetString("IntAppHandle", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Killing Int App Process failed!.
- ///
- internal static string IntAppKillFailed {
- get {
- return ResourceManager.GetString("IntAppKillFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Int App Resize failed!.
- ///
- internal static string IntAppResizeFailed {
- get {
- return ResourceManager.GetString("IntAppResizeFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to --- IntApp Stuff ---.
- ///
- internal static string IntAppStuff {
- get {
- return ResourceManager.GetString("IntAppStuff", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Int App Title: {0}.
- ///
- internal static string IntAppTitle {
- get {
- return ResourceManager.GetString("IntAppTitle", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to (Automatically Detect).
- ///
- internal static string LanguageDefault {
- get {
- return ResourceManager.GetString("LanguageDefault", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to {0} must be restarted before changes to the language will take effect..
- ///
- internal static string LanguageRestartRequired {
- get {
- return ResourceManager.GetString("LanguageRestartRequired", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Language.
- ///
- internal static string LanguageString {
- get {
- return ResourceManager.GetString("LanguageString", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Last IP.
- ///
- internal static string LastIp {
- get {
- return ResourceManager.GetString("LastIp", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Last Port.
- ///
- internal static string LastPort {
- get {
- return ResourceManager.GetString("LastPort", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Launch External Tool.
- ///
- internal static string LaunchExternalTool {
- get {
- return ResourceManager.GetString("LaunchExternalTool", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to License.
- ///
- internal static string License {
- get {
- return ResourceManager.GetString("License", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Load Balance Info.
- ///
- internal static string LoadBalanceInfo {
- get {
- return ResourceManager.GetString("LoadBalanceInfo", 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 Load from SQL failed.
- ///
- internal static string LoadFromSqlFailed {
- get {
- return ResourceManager.GetString("LoadFromSqlFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to The connection information could not be loaded from the SQL server..
- ///
- internal static string LoadFromSqlFailedContent {
- get {
- return ResourceManager.GetString("LoadFromSqlFailedContent", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Load From XML failed!.
- ///
- internal static string LoadFromXmlFailed {
- get {
- return ResourceManager.GetString("LoadFromXmlFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Local file.
- ///
- internal static string LocalFile {
- get {
- return ResourceManager.GetString("LocalFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Local file does not exist!.
- ///
- internal static string LocalFileDoesNotExist {
- get {
- return ResourceManager.GetString("LocalFileDoesNotExist", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Lock toolbar positions.
- ///
- internal static string LockToolbars {
- get {
- return ResourceManager.GetString("LockToolbars", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Log file path.
- ///
- internal static string LogFilePath {
- get {
- return ResourceManager.GetString("LogFilePath", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Logging.
- ///
- internal static string Logging {
- get {
- return ResourceManager.GetString("Logging", 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 Log these message types.
- ///
- internal static string LogTheseMessageTypes {
- get {
- return ResourceManager.GetString("LogTheseMessageTypes", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Log to application directory.
- ///
- internal static string LogToAppDir {
- get {
- return ResourceManager.GetString("LogToAppDir", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to MAC Address.
- ///
- internal static string MacAddress {
- get {
- return ResourceManager.GetString("MacAddress", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Medium.
- ///
- internal static string Medium {
- get {
- return ResourceManager.GetString("Medium", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Message.
- ///
- internal static string Message {
- get {
- return ResourceManager.GetString("Message", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Minimize to notification area.
- ///
- internal static string MinimizeToSysTray {
- get {
- return ResourceManager.GetString("MinimizeToSysTray", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Minutes to Idle.
- ///
- internal static string MinutesToIdleTimeout {
- get {
- return ResourceManager.GetString("MinutesToIdleTimeout", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Miscellaneous.
- ///
- internal static string Miscellaneous {
- get {
- return ResourceManager.GetString("Miscellaneous", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Monthly.
- ///
- internal static string Monthly {
- get {
- return ResourceManager.GetString("Monthly", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Move down.
- ///
- internal static string MoveDown {
- get {
- return ResourceManager.GetString("MoveDown", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Move up.
- ///
- internal static string MoveUp {
- get {
- return ResourceManager.GetString("MoveUp", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to mRemoteNG CSV.
- ///
- internal static string MremoteNgCsv {
- get {
- return ResourceManager.GetString("MremoteNgCsv", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to mRemoteNG Unhandled Exception.
- ///
- internal static string mRemoteNGUnhandledException {
- get {
- return ResourceManager.GetString("mRemoteNGUnhandledException", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to mRemoteNG XML.
- ///
- internal static string MremoteNgXml {
- get {
- return ResourceManager.GetString("MremoteNgXml", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Multi SSH:.
- ///
- internal static string MultiSsh {
- get {
- return ResourceManager.GetString("MultiSsh", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Multi SSH toolbar.
- ///
- internal static string MultiSshToolbar {
- get {
- return ResourceManager.GetString("MultiSshToolbar", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Press ENTER to send. Ctrl+C is sent immediately..
- ///
- internal static string MultiSshToolTip {
- get {
- return ResourceManager.GetString("MultiSshToolTip", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Must Be Between 0 and 255.
- ///
- internal static string MustBeBetween0And255 {
- get {
- return ResourceManager.GetString("MustBeBetween0And255", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to My current credentials (Windows logon information).
- ///
- internal static string MyCurrentWindowsCreds {
- get {
- return ResourceManager.GetString("MyCurrentWindowsCreds", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Name.
- ///
- internal static string Name {
- get {
- return ResourceManager.GetString("Name", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Never.
- ///
- internal static string Never {
- get {
- return ResourceManager.GetString("Never", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to New Connection.
- ///
- internal static string NewConnection {
- get {
- return ResourceManager.GetString("NewConnection", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to New Connection File.
- ///
- internal static string NewConnectionFile {
- get {
- return ResourceManager.GetString("NewConnectionFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to New External Tool.
- ///
- internal static string NewExternalTool {
- get {
- return ResourceManager.GetString("NewExternalTool", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to New Folder.
- ///
- internal static string NewFolder {
- get {
- return ResourceManager.GetString("NewFolder", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to New Panel.
- ///
- internal static string NewPanel {
- get {
- return ResourceManager.GetString("NewPanel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to New Title.
- ///
- internal static string NewTitle {
- get {
- return ResourceManager.GetString("NewTitle", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to No.
- ///
- internal static string No {
- get {
- return ResourceManager.GetString("No", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to No сompression.
- ///
- internal static string NoCompression {
- get {
- return ResourceManager.GetString("NoCompression", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to This node is already in this folder..
- ///
- internal static string NodeAlreadyInFolder {
- get {
- return ResourceManager.GetString("NodeAlreadyInFolder", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Cannot drag node onto itself..
- ///
- internal static string NodeCannotDragOnSelf {
- get {
- return ResourceManager.GetString("NodeCannotDragOnSelf", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Cannot drag parent node onto child..
- ///
- internal static string NodeCannotDragParentOnChild {
- get {
- return ResourceManager.GetString("NodeCannotDragParentOnChild", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to This node is not draggable..
- ///
- internal static string NodeNotDraggable {
- get {
- return ResourceManager.GetString("NodeNotDraggable", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to No ext. app specified..
- ///
- internal static string NoExtAppDefined {
- get {
- return ResourceManager.GetString("NoExtAppDefined", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to None.
- ///
- internal static string None {
- get {
- return ResourceManager.GetString("None", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Normal.
- ///
- internal static string Normal {
- get {
- return ResourceManager.GetString("Normal", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to No SmartSize.
- ///
- internal static string NoSmartSize {
- get {
- return ResourceManager.GetString("NoSmartSize", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Notifications.
- ///
- internal static string Notifications {
- get {
- return ResourceManager.GetString("Notifications", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to No update available.
- ///
- internal static string NoUpdateAvailable {
- get {
- return ResourceManager.GetString("NoUpdateAvailable", 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 OldConffile {
- get {
- return ResourceManager.GetString("OldConffile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Open a different file.
- ///
- internal static string OpenADifferentFile {
- get {
- return ResourceManager.GetString("OpenADifferentFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Open Connection File....
- ///
- internal static string OpenConnectionFile {
- get {
- return ResourceManager.GetString("OpenConnectionFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Open file.
- ///
- internal static string OpenFile {
- get {
- return ResourceManager.GetString("OpenFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Opening Command.
- ///
- internal static string OpeningCommand {
- get {
- return ResourceManager.GetString("OpeningCommand", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Open new tab to the right of the currently selected tab.
- ///
- internal static string OpenNewTabRight {
- get {
- return ResourceManager.GetString("OpenNewTabRight", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Open Ports.
- ///
- internal static string OpenPorts {
- get {
- return ResourceManager.GetString("OpenPorts", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Options.
- ///
- internal static string Options {
- get {
- return ResourceManager.GetString("Options", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to mRemoteNG Options.
- ///
- internal static string OptionsPageTitle {
- get {
- return ResourceManager.GetString("OptionsPageTitle", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Testing....
- ///
- internal static string OptionsProxyTesting {
- get {
- return ResourceManager.GetString("OptionsProxyTesting", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Warning: Restart is required to commit any theme configuration change..
- ///
- internal static string OptionsThemeChangeWarning {
- get {
- return ResourceManager.GetString("OptionsThemeChangeWarning", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Do you really want to delete the theme?.
- ///
- internal static string OptionsThemeDeleteConfirmation {
- get {
- return ResourceManager.GetString("OptionsThemeDeleteConfirmation", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to New theme name.
- ///
- internal static string OptionsThemeNewThemeCaption {
- get {
- return ResourceManager.GetString("OptionsThemeNewThemeCaption", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Cannot create theme, name already present or special characters in the name.
- ///
- internal static string OptionsThemeNewThemeError {
- get {
- return ResourceManager.GetString("OptionsThemeNewThemeError", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Type the new theme name.
- ///
- internal static string OptionsThemeNewThemeText {
- get {
- return ResourceManager.GetString("OptionsThemeNewThemeText", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Out Of Range.
- ///
- internal static string OutOfRange {
- get {
- return ResourceManager.GetString("OutOfRange", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Panel.
- ///
- internal static string Panel {
- get {
- return ResourceManager.GetString("Panel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Panel Handle: {0}.
- ///
- internal static string PanelHandle {
- get {
- return ResourceManager.GetString("PanelHandle", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Panel Name.
- ///
- internal static string PanelName {
- get {
- return ResourceManager.GetString("PanelName", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Password.
- ///
- internal static string Password {
- get {
- return ResourceManager.GetString("Password", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Password must contain at least {0} of the following characters: {1}.
- ///
- internal static string PasswordConstainsSpecialCharactersConstraintHint {
- get {
- return ResourceManager.GetString("PasswordConstainsSpecialCharactersConstraintHint", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Password must contain at least {0} lower case character(s).
- ///
- internal static string PasswordContainsLowerCaseConstraintHint {
- get {
- return ResourceManager.GetString("PasswordContainsLowerCaseConstraintHint", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Password must contain at least {0} number(s).
- ///
- internal static string PasswordContainsNumbersConstraint {
- get {
- return ResourceManager.GetString("PasswordContainsNumbersConstraint", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Password must contain at least {0} upper case character(s).
- ///
- internal static string PasswordContainsUpperCaseConstraintHint {
- get {
- return ResourceManager.GetString("PasswordContainsUpperCaseConstraintHint", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Password length must be between {0} and {1}.
- ///
- internal static string PasswordLengthConstraintHint {
- get {
- return ResourceManager.GetString("PasswordLengthConstraintHint", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Password protect.
- ///
- internal static string PasswordProtect {
- get {
- return ResourceManager.GetString("PasswordProtect", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Both passwords must match..
- ///
- internal static string PasswordStatusMustMatch {
- get {
- return ResourceManager.GetString("PasswordStatusMustMatch", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to The password must be at least 3 characters long..
- ///
- internal static string PasswordStatusTooShort {
- get {
- return ResourceManager.GetString("PasswordStatusTooShort", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Place search bar above connection tree.
- ///
- internal static string PlaceSearchBarAboveConnectionTree {
- get {
- return ResourceManager.GetString("PlaceSearchBarAboveConnectionTree", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Please fill all fields.
- ///
- internal static string PleaseFillAllFields {
- get {
- return ResourceManager.GetString("PleaseFillAllFields", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Popups.
- ///
- internal static string Popups {
- get {
- return ResourceManager.GetString("Popups", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Port.
- ///
- internal static string Port {
- get {
- return ResourceManager.GetString("Port", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Portable Edition.
- ///
- internal static string PortableEdition {
- get {
- return ResourceManager.GetString("PortableEdition", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Ports.
- ///
- internal static string Ports {
- get {
- return ResourceManager.GetString("Ports", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Port Scan.
- ///
- internal static string PortScan {
- get {
- return ResourceManager.GetString("PortScan", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Port scan complete..
- ///
- internal static string PortScanComplete {
- get {
- return ResourceManager.GetString("PortScanComplete", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Couldn't load PortScan panel!.
- ///
- internal static string PortScanCouldNotLoadPanel {
- get {
- return ResourceManager.GetString("PortScanCouldNotLoadPanel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to PowerShell.
- ///
- internal static string PowerShell {
- get {
- return ResourceManager.GetString("PowerShell", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Printers.
- ///
- internal static string Printers {
- get {
- return ResourceManager.GetString("Printers", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Properties.
- ///
- internal static string Properties {
- get {
- return ResourceManager.GetString("Properties", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Toggle all inheritance options..
- ///
- internal static string PropertyDescriptionAll {
- get {
- return ResourceManager.GetString("PropertyDescriptionAll", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select which authentication level this connection should use..
- ///
- internal static string PropertyDescriptionAuthenticationLevel {
- get {
- return ResourceManager.GetString("PropertyDescriptionAuthenticationLevel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select how you want to authenticate against the VNC server..
- ///
- internal static string PropertyDescriptionAuthenticationMode {
- get {
- return ResourceManager.GetString("PropertyDescriptionAuthenticationMode", 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 PropertyDescriptionAutomaticResize {
- get {
- return ResourceManager.GetString("PropertyDescriptionAutomaticResize", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select whether to use bitmap caching or not..
- ///
- internal static string PropertyDescriptionCacheBitmaps {
- get {
- return ResourceManager.GetString("PropertyDescriptionCacheBitmaps", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select the colour quality to be used..
- ///
- internal static string PropertyDescriptionColors {
- get {
- return ResourceManager.GetString("PropertyDescriptionColors", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select the compression value to be used..
- ///
- internal static string PropertyDescriptionCompression {
- get {
- return ResourceManager.GetString("PropertyDescriptionCompression", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Put your notes or a description for the host here..
- ///
- internal static string PropertyDescriptionDescription {
- get {
- return ResourceManager.GetString("PropertyDescriptionDescription", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Determines whether cursor flashes should be disabled..
- ///
- internal static string PropertyDescriptionDisableCursorBlinking {
- get {
- return ResourceManager.GetString("PropertyDescriptionDisableCursorBlinking", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Determines whether a mouse shadow should be visible..
- ///
- internal static string PropertyDescriptionDisableCursorShadow {
- get {
- return ResourceManager.GetString("PropertyDescriptionDisableCursorShadow", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Determines whether window content is displayed when you drag the window to a new location..
- ///
- internal static string PropertyDescriptionDisableFullWindowDrag {
- get {
- return ResourceManager.GetString("PropertyDescriptionDisableFullWindowDrag", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Determines whether menus and windows can be displayed with animation effects in the remote session..
- ///
- internal static string PropertyDescriptionDisableMenuAnimations {
- get {
- return ResourceManager.GetString("PropertyDescriptionDisableMenuAnimations", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select yes if the theme of the remote host should be displayed..
- ///
- internal static string PropertyDescriptionDisplayThemes {
- get {
- return ResourceManager.GetString("PropertyDescriptionDisplayThemes", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select yes if the wallpaper of the remote host should be displayed..
- ///
- internal static string PropertyDescriptionDisplayWallpaper {
- get {
- return ResourceManager.GetString("PropertyDescriptionDisplayWallpaper", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Enter your domain..
- ///
- internal static string PropertyDescriptionDomain {
- get {
- return ResourceManager.GetString("PropertyDescriptionDomain", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select whether to use desktop composition or not..
- ///
- internal static string PropertyDescriptionEnableDesktopComposition {
- get {
- return ResourceManager.GetString("PropertyDescriptionEnableDesktopComposition", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select whether to use font smoothing or not..
- ///
- internal static string PropertyDescriptionEnableFontSmoothing {
- get {
- return ResourceManager.GetString("PropertyDescriptionEnableFontSmoothing", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select the encoding mode to be used..
- ///
- internal static string PropertyDescriptionEncoding {
- get {
- return ResourceManager.GetString("PropertyDescriptionEncoding", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select the external tool to be started..
- ///
- internal static string PropertyDescriptionExternalTool {
- get {
- return ResourceManager.GetString("PropertyDescriptionExternalTool", 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 PropertyDescriptionExternalToolAfter {
- get {
- return ResourceManager.GetString("PropertyDescriptionExternalToolAfter", 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 PropertyDescriptionExternalToolBefore {
- get {
- return ResourceManager.GetString("PropertyDescriptionExternalToolBefore", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Show this connection in the favorites menu..
- ///
- internal static string PropertyDescriptionFavorite {
- get {
- return ResourceManager.GetString("PropertyDescriptionFavorite", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Enter the hostname or ip you want to connect to..
- ///
- internal static string PropertyDescriptionHostnameIp {
- get {
- return ResourceManager.GetString("PropertyDescriptionHostnameIp", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Choose a icon that will be displayed when connected to the host..
- ///
- internal static string PropertyDescriptionIcon {
- get {
- return ResourceManager.GetString("PropertyDescriptionIcon", 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 PropertyDescriptionLoadBalanceInfo {
- get {
- return ResourceManager.GetString("PropertyDescriptionLoadBalanceInfo", 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 PropertyDescriptionMACAddress {
- get {
- return ResourceManager.GetString("PropertyDescriptionMACAddress", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to This is the name that will be displayed in the connections tree..
- ///
- internal static string PropertyDescriptionName {
- get {
- return ResourceManager.GetString("PropertyDescriptionName", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to A command to run on the remote server after successfully connecting..
- ///
- internal static string PropertyDescriptionOpeningCommand {
- get {
- return ResourceManager.GetString("PropertyDescriptionOpeningCommand", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Sets the panel in which the connection will open..
- ///
- internal static string PropertyDescriptionPanel {
- get {
- return ResourceManager.GetString("PropertyDescriptionPanel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Enter your password..
- ///
- internal static string PropertyDescriptionPassword {
- get {
- return ResourceManager.GetString("PropertyDescriptionPassword", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Set a password needed to encrypt the connection file with. You will be prompted to enter your passcode before starting mRemoteNG..
- ///
- internal static string PropertyDescriptionPasswordProtect {
- get {
- return ResourceManager.GetString("PropertyDescriptionPasswordProtect", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Enter the port the selected protocol is listening on..
- ///
- internal static string PropertyDescriptionPort {
- get {
- return ResourceManager.GetString("PropertyDescriptionPort", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Choose the protocol mRemoteNG should use to connect to the host..
- ///
- internal static string PropertyDescriptionProtocol {
- get {
- return ResourceManager.GetString("PropertyDescriptionProtocol", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select a PuTTY session to be used when connecting..
- ///
- internal static string PropertyDescriptionPuttySession {
- get {
- return ResourceManager.GetString("PropertyDescriptionPuttySession", 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 PropertyDescriptionRDGatewayDomain {
- get {
- return ResourceManager.GetString("PropertyDescriptionRDGatewayDomain", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Specifies the host name of the Remote Desktop Gateway server..
- ///
- internal static string PropertyDescriptionRDGatewayHostname {
- get {
- return ResourceManager.GetString("PropertyDescriptionRDGatewayHostname", 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 PropertyDescriptionRDGatewayUseConnectionCredentials {
- get {
- return ResourceManager.GetString("PropertyDescriptionRDGatewayUseConnectionCredentials", 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 PropertyDescriptionRDGatewayUsername {
- get {
- return ResourceManager.GetString("PropertyDescriptionRDGatewayUsername", 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 PropertyDescriptionRDPAlertIdleTimeout {
- get {
- return ResourceManager.GetString("PropertyDescriptionRDPAlertIdleTimeout", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Specifies the password of the Remote Desktop Gateway server..
- ///
- internal static string PropertyDescriptionRdpGatewayPassword {
- get {
- return ResourceManager.GetString("PropertyDescriptionRdpGatewayPassword", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Specifies when to use a Remote Desktop Gateway (RD Gateway) server..
- ///
- internal static string PropertyDescriptionRdpGatewayUsageMethod {
- get {
- return ResourceManager.GetString("PropertyDescriptionRdpGatewayUsageMethod", 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 PropertyDescriptionRDPMinutesToIdleTimeout {
- get {
- return ResourceManager.GetString("PropertyDescriptionRDPMinutesToIdleTimeout", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to The program to be started on the remote server upon connection..
- ///
- internal static string PropertyDescriptionRDPStartProgram {
- get {
- return ResourceManager.GetString("PropertyDescriptionRDPStartProgram", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Specifies the working directory of the alternate shell..
- ///
- internal static string PropertyDescriptionRDPStartProgramWorkDir {
- get {
- return ResourceManager.GetString("PropertyDescriptionRDPStartProgramWorkDir", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Sets the version of RDP to use when opening connections..
- ///
- internal static string PropertyDescriptionRdpVersion {
- get {
- return ResourceManager.GetString("PropertyDescriptionRdpVersion", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select whether the default audio input device on the remote machine should be redirected to this computer..
- ///
- internal static string PropertyDescriptionRedirectAudioCapture {
- get {
- return ResourceManager.GetString("PropertyDescriptionRedirectAudioCapture", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select whether the clipboard should be shared..
- ///
- internal static string PropertyDescriptionRedirectClipboard {
- get {
- return ResourceManager.GetString("PropertyDescriptionRedirectClipboard", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select whether local disk drives should be shown on the remote host..
- ///
- internal static string PropertyDescriptionRedirectDrives {
- get {
- return ResourceManager.GetString("PropertyDescriptionRedirectDrives", 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 PropertyDescriptionRedirectKeys {
- get {
- return ResourceManager.GetString("PropertyDescriptionRedirectKeys", 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 PropertyDescriptionRedirectPorts {
- get {
- return ResourceManager.GetString("PropertyDescriptionRedirectPorts", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select whether local printers should be shown on the remote host..
- ///
- internal static string PropertyDescriptionRedirectPrinters {
- get {
- return ResourceManager.GetString("PropertyDescriptionRedirectPrinters", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select whether local smart cards should be available on the remote host..
- ///
- internal static string PropertyDescriptionRedirectSmartCards {
- get {
- return ResourceManager.GetString("PropertyDescriptionRedirectSmartCards", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select how remote sound should be redirected..
- ///
- internal static string PropertyDescriptionRedirectSounds {
- get {
- return ResourceManager.GetString("PropertyDescriptionRedirectSounds", 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 PropertyDescriptionRenderingEngine {
- get {
- return ResourceManager.GetString("PropertyDescriptionRenderingEngine", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Choose the resolution or mode this connection will open in..
- ///
- internal static string PropertyDescriptionResolution {
- get {
- return ResourceManager.GetString("PropertyDescriptionResolution", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select the SmartSize mode to be used..
- ///
- internal static string PropertyDescriptionSmartSizeMode {
- get {
- return ResourceManager.GetString("PropertyDescriptionSmartSizeMode", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Choose the Sound Quality provided by the protocol: Dynamic, Medium, High.
- ///
- internal static string PropertyDescriptionSoundQuality {
- get {
- return ResourceManager.GetString("PropertyDescriptionSoundQuality", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Specify here additional options to be used for SSH connection. See putty documentation for further details..
- ///
- internal static string PropertyDescriptionSshOptions {
- get {
- return ResourceManager.GetString("PropertyDescriptionSshOptions", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to For connection through a SSH tunnel (jump host) specify SSH connection to be used to establish SSH tunnel..
- ///
- internal static string PropertyDescriptionSshTunnel {
- get {
- return ResourceManager.GetString("PropertyDescriptionSshTunnel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Start Program/alternate shell.
- ///
- internal static string PropertyDescriptionStartProgram {
- get {
- return ResourceManager.GetString("PropertyDescriptionStartProgram", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connect to the console session of the remote host..
- ///
- internal static string PropertyDescriptionUseConsoleSession {
- get {
- return ResourceManager.GetString("PropertyDescriptionUseConsoleSession", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use the Credential Security Support Provider (CredSSP) for authentication if it is available..
- ///
- internal static string PropertyDescriptionUseCredSsp {
- get {
- return ResourceManager.GetString("PropertyDescriptionUseCredSsp", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connect to a Hyper-V host with enhanced mode enabled..
- ///
- internal static string PropertyDescriptionUseEnhancedMode {
- get {
- return ResourceManager.GetString("PropertyDescriptionUseEnhancedMode", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Feel free to enter any information you need here..
- ///
- internal static string PropertyDescriptionUser1 {
- get {
- return ResourceManager.GetString("PropertyDescriptionUser1", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Enter your username..
- ///
- internal static string PropertyDescriptionUsername {
- get {
- return ResourceManager.GetString("PropertyDescriptionUsername", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use VM ID to connect to VM running on Hyper-V..
- ///
- internal static string PropertyDescriptionUseVmId {
- get {
- return ResourceManager.GetString("PropertyDescriptionUseVmId", 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 PropertyDescriptionViewOnly {
- get {
- return ResourceManager.GetString("PropertyDescriptionViewOnly", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to The ID of the Hyper-V virtual machine to connect to..
- ///
- internal static string PropertyDescriptionVmId {
- get {
- return ResourceManager.GetString("PropertyDescriptionVmId", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Enter the proxy address to be used..
- ///
- internal static string PropertyDescriptionVNCProxyAddress {
- get {
- return ResourceManager.GetString("PropertyDescriptionVNCProxyAddress", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Enter your password for authenticating against the proxy..
- ///
- internal static string PropertyDescriptionVNCProxyPassword {
- get {
- return ResourceManager.GetString("PropertyDescriptionVNCProxyPassword", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Enter the port the proxy server listens on..
- ///
- internal static string PropertyDescriptionVNCProxyPort {
- get {
- return ResourceManager.GetString("PropertyDescriptionVNCProxyPort", 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 PropertyDescriptionVNCProxyType {
- get {
- return ResourceManager.GetString("PropertyDescriptionVNCProxyType", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Enter your username for authenticating against the proxy..
- ///
- internal static string PropertyDescriptionVNCProxyUsername {
- get {
- return ResourceManager.GetString("PropertyDescriptionVNCProxyUsername", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Protocol.
- ///
- internal static string Protocol {
- get {
- return ResourceManager.GetString("Protocol", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Protocol Event Disconnected. Host: "{1}"; Protocol: "{2}" Message: "{0}".
- ///
- internal static string ProtocolEventDisconnected {
- get {
- return ResourceManager.GetString("ProtocolEventDisconnected", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Protocol Event Disconnected failed.
- ///{0}.
- ///
- internal static string ProtocolEventDisconnectFailed {
- get {
- return ResourceManager.GetString("ProtocolEventDisconnectFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Protocol to import.
- ///
- internal static string ProtocolToImport {
- get {
- return ResourceManager.GetString("ProtocolToImport", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Proxy.
- ///
- internal static string Proxy {
- get {
- return ResourceManager.GetString("Proxy", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Proxy Address.
- ///
- internal static string ProxyAddress {
- get {
- return ResourceManager.GetString("ProxyAddress", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Proxy Password.
- ///
- internal static string ProxyPassword {
- get {
- return ResourceManager.GetString("ProxyPassword", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Proxy Port.
- ///
- internal static string ProxyPort {
- get {
- return ResourceManager.GetString("ProxyPort", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Proxy test failed!.
- ///
- internal static string ProxyTestFailed {
- get {
- return ResourceManager.GetString("ProxyTestFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Proxy test succeeded!.
- ///
- internal static string ProxyTestSucceeded {
- get {
- return ResourceManager.GetString("ProxyTestSucceeded", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Proxy Type.
- ///
- internal static string ProxyType {
- get {
- return ResourceManager.GetString("ProxyType", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Proxy Username.
- ///
- internal static string ProxyUsername {
- get {
- return ResourceManager.GetString("ProxyUsername", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Dispose of Putty process failed!.
- ///
- internal static string PuttyDisposeFailed {
- get {
- return ResourceManager.GetString("PuttyDisposeFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Couldn't set focus!.
- ///
- internal static string PuttyFocusFailed {
- get {
- return ResourceManager.GetString("PuttyFocusFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Putty Handle: {0}.
- ///
- internal static string PuttyHandle {
- get {
- return ResourceManager.GetString("PuttyHandle", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Killing Putty Process failed!.
- ///
- internal static string PuttyKillFailed {
- get {
- return ResourceManager.GetString("PuttyKillFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Putty Resize Failed!.
- ///
- internal static string PuttyResizeFailed {
- get {
- return ResourceManager.GetString("PuttyResizeFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to PuTTY Saved Sessions.
- ///
- internal static string PuttySavedSessionsRootName {
- get {
- return ResourceManager.GetString("PuttySavedSessionsRootName", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to PuTTY Session.
- ///
- internal static string PuttySession {
- get {
- return ResourceManager.GetString("PuttySession", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to To configure PuTTY sessions click this button:.
- ///
- internal static string PuttySessionsConfig {
- get {
- return ResourceManager.GetString("PuttySessionsConfig", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to PuTTY Settings.
- ///
- internal static string PuttySettings {
- get {
- return ResourceManager.GetString("PuttySettings", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Show PuTTY Settings Dialog failed!.
- ///
- internal static string PuttyShowSettingsDialogFailed {
- get {
- return ResourceManager.GetString("PuttyShowSettingsDialogFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to --- PuTTY Stuff ---.
- ///
- internal static string PuttyStuff {
- get {
- return ResourceManager.GetString("PuttyStuff", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Maximum PuTTY and integrated external tools wait time:.
- ///
- internal static string PuttyTimeout {
- get {
- return ResourceManager.GetString("PuttyTimeout", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to PuTTY Title: {0}.
- ///
- internal static string PuttyTitle {
- get {
- return ResourceManager.GetString("PuttyTitle", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Quick: {0}.
- ///
- internal static string Quick {
- get {
- return ResourceManager.GetString("Quick", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Quick Connect.
- ///
- internal static string QuickConnect {
- get {
- return ResourceManager.GetString("QuickConnect", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Quick Connect Add Failed!.
- ///
- internal static string QuickConnectAddFailed {
- get {
- return ResourceManager.GetString("QuickConnectAddFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Creating quick connect failed.
- ///
- internal static string QuickConnectFailed {
- get {
- return ResourceManager.GetString("QuickConnectFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Quick Connect Toolbar.
- ///
- internal static string QuickConnectToolbar {
- get {
- return ResourceManager.GetString("QuickConnectToolbar", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Warn me only when e&xiting mRemoteNG.
- ///
- internal static string RadioCloseWarnExit {
- get {
- return ResourceManager.GetString("RadioCloseWarnExit", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Warn me only when closing &multiple connections.
- ///
- internal static string RadioCloseWarnMultiple {
- get {
- return ResourceManager.GetString("RadioCloseWarnMultiple", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Do ¬ warn me when closing connections.
- ///
- internal static string RadioCloseWarnNever {
- get {
- return ResourceManager.GetString("RadioCloseWarnNever", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RAW.
- ///
- internal static string Raw {
- get {
- return ResourceManager.GetString("Raw", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP.
- ///
- internal static string Rdp {
- get {
- return ResourceManager.GetString("Rdp", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to 16777216 Colours (24-bit).
- ///
- internal static string Rdp16777216Colors {
- get {
- return ResourceManager.GetString("Rdp16777216Colors", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to 256 Colours (8-bit).
- ///
- internal static string Rdp256Colors {
- get {
- return ResourceManager.GetString("Rdp256Colors", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to 32768 Colours (15-bit).
- ///
- internal static string Rdp32768Colors {
- get {
- return ResourceManager.GetString("Rdp32768Colors", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to 16777216 Colours (32-bit).
- ///
- internal static string Rdp4294967296Colors {
- get {
- return ResourceManager.GetString("Rdp4294967296Colors", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to 65536 Colours (16-bit).
- ///
- internal static string Rdp65536Colors {
- get {
- return ResourceManager.GetString("Rdp65536Colors", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Couldn't create RDP control, please check mRemoteNG requirements..
- ///
- internal static string RdpControlCreationFailed {
- get {
- return ResourceManager.GetString("RdpControlCreationFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP Disconnect failed, trying to close!.
- ///
- internal static string RdpDisconnectFailed {
- get {
- return ResourceManager.GetString("RdpDisconnectFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Internal error code 1..
- ///
- internal static string RdpErrorCode1 {
- get {
- return ResourceManager.GetString("RdpErrorCode1", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Internal error code 2..
- ///
- internal static string RdpErrorCode2 {
- get {
- return ResourceManager.GetString("RdpErrorCode2", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Internal error code 3. This is not a valid state..
- ///
- internal static string RdpErrorCode3 {
- get {
- return ResourceManager.GetString("RdpErrorCode3", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Internal error code 4..
- ///
- internal static string RdpErrorCode4 {
- get {
- return ResourceManager.GetString("RdpErrorCode4", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to An unrecoverable error has occurred during client connection..
- ///
- internal static string RdpErrorConnection {
- get {
- return ResourceManager.GetString("RdpErrorConnection", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to GetError failed (FatalErrors).
- ///
- internal static string RdpErrorGetFailure {
- get {
- return ResourceManager.GetString("RdpErrorGetFailure", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to An out-of-memory error has occurred..
- ///
- internal static string RdpErrorOutOfMemory {
- get {
- return ResourceManager.GetString("RdpErrorOutOfMemory", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to An unknown error has occurred..
- ///
- internal static string RdpErrorUnknown {
- get {
- return ResourceManager.GetString("RdpErrorUnknown", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to A window-creation error has occurred..
- ///
- internal static string RdpErrorWindowCreation {
- get {
- return ResourceManager.GetString("RdpErrorWindowCreation", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Winsock initialization error..
- ///
- internal static string RdpErrorWinsock {
- get {
- return ResourceManager.GetString("RdpErrorWinsock", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP Focus failed!.
- ///
- internal static string RdpFocusFailed {
- get {
- return ResourceManager.GetString("RdpFocusFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Gateway Domain.
- ///
- internal static string RdpGatewayDomain {
- get {
- return ResourceManager.GetString("RdpGatewayDomain", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Gateway Hostname.
- ///
- internal static string RdpGatewayHostname {
- get {
- return ResourceManager.GetString("RdpGatewayHostname", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP Gateway is supported..
- ///
- internal static string RdpGatewayIsSupported {
- get {
- return ResourceManager.GetString("RdpGatewayIsSupported", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP Gateway is not supported!.
- ///
- internal static string RdpGatewayNotSupported {
- get {
- return ResourceManager.GetString("RdpGatewayNotSupported", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Remote Desktop Gateway Password.
- ///
- internal static string RdpGatewayPassword {
- get {
- return ResourceManager.GetString("RdpGatewayPassword", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use Gateway.
- ///
- internal static string RdpGatewayUsageMethod {
- get {
- return ResourceManager.GetString("RdpGatewayUsageMethod", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Gateway Credentials.
- ///
- internal static string RdpGatewayUseConnectionCredentials {
- get {
- return ResourceManager.GetString("RdpGatewayUseConnectionCredentials", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Gateway Username.
- ///
- internal static string RdpGatewayUsername {
- get {
- return ResourceManager.GetString("RdpGatewayUsername", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP Connection Timeout.
- ///
- internal static string RdpOverallConnectionTimeout {
- get {
- return ResourceManager.GetString("RdpOverallConnectionTimeout", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Could not create RDP client. RDP protocol version {0} is not supported on this machine. Please choose an older protocol version..
- ///
- internal static string RdpProtocolVersionNotSupported {
- get {
- return ResourceManager.GetString("RdpProtocolVersionNotSupported", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP reconnection count:.
- ///
- internal static string RdpReconnectCount {
- get {
- return ResourceManager.GetString("RdpReconnectCount", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP SetAuthenticationLevel failed!.
- ///
- internal static string RdpSetAuthenticationLevelFailed {
- get {
- return ResourceManager.GetString("RdpSetAuthenticationLevelFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP SetUseConsoleSession failed!.
- ///
- internal static string RdpSetConsoleSessionFailed {
- get {
- return ResourceManager.GetString("RdpSetConsoleSessionFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP Setting Console switch for RDC {0}..
- ///
- internal static string RdpSetConsoleSwitch {
- get {
- return ResourceManager.GetString("RdpSetConsoleSwitch", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP SetCredentials failed!.
- ///
- internal static string RdpSetCredentialsFailed {
- get {
- return ResourceManager.GetString("RdpSetCredentialsFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP SetEventHandlers failed!.
- ///
- internal static string RdpSetEventHandlersFailed {
- get {
- return ResourceManager.GetString("RdpSetEventHandlersFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP SetRDGateway failed!.
- ///
- internal static string RdpSetGatewayFailed {
- get {
- return ResourceManager.GetString("RdpSetGatewayFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP SetPerformanceFlags failed!.
- ///
- internal static string RdpSetPerformanceFlagsFailed {
- get {
- return ResourceManager.GetString("RdpSetPerformanceFlagsFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP SetPort failed!.
- ///
- internal static string RdpSetPortFailed {
- get {
- return ResourceManager.GetString("RdpSetPortFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP SetProps failed!.
- ///
- internal static string RdpSetPropsFailed {
- get {
- return ResourceManager.GetString("RdpSetPropsFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP Set Redirection Failed!.
- ///
- internal static string RdpSetRedirectionFailed {
- get {
- return ResourceManager.GetString("RdpSetRedirectionFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP Set Redirect Keys Failed!.
- ///
- internal static string RdpSetRedirectKeysFailed {
- get {
- return ResourceManager.GetString("RdpSetRedirectKeysFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP SetResolution failed!.
- ///
- internal static string RdpSetResolutionFailed {
- get {
- return ResourceManager.GetString("RdpSetResolutionFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Bring to this computer.
- ///
- internal static string RdpSoundBringToThisComputer {
- get {
- return ResourceManager.GetString("RdpSoundBringToThisComputer", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Leave at remote computer.
- ///
- internal static string RdpSoundLeaveAtRemoteComputer {
- get {
- return ResourceManager.GetString("RdpSoundLeaveAtRemoteComputer", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Alternate Shell.
- ///
- internal static string RDPStartProgram {
- get {
- return ResourceManager.GetString("RDPStartProgram", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Alternate shell working directory.
- ///
- internal static string RDPStartProgramWorkDir {
- get {
- return ResourceManager.GetString("RDPStartProgramWorkDir", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP ToggleFullscreen failed!.
- ///
- internal static string RdpToggleFullscreenFailed {
- get {
- return ResourceManager.GetString("RdpToggleFullscreenFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP ToggleSmartSize failed!.
- ///
- internal static string RdpToggleSmartSizeFailed {
- get {
- return ResourceManager.GetString("RdpToggleSmartSizeFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to RDP Version.
- ///
- internal static string RdpVersion {
- get {
- return ResourceManager.GetString("RdpVersion", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Read only:.
- ///
- internal static string ReadOnly {
- get {
- return ResourceManager.GetString("ReadOnly", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Reconnect.
- ///
- internal static string Reconnect {
- get {
- return ResourceManager.GetString("Reconnect", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Reconnect All Connections.
- ///
- internal static string ReconnectAllConnections {
- get {
- return ResourceManager.GetString("ReconnectAllConnections", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Reconnect to previously opened sessions on startup.
- ///
- internal static string ReconnectAtStartup {
- get {
- return ResourceManager.GetString("ReconnectAtStartup", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Redirect.
- ///
- internal static string Redirect {
- get {
- return ResourceManager.GetString("Redirect", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Disk Drives.
- ///
- internal static string RedirectDrives {
- get {
- return ResourceManager.GetString("RedirectDrives", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Key Combinations.
- ///
- internal static string RedirectKeys {
- get {
- return ResourceManager.GetString("RedirectKeys", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Smart Cards.
- ///
- internal static string RedirectSmartCards {
- get {
- return ResourceManager.GetString("RedirectSmartCards", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Refresh.
- ///
- internal static string Refresh {
- get {
- return ResourceManager.GetString("Refresh", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Refresh Screen (VNC).
- ///
- internal static string RefreshScreen {
- get {
- return ResourceManager.GetString("RefreshScreen", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Release Channel.
- ///
- internal static string ReleaseChannel {
- get {
- return ResourceManager.GetString("ReleaseChannel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Stable channel includes final releases only.
- ///Preview channel includes Betas & Release Candidates.
- ///Nightly Channel includes Alphas, Betas & Release Candidates..
- ///
- internal static string ReleaseChannelExplanation {
- get {
- return ResourceManager.GetString("ReleaseChannelExplanation", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Released under the GNU General Public License (GPL).
- ///
- internal static string ReleasedUnderGPL {
- get {
- return ResourceManager.GetString("ReleasedUnderGPL", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Remote Desktop Services.
- ///
- internal static string RemoteDesktopServices {
- get {
- return ResourceManager.GetString("RemoteDesktopServices", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Remote file.
- ///
- internal static string RemoteFile {
- get {
- return ResourceManager.GetString("RemoteFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Remove All.
- ///
- internal static string RemoveAll {
- get {
- return ResourceManager.GetString("RemoveAll", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Rename.
- ///
- internal static string Rename {
- get {
- return ResourceManager.GetString("Rename", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Rename Tab.
- ///
- internal static string RenameTab {
- get {
- return ResourceManager.GetString("RenameTab", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Rendering Engine.
- ///
- internal static string RenderingEngine {
- get {
- return ResourceManager.GetString("RenderingEngine", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Report a Bug.
- ///
- internal static string ReportBug {
- get {
- return ResourceManager.GetString("ReportBug", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Reset layout.
- ///
- internal static string ResetLayout {
- get {
- return ResourceManager.GetString("ResetLayout", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Resolution.
- ///
- internal static string Resolution {
- get {
- return ResourceManager.GetString("Resolution", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Rlogin.
- ///
- internal static string Rlogin {
- get {
- return ResourceManager.GetString("Rlogin", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Run elevated.
- ///
- internal static string RunElevated {
- get {
- return ResourceManager.GetString("RunElevated", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Save.
- ///
- internal static string Save {
- get {
- return ResourceManager.GetString("Save", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Save All.
- ///
- internal static string SaveAll {
- get {
- return ResourceManager.GetString("SaveAll", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Save Connection File.
- ///
- internal static string SaveConnectionFile {
- get {
- return ResourceManager.GetString("SaveConnectionFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Save Connection File As....
- ///
- internal static string SaveConnectionFileAs {
- get {
- return ResourceManager.GetString("SaveConnectionFileAs", 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 Do you want to save the current connections file before loading another?.
- ///
- internal static string SaveConnectionsFileBeforeOpeningAnother {
- get {
- return ResourceManager.GetString("SaveConnectionsFileBeforeOpeningAnother", 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 SaveImageFilter {
- get {
- return ResourceManager.GetString("SaveImageFilter", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Screen.
- ///
- internal static string Screen {
- get {
- return ResourceManager.GetString("Screen", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Screenshot.
- ///
- internal static string Screenshot {
- get {
- return ResourceManager.GetString("Screenshot", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Screenshots.
- ///
- internal static string Screenshots {
- get {
- return ResourceManager.GetString("Screenshots", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Search.
- ///
- internal static string SearchPrompt {
- get {
- return ResourceManager.GetString("SearchPrompt", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Seconds.
- ///
- internal static string Seconds {
- get {
- return ResourceManager.GetString("Seconds", 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 SelectPanel {
- get {
- return ResourceManager.GetString("SelectPanel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Send Special Keys (VNC).
- ///
- internal static string SendSpecialKeys {
- get {
- return ResourceManager.GetString("SendSpecialKeys", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Send To....
- ///
- internal static string SendTo {
- get {
- return ResourceManager.GetString("SendTo", 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 Server status:.
- ///
- internal static string ServerStatus {
- get {
- return ResourceManager.GetString("ServerStatus", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Set hostname like display name when creating or renaming connections.
- ///
- internal static string SetHostnameLikeDisplayName {
- get {
- return ResourceManager.GetString("SetHostnameLikeDisplayName", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Couldn't save settings or dispose SysTray Icon!.
- ///
- internal static string SettingsCouldNotBeSavedOrTrayDispose {
- get {
- return ResourceManager.GetString("SettingsCouldNotBeSavedOrTrayDispose", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Show description tooltips in connection tree.
- ///
- internal static string ShowDescriptionTooltips {
- get {
- return ResourceManager.GetString("ShowDescriptionTooltips", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Show full connections file path in window title.
- ///
- internal static string ShowFullConsFilePath {
- get {
- return ResourceManager.GetString("ShowFullConsFilePath", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to &Show Help Text.
- ///
- internal static string ShowHelpText {
- get {
- return ResourceManager.GetString("ShowHelpText", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Show/Hide Menu Strip.
- ///
- internal static string ShowHideMenu {
- get {
- return ResourceManager.GetString("ShowHideMenu", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Show logon information on tab names.
- ///
- internal static string ShowLogonInfoOnTabs {
- get {
- return ResourceManager.GetString("ShowLogonInfoOnTabs", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Show On Toolbar.
- ///
- internal static string ShowOnToolbar {
- get {
- return ResourceManager.GetString("ShowOnToolbar", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Show on toolbar column.
- ///
- internal static string ShowOnToolbarColumnHeader {
- get {
- return ResourceManager.GetString("ShowOnToolbarColumnHeader", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Show protocols on tab names.
- ///
- internal static string ShowProtocolOnTabs {
- get {
- return ResourceManager.GetString("ShowProtocolOnTabs", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Show Text.
- ///
- internal static string ShowText {
- get {
- return ResourceManager.GetString("ShowText", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Show these message types.
- ///
- internal static string ShowTheseMessageTypes {
- get {
- return ResourceManager.GetString("ShowTheseMessageTypes", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Single click on connection opens it.
- ///
- internal static string SingleClickOnConnectionOpensIt {
- get {
- return ResourceManager.GetString("SingleClickOnConnectionOpensIt", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Single click on opened connection in Connection Tree switches to opened Connection Tab.
- ///
- internal static string SingleClickOnOpenConnectionSwitchesToIt {
- get {
- return ResourceManager.GetString("SingleClickOnOpenConnectionSwitchesToIt", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SmartCard.
- ///
- internal static string SmartCard {
- get {
- return ResourceManager.GetString("SmartCard", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SmartSize (RDP/VNC).
- ///
- internal static string SmartSize {
- get {
- return ResourceManager.GetString("SmartSize", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SmartSize Mode.
- ///
- internal static string SmartSizeMode {
- get {
- return ResourceManager.GetString("SmartSizeMode", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Socks 5.
- ///
- internal static string Socks5 {
- get {
- return ResourceManager.GetString("Socks5", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Sort.
- ///
- internal static string Sort {
- get {
- return ResourceManager.GetString("Sort", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Ascending (A-Z).
- ///
- internal static string SortAsc {
- get {
- return ResourceManager.GetString("SortAsc", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Descending (Z-A).
- ///
- internal static string SortDesc {
- get {
- return ResourceManager.GetString("SortDesc", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Sound quality.
- ///
- internal static string SoundQuality {
- get {
- return ResourceManager.GetString("SoundQuality", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Sounds.
- ///
- internal static string Sounds {
- get {
- return ResourceManager.GetString("Sounds", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Please see Help - Getting started - SQL Configuration for more Info!.
- ///
- internal static string SQLInfo {
- get {
- return ResourceManager.GetString("SQLInfo", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SQL Server.
- ///
- internal static string SQLServer {
- get {
- return ResourceManager.GetString("SQLServer", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH background transfer failed!.
- ///
- internal static string SshBackgroundTransferFailed {
- get {
- return ResourceManager.GetString("SshBackgroundTransferFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH File Transfer.
- ///
- internal static string SshFileTransfer {
- get {
- return ResourceManager.GetString("SshFileTransfer", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH Options.
- ///
- internal static string SshOptions {
- get {
- return ResourceManager.GetString("SshOptions", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH transfer failed..
- ///
- internal static string SshTransferFailed {
- get {
- return ResourceManager.GetString("SshTransferFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH Tunnel.
- ///
- internal static string SshTunnel {
- get {
- return ResourceManager.GetString("SshTunnel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH Tunnel connection configuration problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. A connection with the name configured as SSH Tunnel and protocol SSH version 1 or SSH2 version 2 cannot be found in the connection tree. Clear SSH Tunnel configuration or specify existing SSH connection..
- ///
- internal static string SshTunnelConfigProblem {
- get {
- return ResourceManager.GetString("SshTunnelConfigProblem", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH tunnel connection failed. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Putty process terminated. Check for any problems with the connection configured as SSH Tunnel..
- ///
- internal static string SshTunnelFailed {
- get {
- return ResourceManager.GetString("SshTunnelFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH tunnel configuration problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Connection configured as SSH Tunnel found in tree, but protocol is not derived from putty. Make sure connection configured as SSH Tunnel is using SSH protocol..
- ///
- internal static string SshTunnelIsNotPutty {
- get {
- return ResourceManager.GetString("SshTunnelIsNotPutty", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH tunnel connection problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. SSH connection failed. Check for any problems with the connection configured as SSH Tunnel..
- ///
- internal static string SshTunnelNotConnected {
- get {
- return ResourceManager.GetString("SshTunnelNotConnected", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH tunnel initialization problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. SSH connection could not be initialized. Check for any problems with the connection configured as SSH Tunnel..
- ///
- internal static string SshTunnelNotInitialized {
- get {
- return ResourceManager.GetString("SshTunnelNotInitialized", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH tunnel connection timed out. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Local tunnel port did not become available in time. Check for any problems with the connection configured as SSH Tunnel..
- ///
- internal static string SshTunnelPortNotReadyInTime {
- get {
- return ResourceManager.GetString("SshTunnelPortNotReadyInTime", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH version 1.
- ///
- internal static string SshV1 {
- get {
- return ResourceManager.GetString("SshV1", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to SSH version 2.
- ///
- internal static string SshV2 {
- get {
- return ResourceManager.GetString("SshV2", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Stack trace.
- ///
- internal static string StackTrace {
- get {
- return ResourceManager.GetString("StackTrace", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Start Chat (VNC).
- ///
- internal static string StartChat {
- get {
- return ResourceManager.GetString("StartChat", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Start minimized.
- ///
- internal static string StartMinimized {
- get {
- return ResourceManager.GetString("StartMinimized", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Start Program.
- ///
- internal static string StartProgram {
- get {
- return ResourceManager.GetString("StartProgram", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Startup/Exit.
- ///
- internal static string StartupExit {
- get {
- return ResourceManager.GetString("StartupExit", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Status.
- ///
- internal static string Status {
- get {
- return ResourceManager.GetString("Status", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Backup.
- ///
- internal static string strBackup {
- get {
- return ResourceManager.GetString("strBackup", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Browse....
- ///
- internal static string strBrowse {
- get {
- return ResourceManager.GetString("strBrowse", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Connection Backup Frequency.
- ///
- internal static string strConnectionBackupFrequency {
- get {
- return ResourceManager.GetString("strConnectionBackupFrequency", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Maximum number of backups.
- ///
- internal static string strConnectionsBackupMaxCount {
- get {
- return ResourceManager.GetString("strConnectionsBackupMaxCount", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Location of connection file backup.
- ///
- internal static string strConnectionsBackupPath {
- get {
- return ResourceManager.GetString("strConnectionsBackupPath", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Support Forum.
- ///
- internal static string SupportForum {
- get {
- return ResourceManager.GetString("SupportForum", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Switch to Notifications panel on:.
- ///
- internal static string SwitchToErrorsAndInfos {
- get {
- return ResourceManager.GetString("SwitchToErrorsAndInfos", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Tabs && Panels.
- ///
- internal static string TabsAndPanels {
- get {
- return ResourceManager.GetString("TabsAndPanels", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Security.
- ///
- internal static string TabSecurity {
- get {
- return ResourceManager.GetString("TabSecurity", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Telnet.
- ///
- internal static string Telnet {
- get {
- return ResourceManager.GetString("Telnet", 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 Test Proxy.
- ///
- internal static string TestProxy {
- get {
- return ResourceManager.GetString("TestProxy", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Test Settings.
- ///
- internal static string TestSettings {
- get {
- return ResourceManager.GetString("TestSettings", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to The following:.
- ///
- internal static string TheFollowing {
- get {
- return ResourceManager.GetString("TheFollowing", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Theme.
- ///
- internal static string Theme {
- get {
- return ResourceManager.GetString("Theme", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Timeout [seconds].
- ///
- internal static string TimeoutInSeconds {
- get {
- return ResourceManager.GetString("TimeoutInSeconds", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Title.
- ///
- internal static string Title {
- get {
- return ResourceManager.GetString("Title", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Error ({0}).
- ///
- internal static string TitleError {
- get {
- return ResourceManager.GetString("TitleError", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Information ({0}).
- ///
- internal static string TitleInformation {
- get {
- return ResourceManager.GetString("TitleInformation", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to mRemoteNG password.
- ///
- internal static string TitlePassword {
- get {
- return ResourceManager.GetString("TitlePassword", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to mRemoteNG password for {0}.
- ///
- internal static string TitlePasswordWithName {
- get {
- return ResourceManager.GetString("TitlePasswordWithName", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Select Panel.
- ///
- internal static string TitleSelectPanel {
- get {
- return ResourceManager.GetString("TitleSelectPanel", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Warning ({0}).
- ///
- internal static string TitleWarning {
- get {
- return ResourceManager.GetString("TitleWarning", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Track active connection in the connection tree.
- ///
- internal static string TrackActiveConnectionInConnectionTree {
- get {
- return ResourceManager.GetString("TrackActiveConnectionInConnectionTree", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Transfer.
- ///
- internal static string Transfer {
- get {
- return ResourceManager.GetString("Transfer", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Transfer File (SSH).
- ///
- internal static string TransferFile {
- get {
- return ResourceManager.GetString("TransferFile", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Try to integrate.
- ///
- internal static string TryToIntegrate {
- get {
- return ResourceManager.GetString("TryToIntegrate", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Ultra VNC Repeater.
- ///
- internal static string UltraVncRepeater {
- get {
- return ResourceManager.GetString("UltraVncRepeater", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to UltraVNC SingleClick port:.
- ///
- internal static string UltraVNCSCListeningPort {
- get {
- return ResourceManager.GetString("UltraVNCSCListeningPort", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to UltraVNC SingleClick.
- ///
- internal static string UltraVNCSingleClick {
- get {
- return ResourceManager.GetString("UltraVNCSingleClick", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Uncheck the properties you want not to be saved!.
- ///
- internal static string UncheckProperties {
- get {
- return ResourceManager.GetString("UncheckProperties", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to An unhandled exception has occurred.
- ///
- internal static string UnhandledExceptionOccured {
- get {
- return ResourceManager.GetString("UnhandledExceptionOccured", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to mRemoteNG requires an update.
- ///
- internal static string UpdateAvailable {
- get {
- return ResourceManager.GetString("UpdateAvailable", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to mRemoteNG can periodically connect to the mRemoteNG website to check for updates..
- ///
- internal static string UpdateCheck {
- get {
- return ResourceManager.GetString("UpdateCheck", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to The update information could not be downloaded..
- ///
- internal static string UpdateCheckCompleteFailed {
- get {
- return ResourceManager.GetString("UpdateCheckCompleteFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Download complete!
- ///mRemoteNG will now quit and begin with the installation..
- ///
- internal static string UpdateDownloadComplete {
- get {
- return ResourceManager.GetString("UpdateDownloadComplete", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to The update could not be downloaded..
- ///
- internal static string UpdateDownloadCompleteFailed {
- get {
- return ResourceManager.GetString("UpdateDownloadCompleteFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to The update download could not be initiated..
- ///
- internal static string UpdateDownloadFailed {
- get {
- return ResourceManager.GetString("UpdateDownloadFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Every {0} days.
- ///
- internal static string UpdateFrequencyCustom {
- get {
- return ResourceManager.GetString("UpdateFrequencyCustom", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to The change log could not be downloaded..
- ///
- internal static string UpdateGetChangeLogFailed {
- get {
- return ResourceManager.GetString("UpdateGetChangeLogFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Download Completed!.
- ///
- internal static string UpdatePortableDownloadComplete {
- get {
- return ResourceManager.GetString("UpdatePortableDownloadComplete", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Updates.
- ///
- internal static string Updates {
- get {
- return ResourceManager.GetString("Updates", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use Console Session.
- ///
- internal static string UseConsoleSession {
- get {
- return ResourceManager.GetString("UseConsoleSession", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use CredSSP.
- ///
- internal static string UseCredSsp {
- get {
- return ResourceManager.GetString("UseCredSsp", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use default.
- ///
- internal static string UseDefault {
- get {
- return ResourceManager.GetString("UseDefault", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use a different username and password.
- ///
- internal static string UseDifferentUsernameAndPassword {
- get {
- return ResourceManager.GetString("UseDifferentUsernameAndPassword", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use enhanced mode.
- ///
- internal static string UseEnhancedMode {
- get {
- return ResourceManager.GetString("UseEnhancedMode", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to User.
- ///
- internal static string User {
- get {
- return ResourceManager.GetString("User", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to User Field.
- ///
- internal static string UserField {
- get {
- return ResourceManager.GetString("UserField", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Username.
- ///
- internal static string Username {
- get {
- return ResourceManager.GetString("Username", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use the same username and password.
- ///
- internal static string UseSameUsernameAndPassword {
- get {
- return ResourceManager.GetString("UseSameUsernameAndPassword", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use a smart card.
- ///
- internal static string UseSmartCard {
- get {
- return ResourceManager.GetString("UseSmartCard", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use SQL Server to load && save connections.
- ///
- internal static string UseSQLServer {
- get {
- return ResourceManager.GetString("UseSQLServer", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Use VM ID.
- ///
- internal static string UseVmId {
- get {
- return ResourceManager.GetString("UseVmId", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Verify:.
- ///
- internal static string Verify {
- get {
- return ResourceManager.GetString("Verify", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Version.
- ///
- internal static string Version {
- get {
- return ResourceManager.GetString("Version", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to View Only.
- ///
- internal static string ViewOnly {
- get {
- return ResourceManager.GetString("ViewOnly", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to VM ID.
- ///
- internal static string VmId {
- get {
- return ResourceManager.GetString("VmId", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to VNC.
- ///
- internal static string Vnc {
- get {
- return ResourceManager.GetString("Vnc", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to VNC disconnect failed!.
- ///
- internal static string VncConnectionDisconnectFailed {
- get {
- return ResourceManager.GetString("VncConnectionDisconnectFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to VNC Refresh Screen Failed!.
- ///
- internal static string VncRefreshFailed {
- get {
- return ResourceManager.GetString("VncRefreshFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to VNC SendSpecialKeys failed!.
- ///
- internal static string VncSendSpecialKeysFailed {
- get {
- return ResourceManager.GetString("VncSendSpecialKeysFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to VNC Set Event Handlers failed!.
- ///
- internal static string VncSetEventHandlersFailed {
- get {
- return ResourceManager.GetString("VncSetEventHandlersFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to VNC Set Props Failed!.
- ///
- internal static string VncSetPropsFailed {
- get {
- return ResourceManager.GetString("VncSetPropsFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to VNC Toggle SmartSize Failed!.
- ///
- internal static string VncToggleSmartSizeFailed {
- get {
- return ResourceManager.GetString("VncToggleSmartSizeFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to VNC Toggle ViewOnly Failed!.
- ///
- internal static string VncToggleViewOnlyFailed {
- get {
- return ResourceManager.GetString("VncToggleViewOnlyFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Wait for exit.
- ///
- internal static string WaitForExit {
- get {
- return ResourceManager.GetString("WaitForExit", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Warn me if authentication fails.
- ///
- internal static string WarnIfAuthFails {
- get {
- return ResourceManager.GetString("WarnIfAuthFails", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Warnings.
- ///
- internal static string Warnings {
- get {
- return ResourceManager.GetString("Warnings", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Website.
- ///
- internal static string Website {
- get {
- return ResourceManager.GetString("Website", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to WebView2 creation failed with exception.
- ///
- internal static string WebView2InitializationFailed {
- get {
- return ResourceManager.GetString("WebView2InitializationFailed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Weekly.
- ///
- internal static string Weekly {
- get {
- return ResourceManager.GetString("Weekly", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Windows.
- ///
- internal static string Windows {
- get {
- return ResourceManager.GetString("Windows", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Working directory.
- ///
- internal static string WorkingDirColumnHeader {
- get {
- return ResourceManager.GetString("WorkingDirColumnHeader", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Working directory:.
- ///
- internal static string WorkingDirectory {
- get {
- return ResourceManager.GetString("WorkingDirectory", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Yes.
- ///
- internal static string Yes {
- get {
- return ResourceManager.GetString("Yes", 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.Resources.Language {
+ 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", "17.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.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 &Browse....
+ ///
+ internal static string _Browse {
+ get {
+ return ResourceManager.GetString("_Browse", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Cancel.
+ ///
+ internal static string _Cancel {
+ get {
+ return ResourceManager.GetString("_Cancel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Close.
+ ///
+ internal static string _Close {
+ get {
+ return ResourceManager.GetString("_Close", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Warn me when closing connections.
+ ///
+ internal static string _CloseWarnAll {
+ get {
+ return ResourceManager.GetString("_CloseWarnAll", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Delete.
+ ///
+ internal static string _Delete {
+ get {
+ return ResourceManager.GetString("_Delete", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Export to File....
+ ///
+ internal static string _ExportToFile {
+ get {
+ return ResourceManager.GetString("_ExportToFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &File.
+ ///
+ internal static string _File {
+ get {
+ return ResourceManager.GetString("_File", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Help.
+ ///
+ internal static string _Help {
+ get {
+ return ResourceManager.GetString("_Help", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Import.
+ ///
+ internal static string _Import {
+ get {
+ return ResourceManager.GetString("_Import", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Launch.
+ ///
+ internal static string _Launch {
+ get {
+ return ResourceManager.GetString("_Launch", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &New.
+ ///
+ internal static string _New {
+ get {
+ return ResourceManager.GetString("_New", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &OK.
+ ///
+ internal static string _Ok {
+ get {
+ return ResourceManager.GetString("_Ok", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Scan.
+ ///
+ internal static string _Scan {
+ get {
+ return ResourceManager.GetString("_Scan", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Stop.
+ ///
+ internal static string _Stop {
+ get {
+ return ResourceManager.GetString("_Stop", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Tools.
+ ///
+ internal static string _Tools {
+ get {
+ return ResourceManager.GetString("_Tools", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Try again.
+ ///
+ internal static string _TryAgain {
+ get {
+ return ResourceManager.GetString("_TryAgain", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &View.
+ ///
+ internal static string _View {
+ get {
+ return ResourceManager.GetString("_View", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to About.
+ ///
+ internal static string About {
+ get {
+ return ResourceManager.GetString("About", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Active Directory.
+ ///
+ internal static string ActiveDirectory {
+ get {
+ return ResourceManager.GetString("ActiveDirectory", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Add.
+ ///
+ internal static string Add {
+ get {
+ return ResourceManager.GetString("Add", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Add Connection Panel.
+ ///
+ internal static string AddConnectionPanel {
+ get {
+ return ResourceManager.GetString("AddConnectionPanel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to AddNodeFromXML failed!.
+ ///
+ internal static string AddNodeFromXmlFailed {
+ get {
+ return ResourceManager.GetString("AddNodeFromXmlFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Address:.
+ ///
+ internal static string Address {
+ get {
+ return ResourceManager.GetString("Address", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Advanced.
+ ///
+ internal static string Advanced {
+ get {
+ return ResourceManager.GetString("Advanced", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Advanced security options.
+ ///
+ internal static string AdvancedSecurityOptions {
+ get {
+ return ResourceManager.GetString("AdvancedSecurityOptions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to All.
+ ///
+ internal static string All {
+ get {
+ return ResourceManager.GetString("All", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Allow only a single instance of the application (mRemoteNG restart required).
+ ///
+ internal static string AllowOnlySingleInstance {
+ get {
+ return ResourceManager.GetString("AllowOnlySingleInstance", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Always.
+ ///
+ internal static string Always {
+ get {
+ return ResourceManager.GetString("Always", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Always connect, even if authentication fails.
+ ///
+ internal static string AlwaysConnectEvenIfAuthFails {
+ get {
+ return ResourceManager.GetString("AlwaysConnectEvenIfAuthFails", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Always show connection tabs.
+ ///
+ internal static string AlwaysShowConnectionTabs {
+ get {
+ return ResourceManager.GetString("AlwaysShowConnectionTabs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Always show panel selection dialog when opening connections.
+ ///
+ internal static string AlwaysShowPanelSelection {
+ get {
+ return ResourceManager.GetString("AlwaysShowPanelSelection", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Always show panel tabs.
+ ///
+ internal static string AlwaysShowPanelTabs {
+ get {
+ return ResourceManager.GetString("AlwaysShowPanelTabs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Always show notification area icon.
+ ///
+ internal static string AlwaysShowSysTrayIcon {
+ get {
+ return ResourceManager.GetString("AlwaysShowSysTrayIcon", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Appearance.
+ ///
+ internal static string Appearance {
+ get {
+ return ResourceManager.GetString("Appearance", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Apply.
+ ///
+ internal static string Apply {
+ get {
+ return ResourceManager.GetString("Apply", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die Apply default inheritance ähnelt.
+ ///
+ internal static string ApplyDefaultInheritance {
+ get {
+ return ResourceManager.GetString("ApplyDefaultInheritance", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die Apply inheritance to children ähnelt.
+ ///
+ internal static string ApplyInheritanceToChildren {
+ get {
+ return ResourceManager.GetString("ApplyInheritanceToChildren", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die Arguments ähnelt.
+ ///
+ internal static string Arguments {
+ get {
+ return ResourceManager.GetString("Arguments", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ask me again later.
+ ///
+ internal static string AskUpdatesCommandAskLater {
+ get {
+ return ResourceManager.GetString("AskUpdatesCommandAskLater", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Customize the settings now.
+ ///
+ internal static string AskUpdatesCommandCustom {
+ get {
+ return ResourceManager.GetString("AskUpdatesCommandCustom", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use the recommended settings.
+ ///
+ internal static string AskUpdatesCommandRecommended {
+ get {
+ return ResourceManager.GetString("AskUpdatesCommandRecommended", 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 AskUpdatesContent {
+ get {
+ return ResourceManager.GetString("AskUpdatesContent", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Automatic update settings.
+ ///
+ internal static string AskUpdatesMainInstruction {
+ get {
+ return ResourceManager.GetString("AskUpdatesMainInstruction", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Aspect.
+ ///
+ internal static string Aspect {
+ get {
+ return ResourceManager.GetString("Aspect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Assigned Credential.
+ ///
+ internal static string AssignedCredential {
+ get {
+ return ResourceManager.GetString("AssignedCredential", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Audio Capture.
+ ///
+ internal static string AudioCapture {
+ get {
+ return ResourceManager.GetString("AudioCapture", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Server Authentication.
+ ///
+ internal static string AuthenticationLevel {
+ get {
+ return ResourceManager.GetString("AuthenticationLevel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Authentication mode.
+ ///
+ internal static string AuthenticationMode {
+ get {
+ return ResourceManager.GetString("AuthenticationMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// 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 Automatic resize.
+ ///
+ internal static string AutomaticResize {
+ get {
+ return ResourceManager.GetString("AutomaticResize", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Auto save time in minutes (0 means disabled):.
+ ///
+ internal static string AutoSaveEvery {
+ get {
+ return ResourceManager.GetString("AutoSaveEvery", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Latest version.
+ ///
+ internal static string AvailableVersion {
+ get {
+ return ResourceManager.GetString("AvailableVersion", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Default Inheritance.
+ ///
+ internal static string ButtonDefaultInheritance {
+ get {
+ return ResourceManager.GetString("ButtonDefaultInheritance", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Default Properties.
+ ///
+ internal static string ButtonDefaultProperties {
+ get {
+ return ResourceManager.GetString("ButtonDefaultProperties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Launch PuTTY.
+ ///
+ internal static string ButtonLaunchPutty {
+ get {
+ return ResourceManager.GetString("ButtonLaunchPutty", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cache Bitmaps.
+ ///
+ internal static string CacheBitmaps {
+ get {
+ return ResourceManager.GetString("CacheBitmaps", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cannot start Port Scan, incorrect IP format!.
+ ///
+ internal static string CannotStartPortScan {
+ get {
+ return ResourceManager.GetString("CannotStartPortScan", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Change.
+ ///
+ internal static string Change {
+ get {
+ return ResourceManager.GetString("Change", 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 Changelog.
+ ///
+ internal static string Changelog {
+ get {
+ return ResourceManager.GetString("Changelog", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Check Again.
+ ///
+ internal static string CheckAgain {
+ get {
+ return ResourceManager.GetString("CheckAgain", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Automatically try to reconnect when disconnected from server (RDP && ICA only).
+ ///
+ internal static string CheckboxAutomaticReconnect {
+ get {
+ return ResourceManager.GetString("CheckboxAutomaticReconnect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Do not show this message again..
+ ///
+ internal static string CheckboxDoNotShowThisMessageAgain {
+ get {
+ return ResourceManager.GetString("CheckboxDoNotShowThisMessageAgain", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This proxy server requires authentication.
+ ///
+ internal static string CheckboxProxyAuthentication {
+ get {
+ return ResourceManager.GetString("CheckboxProxyAuthentication", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use custom PuTTY path:.
+ ///
+ internal static string CheckboxPuttyPath {
+ get {
+ return ResourceManager.GetString("CheckboxPuttyPath", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reconnect when ready.
+ ///
+ internal static string CheckboxReconnectWhenReady {
+ get {
+ return ResourceManager.GetString("CheckboxReconnectWhenReady", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use a proxy server to connect.
+ ///
+ internal static string CheckboxUpdateUseProxy {
+ get {
+ return ResourceManager.GetString("CheckboxUpdateUseProxy", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Check failed!.
+ ///
+ internal static string CheckFailed {
+ get {
+ return ResourceManager.GetString("CheckFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Check for Updates.
+ ///
+ internal static string CheckForUpdates {
+ get {
+ return ResourceManager.GetString("CheckForUpdates", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Check for updates at startup.
+ ///
+ internal static string CheckForUpdatesOnStartup {
+ get {
+ return ResourceManager.GetString("CheckForUpdatesOnStartup", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Check now.
+ ///
+ internal static string CheckNow {
+ get {
+ return ResourceManager.GetString("CheckNow", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Check proper installation of components at startup.
+ ///
+ internal static string CheckProperInstallationOfComponentsAtStartup {
+ get {
+ return ResourceManager.GetString("CheckProperInstallationOfComponentsAtStartup", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Choose a path for the mRemoteNG log file.
+ ///
+ internal static string ChooseLogPath {
+ get {
+ return ResourceManager.GetString("ChooseLogPath", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Choose panel before connecting.
+ ///
+ internal static string ChoosePanelBeforeConnecting {
+ get {
+ return ResourceManager.GetString("ChoosePanelBeforeConnecting", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Choose path.
+ ///
+ internal static string ChoosePath {
+ get {
+ return ResourceManager.GetString("ChoosePath", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Clear search string.
+ ///
+ internal static string ClearSearchString {
+ get {
+ return ResourceManager.GetString("ClearSearchString", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Clipboard.
+ ///
+ internal static string Clipboard {
+ get {
+ return ResourceManager.GetString("Clipboard", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Closed Ports.
+ ///
+ internal static string ClosedPorts {
+ get {
+ return ResourceManager.GetString("ClosedPorts", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Close to notification area.
+ ///
+ internal static string CloseToSysTray {
+ get {
+ return ResourceManager.GetString("CloseToSysTray", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to When closing connections:.
+ ///
+ internal static string ClosingConnections {
+ get {
+ return ResourceManager.GetString("ClosingConnections", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Collapse all folders.
+ ///
+ internal static string CollapseAllFolders {
+ get {
+ return ResourceManager.GetString("CollapseAllFolders", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Colours.
+ ///
+ internal static string Colors {
+ get {
+ return ResourceManager.GetString("Colors", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to E&xit {0}.
+ ///
+ internal static string CommandExitProgram {
+ get {
+ return ResourceManager.GetString("CommandExitProgram", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Couldn't parse command line args!.
+ ///
+ internal static string CommandLineArgsCouldNotBeParsed {
+ get {
+ return ResourceManager.GetString("CommandLineArgsCouldNotBeParsed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Open a connection file.
+ ///
+ internal static string CommandOpenConnectionFile {
+ get {
+ return ResourceManager.GetString("CommandOpenConnectionFile", 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 CompatibilityLenovoAutoScrollUtilityDetected {
+ get {
+ return ResourceManager.GetString("CompatibilityLenovoAutoScrollUtilityDetected", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Compatibility problem detected.
+ ///
+ internal static string CompatibilityProblemDetected {
+ get {
+ return ResourceManager.GetString("CompatibilityProblemDetected", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Compression.
+ ///
+ internal static string Compression {
+ get {
+ return ResourceManager.GetString("Compression", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Config.
+ ///
+ internal static string Config {
+ get {
+ return ResourceManager.GetString("Config", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to btnIcon_Click failed!.
+ ///
+ internal static string ConfigPropertyGridButtonIconClickFailed {
+ get {
+ return ResourceManager.GetString("ConfigPropertyGridButtonIconClickFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to ShowHideGridItems failed!.
+ ///
+ internal static string ConfigPropertyGridHideItemsFailed {
+ get {
+ return ResourceManager.GetString("ConfigPropertyGridHideItemsFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to IconMenu_Click failed!.
+ ///
+ internal static string ConfigPropertyGridMenuClickFailed {
+ get {
+ return ResourceManager.GetString("ConfigPropertyGridMenuClickFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Property Grid object failed!.
+ ///
+ internal static string ConfigPropertyGridObjectFailed {
+ get {
+ return ResourceManager.GetString("ConfigPropertyGridObjectFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SetHostStatus failed!.
+ ///
+ internal static string ConfigPropertyGridSetHostStatusFailed {
+ get {
+ return ResourceManager.GetString("ConfigPropertyGridSetHostStatusFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to pGrid_PopertyValueChanged failed!.
+ ///
+ internal static string ConfigPropertyGridValueFailed {
+ get {
+ return ResourceManager.GetString("ConfigPropertyGridValueFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Config UI load failed!.
+ ///
+ internal static string ConfigUiLoadFailed {
+ get {
+ return ResourceManager.GetString("ConfigUiLoadFailed", 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 Are you sure you want to close all connections except for "{0}"?.
+ ///
+ internal static string ConfirmCloseConnectionOthersInstruction {
+ get {
+ return ResourceManager.GetString("ConfirmCloseConnectionOthersInstruction", 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 ConfirmCloseConnectionPanelMainInstruction {
+ get {
+ return ResourceManager.GetString("ConfirmCloseConnectionPanelMainInstruction", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Are you sure you want to delete the credential record, {0}?.
+ ///
+ internal static string ConfirmDeleteCredentialRecord {
+ get {
+ return ResourceManager.GetString("ConfirmDeleteCredentialRecord", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Are you sure you want to delete the external tool, "{0}"?.
+ ///
+ internal static string ConfirmDeleteExternalTool {
+ get {
+ return ResourceManager.GetString("ConfirmDeleteExternalTool", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Are you sure you want to delete the {0} selected external tools?.
+ ///
+ internal static string ConfirmDeleteExternalToolMultiple {
+ get {
+ return ResourceManager.GetString("ConfirmDeleteExternalToolMultiple", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Are you sure you want to delete the connection, "{0}"?.
+ ///
+ internal static string ConfirmDeleteNodeConnection {
+ get {
+ return ResourceManager.GetString("ConfirmDeleteNodeConnection", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Are you sure you want to delete the empty folder, "{0}"?.
+ ///
+ internal static string ConfirmDeleteNodeFolder {
+ get {
+ return ResourceManager.GetString("ConfirmDeleteNodeFolder", 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 ConfirmDeleteNodeFolderNotEmpty {
+ get {
+ return ResourceManager.GetString("ConfirmDeleteNodeFolderNotEmpty", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Do you want to close all open connections?.
+ ///
+ internal static string ConfirmExitMainInstruction {
+ get {
+ return ResourceManager.GetString("ConfirmExitMainInstruction", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Are you sure you want to reset the panels to their default layout?.
+ ///
+ internal static string ConfirmResetLayout {
+ get {
+ return ResourceManager.GetString("ConfirmResetLayout", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connect.
+ ///
+ internal static string Connect {
+ get {
+ return ResourceManager.GetString("Connect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connect in fullscreen mode.
+ ///
+ internal static string ConnectInFullscreen {
+ get {
+ return ResourceManager.GetString("ConnectInFullscreen", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connecting....
+ ///
+ internal static string Connecting {
+ get {
+ return ResourceManager.GetString("Connecting", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connect in View Only mode.
+ ///
+ internal static string ConnectInViewOnlyMode {
+ get {
+ return ResourceManager.GetString("ConnectInViewOnlyMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connection.
+ ///
+ internal static string Connection {
+ get {
+ return ResourceManager.GetString("Connection", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Protocol Event Connected.
+ ///
+ internal static string ConnectionEventConnected {
+ get {
+ return ResourceManager.GetString("ConnectionEventConnected", 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 ConnectionEventConnectedDetail {
+ get {
+ return ResourceManager.GetString("ConnectionEventConnectedDetail", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to A connection protocol error occurred. Host: "{1}"; Error code: "{2}"; Error Description: "{0}".
+ ///
+ internal static string ConnectionEventErrorOccured {
+ get {
+ return ResourceManager.GetString("ConnectionEventErrorOccured", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connection failed!.
+ ///
+ internal static string ConnectionFailed {
+ get {
+ return ResourceManager.GetString("ConnectionFailed", 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 Opening connection failed!.
+ ///
+ internal static string ConnectionOpenFailed {
+ get {
+ return ResourceManager.GetString("ConnectionOpenFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cannot open connection: No hostname specified!.
+ ///
+ internal static string ConnectionOpenFailedNoHostname {
+ get {
+ return ResourceManager.GetString("ConnectionOpenFailedNoHostname", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connection Panels.
+ ///
+ internal static string ConnectionPanels {
+ get {
+ return ResourceManager.GetString("ConnectionPanels", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connections.
+ ///
+ internal static string Connections {
+ get {
+ return ResourceManager.GetString("Connections", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Daily.
+ ///
+ internal static string ConnectionsBackupFrequencyDaily {
+ get {
+ return ResourceManager.GetString("ConnectionsBackupFrequencyDaily", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Never backup connections.
+ ///
+ internal static string ConnectionsBackupFrequencyNever {
+ get {
+ return ResourceManager.GetString("ConnectionsBackupFrequencyNever", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to On Edit.
+ ///
+ internal static string ConnectionsBackupFrequencyOnEdit {
+ get {
+ return ResourceManager.GetString("ConnectionsBackupFrequencyOnEdit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to On Exit.
+ ///
+ internal static string ConnectionsBackupFrequencyOnExit {
+ get {
+ return ResourceManager.GetString("ConnectionsBackupFrequencyOnExit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Weekly.
+ ///
+ internal static string ConnectionsBackupFrequencyWeekly {
+ get {
+ return ResourceManager.GetString("ConnectionsBackupFrequencyWeekly", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Couldn't set default port!.
+ ///
+ internal static string ConnectionSetDefaultPortFailed {
+ get {
+ return ResourceManager.GetString("ConnectionSetDefaultPortFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Couldn't create backup of connections file!.
+ ///
+ internal static string ConnectionsFileBackupFailed {
+ get {
+ return ResourceManager.GetString("ConnectionsFileBackupFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connections file "{0}" could not be loaded!.
+ ///
+ internal static string ConnectionsFileCouldNotBeLoaded {
+ get {
+ return ResourceManager.GetString("ConnectionsFileCouldNotBeLoaded", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connections file "{0}" could not be loaded!
+ ///Starting with new connections file..
+ ///
+ internal static string ConnectionsFileCouldNotBeLoadedNew {
+ get {
+ return ResourceManager.GetString("ConnectionsFileCouldNotBeLoadedNew", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Couldn't save connections file as "{0}"!.
+ ///
+ internal static string ConnectionsFileCouldNotSaveAs {
+ get {
+ return ResourceManager.GetString("ConnectionsFileCouldNotSaveAs", 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 Connect without credentials.
+ ///
+ internal static string ConnectNoCredentials {
+ get {
+ return ResourceManager.GetString("ConnectNoCredentials", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connect to console session.
+ ///
+ internal static string ConnectToConsoleSession {
+ get {
+ return ResourceManager.GetString("ConnectToConsoleSession", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connect (with options).
+ ///
+ internal static string ConnectWithOptions {
+ get {
+ return ResourceManager.GetString("ConnectWithOptions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connection to {0} via {1} closed by user {2}..
+ ///
+ internal static string ConnenctionClosedByUser {
+ get {
+ return ResourceManager.GetString("ConnenctionClosedByUser", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connection Event Closed.
+ ///
+ internal static string ConnenctionCloseEvent {
+ get {
+ return ResourceManager.GetString("ConnenctionCloseEvent", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connection Event Closed failed!.
+ ///
+ internal static string ConnenctionCloseEventFailed {
+ get {
+ return ResourceManager.GetString("ConnenctionCloseEventFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Copy.
+ ///
+ internal static string Copy {
+ get {
+ return ResourceManager.GetString("Copy", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Copy All.
+ ///
+ internal static string CopyAll {
+ get {
+ return ResourceManager.GetString("CopyAll", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Copy Hostname.
+ ///
+ internal static string CopyHostname {
+ get {
+ return ResourceManager.GetString("CopyHostname", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Couldn't create new connections file!.
+ ///
+ internal static string CouldNotCreateNewConnectionsFile {
+ get {
+ return ResourceManager.GetString("CouldNotCreateNewConnectionsFile", 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 Could not find ToolStrip control in FilteredPropertyGrid..
+ ///
+ internal static string CouldNotFindToolStripInFilteredPropertyGrid {
+ get {
+ return ResourceManager.GetString("CouldNotFindToolStripInFilteredPropertyGrid", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Create an empty panel when mRemoteNG starts.
+ ///
+ internal static string CreateEmptyPanelOnStartUp {
+ get {
+ return ResourceManager.GetString("CreateEmptyPanelOnStartUp", 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 Credits.
+ ///
+ internal static string Credits {
+ get {
+ return ResourceManager.GetString("Credits", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ctrl-Alt-Del.
+ ///
+ internal static string CtrlAltDel {
+ get {
+ return ResourceManager.GetString("CtrlAltDel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ctrl-Esc.
+ ///
+ internal static string CtrlEsc {
+ get {
+ return ResourceManager.GetString("CtrlEsc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Daily.
+ ///
+ internal static string Daily {
+ get {
+ return ResourceManager.GetString("Daily", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Database:.
+ ///
+ internal static string Database {
+ get {
+ return ResourceManager.GetString("Database", 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 Debug.
+ ///
+ internal static string Debug {
+ get {
+ return ResourceManager.GetString("Debug", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Delete.
+ ///
+ internal static string Delete {
+ get {
+ return ResourceManager.GetString("Delete", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Delete All.
+ ///
+ internal static string DeleteAll {
+ get {
+ return ResourceManager.GetString("DeleteAll", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Delete External Tool....
+ ///
+ internal static string DeleteExternalTool {
+ get {
+ return ResourceManager.GetString("DeleteExternalTool", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Description.
+ ///
+ internal static string Description {
+ get {
+ return ResourceManager.GetString("Description", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Detect.
+ ///
+ internal static string Detect {
+ get {
+ return ResourceManager.GetString("Detect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Disable Cursor blinking.
+ ///
+ internal static string DisableCursorBlinking {
+ get {
+ return ResourceManager.GetString("DisableCursorBlinking", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Disable Cursor Shadow.
+ ///
+ internal static string DisableCursorShadow {
+ get {
+ return ResourceManager.GetString("DisableCursorShadow", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Disable Full Window drag.
+ ///
+ internal static string DisableFullWindowDrag {
+ get {
+ return ResourceManager.GetString("DisableFullWindowDrag", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Disable Menu Animations.
+ ///
+ internal static string DisableMenuAnimations {
+ get {
+ return ResourceManager.GetString("DisableMenuAnimations", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Disconnect.
+ ///
+ internal static string Disconnect {
+ get {
+ return ResourceManager.GetString("Disconnect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Disconnect All But This.
+ ///
+ internal static string DisconnectOthers {
+ get {
+ return ResourceManager.GetString("DisconnectOthers", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Disconnect Tabs To The Right.
+ ///
+ internal static string DisconnectOthersRight {
+ get {
+ return ResourceManager.GetString("DisconnectOthersRight", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Disk Drives.
+ ///
+ internal static string DiskDrives {
+ get {
+ return ResourceManager.GetString("DiskDrives", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Display.
+ ///
+ internal static string Display {
+ get {
+ return ResourceManager.GetString("Display", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Display Name.
+ ///
+ internal static string DisplayName {
+ get {
+ return ResourceManager.GetString("DisplayName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Display Themes.
+ ///
+ internal static string DisplayThemes {
+ get {
+ return ResourceManager.GetString("DisplayThemes", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Display Wallpaper.
+ ///
+ internal static string DisplayWallpaper {
+ get {
+ return ResourceManager.GetString("DisplayWallpaper", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Domain.
+ ///
+ internal static string Domain {
+ get {
+ return ResourceManager.GetString("Domain", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Donate.
+ ///
+ internal static string Donate {
+ get {
+ return ResourceManager.GetString("Donate", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Do not play.
+ ///
+ internal static string DoNotPlay {
+ get {
+ return ResourceManager.GetString("DoNotPlay", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Do not trim spaces from usernames.
+ ///
+ internal static string DoNotTrimUsername {
+ get {
+ return ResourceManager.GetString("DoNotTrimUsername", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Don't connect to console session.
+ ///
+ internal static string DontConnectToConsoleSession {
+ get {
+ return ResourceManager.GetString("DontConnectToConsoleSession", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Don't connect if authentication fails.
+ ///
+ internal static string DontConnectWhenAuthFails {
+ get {
+ return ResourceManager.GetString("DontConnectWhenAuthFails", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Double click on tab closes it.
+ ///
+ internal static string DoubleClickTabClosesIt {
+ get {
+ return ResourceManager.GetString("DoubleClickTabClosesIt", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Download.
+ ///
+ internal static string Download {
+ get {
+ return ResourceManager.GetString("Download", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Download and Install.
+ ///
+ internal static string DownloadAndInstall {
+ get {
+ return ResourceManager.GetString("DownloadAndInstall", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Duplicate.
+ ///
+ internal static string Duplicate {
+ get {
+ return ResourceManager.GetString("Duplicate", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Duplicate Tab.
+ ///
+ internal static string DuplicateTab {
+ get {
+ return ResourceManager.GetString("DuplicateTab", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Dynamic.
+ ///
+ internal static string Dynamic {
+ get {
+ return ResourceManager.GetString("Dynamic", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Do you want to continue with no password?.
+ ///
+ internal static string EmptyPasswordContinue {
+ get {
+ return ResourceManager.GetString("EmptyPasswordContinue", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to For empty Username, Password or Domain fields use:.
+ ///
+ internal static string EmptyUsernamePasswordDomainFields {
+ get {
+ return ResourceManager.GetString("EmptyUsernamePasswordDomainFields", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Desktop Composition.
+ ///
+ internal static string EnableDesktopComposition {
+ get {
+ return ResourceManager.GetString("EnableDesktopComposition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Encoding.
+ ///
+ internal static string Encoding {
+ get {
+ return ResourceManager.GetString("Encoding", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Completely encrypt connection file.
+ ///
+ internal static string EncryptCompleteConnectionFile {
+ get {
+ return ResourceManager.GetString("EncryptCompleteConnectionFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Block Cipher Mode.
+ ///
+ internal static string EncryptionBlockCipherMode {
+ get {
+ return ResourceManager.GetString("EncryptionBlockCipherMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Encryption Engine.
+ ///
+ internal static string EncryptionEngine {
+ get {
+ return ResourceManager.GetString("EncryptionEngine", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Key Derivation Function Iterations.
+ ///
+ internal static string EncryptionKeyDerivationIterations {
+ get {
+ return ResourceManager.GetString("EncryptionKeyDerivationIterations", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Encryption Test.
+ ///
+ internal static string EncryptionTest {
+ get {
+ return ResourceManager.GetString("EncryptionTest", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Encrypting {0} entries using {1}/{2} and {3} iterations took {4} seconds..
+ ///
+ internal static string EncryptionTestResultMessage {
+ get {
+ return ResourceManager.GetString("EncryptionTestResultMessage", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Environment.
+ ///
+ internal static string Environment {
+ get {
+ return ResourceManager.GetString("Environment", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to AddExternalToolsToToolBar (frmMain) failed. {0}.
+ ///
+ internal static string ErrorAddExternalToolsToToolBarFailed {
+ get {
+ return ResourceManager.GetString("ErrorAddExternalToolsToToolBarFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to AddFolder (UI.Window.ConnectionTreeWindow) failed. {0}.
+ ///
+ internal static string ErrorAddFolderFailed {
+ get {
+ return ResourceManager.GetString("ErrorAddFolderFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The database version {0} is not compatible with this version of {1}..
+ ///
+ internal static string ErrorBadDatabaseVersion {
+ get {
+ return ResourceManager.GetString("ErrorBadDatabaseVersion", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The connection list could not be saved..
+ ///
+ internal static string ErrorConnectionListSaveFailed {
+ get {
+ return ResourceManager.GetString("ErrorConnectionListSaveFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PuTTY could not be launched..
+ ///
+ internal static string ErrorCouldNotLaunchPutty {
+ get {
+ return ResourceManager.GetString("ErrorCouldNotLaunchPutty", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Decryption failed. {0}.
+ ///
+ internal static string ErrorDecryptionFailed {
+ get {
+ return ResourceManager.GetString("ErrorDecryptionFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Encryption failed. {0}.
+ ///
+ internal static string ErrorEncryptionFailed {
+ get {
+ return ResourceManager.GetString("ErrorEncryptionFailed", 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 ErrorFipsPolicyIncompatible {
+ get {
+ return ResourceManager.GetString("ErrorFipsPolicyIncompatible", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Errors.
+ ///
+ internal static string Errors {
+ get {
+ return ResourceManager.GetString("Errors", 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 ErrorStartupConnectionFileLoad {
+ get {
+ return ResourceManager.GetString("ErrorStartupConnectionFileLoad", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VerifyDatabaseVersion (Config.Connections.Save) failed. {0}.
+ ///
+ internal static string ErrorVerifyDatabaseVersionFailed {
+ get {
+ return ResourceManager.GetString("ErrorVerifyDatabaseVersionFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This exception will force mRemoteNG to close.
+ ///
+ internal static string ExceptionForcesmRemoteNGToClose {
+ get {
+ return ResourceManager.GetString("ExceptionForcesmRemoteNGToClose", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Exception Message.
+ ///
+ internal static string ExceptionMessage {
+ get {
+ return ResourceManager.GetString("ExceptionMessage", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Exit.
+ ///
+ internal static string Exit {
+ get {
+ return ResourceManager.GetString("Exit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Expand all folders.
+ ///
+ internal static string ExpandAllFolders {
+ get {
+ return ResourceManager.GetString("ExpandAllFolders", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Experimental.
+ ///
+ internal static string Experimental {
+ get {
+ return ResourceManager.GetString("Experimental", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Export.
+ ///
+ internal static string Export {
+ get {
+ return ResourceManager.GetString("Export", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Export everything.
+ ///
+ internal static string ExportEverything {
+ get {
+ return ResourceManager.GetString("ExportEverything", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Export File.
+ ///
+ internal static string ExportFile {
+ get {
+ return ResourceManager.GetString("ExportFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Export Items.
+ ///
+ internal static string ExportItems {
+ get {
+ return ResourceManager.GetString("ExportItems", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Export Properties.
+ ///
+ internal static string ExportProperties {
+ get {
+ return ResourceManager.GetString("ExportProperties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Export the currently selected connection.
+ ///
+ internal static string ExportSelectedConnection {
+ get {
+ return ResourceManager.GetString("ExportSelectedConnection", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Export the currently selected folder.
+ ///
+ internal static string ExportSelectedFolder {
+ get {
+ return ResourceManager.GetString("ExportSelectedFolder", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to External Tool.
+ ///
+ internal static string ExternalTool {
+ get {
+ return ResourceManager.GetString("ExternalTool", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to External Tool After.
+ ///
+ internal static string ExternalToolAfter {
+ get {
+ return ResourceManager.GetString("ExternalToolAfter", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to External Tool Before.
+ ///
+ internal static string ExternalToolBefore {
+ get {
+ return ResourceManager.GetString("ExternalToolBefore", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to New External Tool.
+ ///
+ internal static string ExternalToolDefaultName {
+ get {
+ return ResourceManager.GetString("ExternalToolDefaultName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to External Tool Properties.
+ ///
+ internal static string ExternalToolProperties {
+ get {
+ return ResourceManager.GetString("ExternalToolProperties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to External Tools Toolbar.
+ ///
+ internal static string ExternalToolsToolbar {
+ get {
+ return ResourceManager.GetString("ExternalToolsToolbar", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Favorite.
+ ///
+ internal static string Favorite {
+ get {
+ return ResourceManager.GetString("Favorite", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Favorites.
+ ///
+ internal static string Favorites {
+ get {
+ return ResourceManager.GetString("Favorites", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to File &Format:.
+ ///
+ internal static string FileFormat {
+ get {
+ return ResourceManager.GetString("FileFormat", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Filename.
+ ///
+ internal static string Filename {
+ get {
+ return ResourceManager.GetString("Filename", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Files.
+ ///
+ internal static string Files {
+ get {
+ return ResourceManager.GetString("Files", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to All Files (*.*).
+ ///
+ internal static string FilterAll {
+ get {
+ return ResourceManager.GetString("FilterAll", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to All importable files.
+ ///
+ internal static string FilterAllImportable {
+ get {
+ return ResourceManager.GetString("FilterAllImportable", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Application Files (*.exe).
+ ///
+ internal static string FilterApplication {
+ get {
+ return ResourceManager.GetString("FilterApplication", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mRemote CSV Files (*.csv).
+ ///
+ internal static string FiltermRemoteCSV {
+ get {
+ return ResourceManager.GetString("FiltermRemoteCSV", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mRemote XML Files (*.xml).
+ ///
+ internal static string FiltermRemoteXML {
+ get {
+ return ResourceManager.GetString("FiltermRemoteXML", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PuTTY Connection Manager files.
+ ///
+ internal static string FilterPuttyConnectionManager {
+ get {
+ return ResourceManager.GetString("FilterPuttyConnectionManager", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Remote Desktop Connection Manager files (*.rdg).
+ ///
+ internal static string FilterRdgFiles {
+ get {
+ return ResourceManager.GetString("FilterRdgFiles", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP Files (*.rdp).
+ ///
+ internal static string FilterRDP {
+ get {
+ return ResourceManager.GetString("FilterRDP", 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 First IP.
+ ///
+ internal static string FirstIp {
+ get {
+ return ResourceManager.GetString("FirstIp", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to First Port.
+ ///
+ internal static string FirstPort {
+ get {
+ return ResourceManager.GetString("FirstPort", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Fit To Panel.
+ ///
+ internal static string FitToPanel {
+ get {
+ return ResourceManager.GetString("FitToPanel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Font Smoothing.
+ ///
+ internal static string FontSmoothing {
+ get {
+ return ResourceManager.GetString("FontSmoothing", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Inherit {0}.
+ ///
+ internal static string FormatInherit {
+ get {
+ return ResourceManager.GetString("FormatInherit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Description of inherited property: {0}.
+ ///
+ internal static string FormatInheritDescription {
+ get {
+ return ResourceManager.GetString("FormatInheritDescription", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Free.
+ ///
+ internal static string Free {
+ get {
+ return ResourceManager.GetString("Free", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Fullscreen.
+ ///
+ internal static string Fullscreen {
+ get {
+ return ResourceManager.GetString("Fullscreen", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Gateway.
+ ///
+ internal static string Gateway {
+ get {
+ return ResourceManager.GetString("Gateway", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to General.
+ ///
+ internal static string General {
+ get {
+ return ResourceManager.GetString("General", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to An error occured while loading the connection entry for "{0}" from "{1}". {2}.
+ ///
+ internal static string GetConnectionInfoFromXmlFailed {
+ get {
+ return ResourceManager.GetString("GetConnectionInfoFromXmlFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Automatic Reconnect.
+ ///
+ internal static string GroupboxAutomaticReconnect {
+ get {
+ return ResourceManager.GetString("GroupboxAutomaticReconnect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mRemoteNG Help.
+ ///
+ internal static string HelpContents {
+ get {
+ return ResourceManager.GetString("HelpContents", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to High.
+ ///
+ internal static string High {
+ get {
+ return ResourceManager.GetString("High", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Host.
+ ///
+ internal static string Host {
+ get {
+ return ResourceManager.GetString("Host", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hostname:.
+ ///
+ internal static string Hostname {
+ get {
+ return ResourceManager.GetString("Hostname", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Hostname/IP.
+ ///
+ internal static string HostnameIp {
+ get {
+ return ResourceManager.GetString("HostnameIp", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HTTP.
+ ///
+ internal static string Http {
+ get {
+ return ResourceManager.GetString("Http", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Edge Chromium.
+ ///
+ internal static string HttpCEF {
+ get {
+ return ResourceManager.GetString("HttpCEF", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HTTP Connect Failed!.
+ ///
+ internal static string HttpConnectFailed {
+ get {
+ return ResourceManager.GetString("HttpConnectFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Couldn't create new HTTP Connection!.
+ ///
+ internal static string HttpConnectionFailed {
+ get {
+ return ResourceManager.GetString("HttpConnectionFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Changing HTTP Document Tile Failed!.
+ ///
+ internal static string HttpDocumentTileChangeFailed {
+ get {
+ return ResourceManager.GetString("HttpDocumentTileChangeFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Failed to contruct the URL to load.
+ ///
+ internal static string HttpFailedUrlBuild {
+ get {
+ return ResourceManager.GetString("HttpFailedUrlBuild", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Internet Explorer.
+ ///
+ internal static string HttpInternetExplorer {
+ get {
+ return ResourceManager.GetString("HttpInternetExplorer", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HTTPS.
+ ///
+ internal static string Https {
+ get {
+ return ResourceManager.GetString("Https", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Set HTTP Props failed!.
+ ///
+ internal static string HttpSetPropsFailed {
+ get {
+ return ResourceManager.GetString("HttpSetPropsFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Icon.
+ ///
+ internal static string Icon {
+ get {
+ return ResourceManager.GetString("Icon", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Identify quick connect tabs by adding the prefix "Quick:".
+ ///
+ internal static string IdentifyQuickConnectTabs {
+ get {
+ return ResourceManager.GetString("IdentifyQuickConnectTabs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Import from Active Directory.
+ ///
+ internal static string ImportAD {
+ get {
+ return ResourceManager.GetString("ImportAD", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to An error occurred while importing the file "{0}"..
+ ///
+ internal static string ImportFileFailedContent {
+ get {
+ return ResourceManager.GetString("ImportFileFailedContent", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Import from &File....
+ ///
+ internal static string ImportFromFile {
+ get {
+ return ResourceManager.GetString("ImportFromFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Import from Port Scan.
+ ///
+ internal static string ImportPortScan {
+ get {
+ return ResourceManager.GetString("ImportPortScan", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Import sub OUs.
+ ///
+ internal static string ImportSubOUs {
+ get {
+ return ResourceManager.GetString("ImportSubOUs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Informations.
+ ///
+ internal static string Informations {
+ get {
+ return ResourceManager.GetString("Informations", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Inheritance.
+ ///
+ internal static string Inheritance {
+ get {
+ return ResourceManager.GetString("Inheritance", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Dispose of Int App process failed!.
+ ///
+ internal static string IntAppDisposeFailed {
+ get {
+ return ResourceManager.GetString("IntAppDisposeFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Int App Focus Failed!.
+ ///
+ internal static string IntAppFocusFailed {
+ get {
+ return ResourceManager.GetString("IntAppFocusFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Int App Handle: {0}.
+ ///
+ internal static string IntAppHandle {
+ get {
+ return ResourceManager.GetString("IntAppHandle", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Killing Int App Process failed!.
+ ///
+ internal static string IntAppKillFailed {
+ get {
+ return ResourceManager.GetString("IntAppKillFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Int App Resize failed!.
+ ///
+ internal static string IntAppResizeFailed {
+ get {
+ return ResourceManager.GetString("IntAppResizeFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to --- IntApp Stuff ---.
+ ///
+ internal static string IntAppStuff {
+ get {
+ return ResourceManager.GetString("IntAppStuff", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Int App Title: {0}.
+ ///
+ internal static string IntAppTitle {
+ get {
+ return ResourceManager.GetString("IntAppTitle", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to (Automatically Detect).
+ ///
+ internal static string LanguageDefault {
+ get {
+ return ResourceManager.GetString("LanguageDefault", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to {0} must be restarted before changes to the language will take effect..
+ ///
+ internal static string LanguageRestartRequired {
+ get {
+ return ResourceManager.GetString("LanguageRestartRequired", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Language.
+ ///
+ internal static string LanguageString {
+ get {
+ return ResourceManager.GetString("LanguageString", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Last IP.
+ ///
+ internal static string LastIp {
+ get {
+ return ResourceManager.GetString("LastIp", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Last Port.
+ ///
+ internal static string LastPort {
+ get {
+ return ResourceManager.GetString("LastPort", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Launch External Tool.
+ ///
+ internal static string LaunchExternalTool {
+ get {
+ return ResourceManager.GetString("LaunchExternalTool", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to License.
+ ///
+ internal static string License {
+ get {
+ return ResourceManager.GetString("License", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Load Balance Info.
+ ///
+ internal static string LoadBalanceInfo {
+ get {
+ return ResourceManager.GetString("LoadBalanceInfo", 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 Load from SQL failed.
+ ///
+ internal static string LoadFromSqlFailed {
+ get {
+ return ResourceManager.GetString("LoadFromSqlFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The connection information could not be loaded from the SQL server..
+ ///
+ internal static string LoadFromSqlFailedContent {
+ get {
+ return ResourceManager.GetString("LoadFromSqlFailedContent", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Load From XML failed!.
+ ///
+ internal static string LoadFromXmlFailed {
+ get {
+ return ResourceManager.GetString("LoadFromXmlFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Local file.
+ ///
+ internal static string LocalFile {
+ get {
+ return ResourceManager.GetString("LocalFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Local file does not exist!.
+ ///
+ internal static string LocalFileDoesNotExist {
+ get {
+ return ResourceManager.GetString("LocalFileDoesNotExist", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Lock toolbar positions.
+ ///
+ internal static string LockToolbars {
+ get {
+ return ResourceManager.GetString("LockToolbars", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Log file path.
+ ///
+ internal static string LogFilePath {
+ get {
+ return ResourceManager.GetString("LogFilePath", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Logging.
+ ///
+ internal static string Logging {
+ get {
+ return ResourceManager.GetString("Logging", 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 Log these message types.
+ ///
+ internal static string LogTheseMessageTypes {
+ get {
+ return ResourceManager.GetString("LogTheseMessageTypes", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Log to application directory.
+ ///
+ internal static string LogToAppDir {
+ get {
+ return ResourceManager.GetString("LogToAppDir", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to MAC Address.
+ ///
+ internal static string MacAddress {
+ get {
+ return ResourceManager.GetString("MacAddress", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Medium.
+ ///
+ internal static string Medium {
+ get {
+ return ResourceManager.GetString("Medium", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Message.
+ ///
+ internal static string Message {
+ get {
+ return ResourceManager.GetString("Message", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Minimize to notification area.
+ ///
+ internal static string MinimizeToSysTray {
+ get {
+ return ResourceManager.GetString("MinimizeToSysTray", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Minutes to Idle.
+ ///
+ internal static string MinutesToIdleTimeout {
+ get {
+ return ResourceManager.GetString("MinutesToIdleTimeout", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Miscellaneous.
+ ///
+ internal static string Miscellaneous {
+ get {
+ return ResourceManager.GetString("Miscellaneous", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Monthly.
+ ///
+ internal static string Monthly {
+ get {
+ return ResourceManager.GetString("Monthly", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Move down.
+ ///
+ internal static string MoveDown {
+ get {
+ return ResourceManager.GetString("MoveDown", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Move up.
+ ///
+ internal static string MoveUp {
+ get {
+ return ResourceManager.GetString("MoveUp", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mRemoteNG CSV.
+ ///
+ internal static string MremoteNgCsv {
+ get {
+ return ResourceManager.GetString("MremoteNgCsv", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mRemoteNG Unhandled Exception.
+ ///
+ internal static string mRemoteNGUnhandledException {
+ get {
+ return ResourceManager.GetString("mRemoteNGUnhandledException", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mRemoteNG XML.
+ ///
+ internal static string MremoteNgXml {
+ get {
+ return ResourceManager.GetString("MremoteNgXml", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Multi SSH:.
+ ///
+ internal static string MultiSsh {
+ get {
+ return ResourceManager.GetString("MultiSsh", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Multi SSH toolbar.
+ ///
+ internal static string MultiSshToolbar {
+ get {
+ return ResourceManager.GetString("MultiSshToolbar", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Press ENTER to send. Ctrl+C is sent immediately..
+ ///
+ internal static string MultiSshToolTip {
+ get {
+ return ResourceManager.GetString("MultiSshToolTip", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Must Be Between 0 and 255.
+ ///
+ internal static string MustBeBetween0And255 {
+ get {
+ return ResourceManager.GetString("MustBeBetween0And255", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to My current credentials (Windows logon information).
+ ///
+ internal static string MyCurrentWindowsCreds {
+ get {
+ return ResourceManager.GetString("MyCurrentWindowsCreds", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Name.
+ ///
+ internal static string Name {
+ get {
+ return ResourceManager.GetString("Name", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Never.
+ ///
+ internal static string Never {
+ get {
+ return ResourceManager.GetString("Never", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to New Connection.
+ ///
+ internal static string NewConnection {
+ get {
+ return ResourceManager.GetString("NewConnection", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to New Connection File.
+ ///
+ internal static string NewConnectionFile {
+ get {
+ return ResourceManager.GetString("NewConnectionFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to New External Tool.
+ ///
+ internal static string NewExternalTool {
+ get {
+ return ResourceManager.GetString("NewExternalTool", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to New Folder.
+ ///
+ internal static string NewFolder {
+ get {
+ return ResourceManager.GetString("NewFolder", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to New Panel.
+ ///
+ internal static string NewPanel {
+ get {
+ return ResourceManager.GetString("NewPanel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to New Title.
+ ///
+ internal static string NewTitle {
+ get {
+ return ResourceManager.GetString("NewTitle", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to No.
+ ///
+ internal static string No {
+ get {
+ return ResourceManager.GetString("No", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to No сompression.
+ ///
+ internal static string NoCompression {
+ get {
+ return ResourceManager.GetString("NoCompression", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This node is already in this folder..
+ ///
+ internal static string NodeAlreadyInFolder {
+ get {
+ return ResourceManager.GetString("NodeAlreadyInFolder", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cannot drag node onto itself..
+ ///
+ internal static string NodeCannotDragOnSelf {
+ get {
+ return ResourceManager.GetString("NodeCannotDragOnSelf", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cannot drag parent node onto child..
+ ///
+ internal static string NodeCannotDragParentOnChild {
+ get {
+ return ResourceManager.GetString("NodeCannotDragParentOnChild", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This node is not draggable..
+ ///
+ internal static string NodeNotDraggable {
+ get {
+ return ResourceManager.GetString("NodeNotDraggable", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to No ext. app specified..
+ ///
+ internal static string NoExtAppDefined {
+ get {
+ return ResourceManager.GetString("NoExtAppDefined", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to None.
+ ///
+ internal static string None {
+ get {
+ return ResourceManager.GetString("None", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Normal.
+ ///
+ internal static string Normal {
+ get {
+ return ResourceManager.GetString("Normal", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to No SmartSize.
+ ///
+ internal static string NoSmartSize {
+ get {
+ return ResourceManager.GetString("NoSmartSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Notifications.
+ ///
+ internal static string Notifications {
+ get {
+ return ResourceManager.GetString("Notifications", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to No update available.
+ ///
+ internal static string NoUpdateAvailable {
+ get {
+ return ResourceManager.GetString("NoUpdateAvailable", 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 OldConffile {
+ get {
+ return ResourceManager.GetString("OldConffile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Open a different file.
+ ///
+ internal static string OpenADifferentFile {
+ get {
+ return ResourceManager.GetString("OpenADifferentFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Open Connection File....
+ ///
+ internal static string OpenConnectionFile {
+ get {
+ return ResourceManager.GetString("OpenConnectionFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Open file.
+ ///
+ internal static string OpenFile {
+ get {
+ return ResourceManager.GetString("OpenFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Opening Command.
+ ///
+ internal static string OpeningCommand {
+ get {
+ return ResourceManager.GetString("OpeningCommand", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Open new tab to the right of the currently selected tab.
+ ///
+ internal static string OpenNewTabRight {
+ get {
+ return ResourceManager.GetString("OpenNewTabRight", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Open Ports.
+ ///
+ internal static string OpenPorts {
+ get {
+ return ResourceManager.GetString("OpenPorts", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Options.
+ ///
+ internal static string Options {
+ get {
+ return ResourceManager.GetString("Options", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mRemoteNG Options.
+ ///
+ internal static string OptionsPageTitle {
+ get {
+ return ResourceManager.GetString("OptionsPageTitle", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Testing....
+ ///
+ internal static string OptionsProxyTesting {
+ get {
+ return ResourceManager.GetString("OptionsProxyTesting", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Warning: Restart is required to commit any theme configuration change..
+ ///
+ internal static string OptionsThemeChangeWarning {
+ get {
+ return ResourceManager.GetString("OptionsThemeChangeWarning", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Do you really want to delete the theme?.
+ ///
+ internal static string OptionsThemeDeleteConfirmation {
+ get {
+ return ResourceManager.GetString("OptionsThemeDeleteConfirmation", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to New theme name.
+ ///
+ internal static string OptionsThemeNewThemeCaption {
+ get {
+ return ResourceManager.GetString("OptionsThemeNewThemeCaption", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Cannot create theme, name already present or special characters in the name.
+ ///
+ internal static string OptionsThemeNewThemeError {
+ get {
+ return ResourceManager.GetString("OptionsThemeNewThemeError", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Type the new theme name.
+ ///
+ internal static string OptionsThemeNewThemeText {
+ get {
+ return ResourceManager.GetString("OptionsThemeNewThemeText", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Out Of Range.
+ ///
+ internal static string OutOfRange {
+ get {
+ return ResourceManager.GetString("OutOfRange", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Panel.
+ ///
+ internal static string Panel {
+ get {
+ return ResourceManager.GetString("Panel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Panel Handle: {0}.
+ ///
+ internal static string PanelHandle {
+ get {
+ return ResourceManager.GetString("PanelHandle", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Panel Name.
+ ///
+ internal static string PanelName {
+ get {
+ return ResourceManager.GetString("PanelName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Password.
+ ///
+ internal static string Password {
+ get {
+ return ResourceManager.GetString("Password", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Password must contain at least {0} of the following characters: {1}.
+ ///
+ internal static string PasswordConstainsSpecialCharactersConstraintHint {
+ get {
+ return ResourceManager.GetString("PasswordConstainsSpecialCharactersConstraintHint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Password must contain at least {0} lower case character(s).
+ ///
+ internal static string PasswordContainsLowerCaseConstraintHint {
+ get {
+ return ResourceManager.GetString("PasswordContainsLowerCaseConstraintHint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Password must contain at least {0} number(s).
+ ///
+ internal static string PasswordContainsNumbersConstraint {
+ get {
+ return ResourceManager.GetString("PasswordContainsNumbersConstraint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Password must contain at least {0} upper case character(s).
+ ///
+ internal static string PasswordContainsUpperCaseConstraintHint {
+ get {
+ return ResourceManager.GetString("PasswordContainsUpperCaseConstraintHint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Password length must be between {0} and {1}.
+ ///
+ internal static string PasswordLengthConstraintHint {
+ get {
+ return ResourceManager.GetString("PasswordLengthConstraintHint", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Password protect.
+ ///
+ internal static string PasswordProtect {
+ get {
+ return ResourceManager.GetString("PasswordProtect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Both passwords must match..
+ ///
+ internal static string PasswordStatusMustMatch {
+ get {
+ return ResourceManager.GetString("PasswordStatusMustMatch", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The password must be at least 3 characters long..
+ ///
+ internal static string PasswordStatusTooShort {
+ get {
+ return ResourceManager.GetString("PasswordStatusTooShort", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Place search bar above connection tree.
+ ///
+ internal static string PlaceSearchBarAboveConnectionTree {
+ get {
+ return ResourceManager.GetString("PlaceSearchBarAboveConnectionTree", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Please fill all fields.
+ ///
+ internal static string PleaseFillAllFields {
+ get {
+ return ResourceManager.GetString("PleaseFillAllFields", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Popups.
+ ///
+ internal static string Popups {
+ get {
+ return ResourceManager.GetString("Popups", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Port.
+ ///
+ internal static string Port {
+ get {
+ return ResourceManager.GetString("Port", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Portable Edition.
+ ///
+ internal static string PortableEdition {
+ get {
+ return ResourceManager.GetString("PortableEdition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ports.
+ ///
+ internal static string Ports {
+ get {
+ return ResourceManager.GetString("Ports", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Port Scan.
+ ///
+ internal static string PortScan {
+ get {
+ return ResourceManager.GetString("PortScan", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Port scan complete..
+ ///
+ internal static string PortScanComplete {
+ get {
+ return ResourceManager.GetString("PortScanComplete", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Couldn't load PortScan panel!.
+ ///
+ internal static string PortScanCouldNotLoadPanel {
+ get {
+ return ResourceManager.GetString("PortScanCouldNotLoadPanel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PowerShell.
+ ///
+ internal static string PowerShell {
+ get {
+ return ResourceManager.GetString("PowerShell", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Printers.
+ ///
+ internal static string Printers {
+ get {
+ return ResourceManager.GetString("Printers", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Properties.
+ ///
+ internal static string Properties {
+ get {
+ return ResourceManager.GetString("Properties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Toggle all inheritance options..
+ ///
+ internal static string PropertyDescriptionAll {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionAll", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select which authentication level this connection should use..
+ ///
+ internal static string PropertyDescriptionAuthenticationLevel {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionAuthenticationLevel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select how you want to authenticate against the VNC server..
+ ///
+ internal static string PropertyDescriptionAuthenticationMode {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionAuthenticationMode", 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 PropertyDescriptionAutomaticResize {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionAutomaticResize", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select whether to use bitmap caching or not..
+ ///
+ internal static string PropertyDescriptionCacheBitmaps {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionCacheBitmaps", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select the colour quality to be used..
+ ///
+ internal static string PropertyDescriptionColors {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionColors", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select the compression value to be used..
+ ///
+ internal static string PropertyDescriptionCompression {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionCompression", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Put your notes or a description for the host here..
+ ///
+ internal static string PropertyDescriptionDescription {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionDescription", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Determines whether cursor flashes should be disabled..
+ ///
+ internal static string PropertyDescriptionDisableCursorBlinking {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionDisableCursorBlinking", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Determines whether a mouse shadow should be visible..
+ ///
+ internal static string PropertyDescriptionDisableCursorShadow {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionDisableCursorShadow", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Determines whether window content is displayed when you drag the window to a new location..
+ ///
+ internal static string PropertyDescriptionDisableFullWindowDrag {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionDisableFullWindowDrag", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Determines whether menus and windows can be displayed with animation effects in the remote session..
+ ///
+ internal static string PropertyDescriptionDisableMenuAnimations {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionDisableMenuAnimations", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select yes if the theme of the remote host should be displayed..
+ ///
+ internal static string PropertyDescriptionDisplayThemes {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionDisplayThemes", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select yes if the wallpaper of the remote host should be displayed..
+ ///
+ internal static string PropertyDescriptionDisplayWallpaper {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionDisplayWallpaper", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Enter your domain..
+ ///
+ internal static string PropertyDescriptionDomain {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionDomain", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select whether to use desktop composition or not..
+ ///
+ internal static string PropertyDescriptionEnableDesktopComposition {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionEnableDesktopComposition", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select whether to use font smoothing or not..
+ ///
+ internal static string PropertyDescriptionEnableFontSmoothing {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionEnableFontSmoothing", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select the encoding mode to be used..
+ ///
+ internal static string PropertyDescriptionEncoding {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionEncoding", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select the external tool to be started..
+ ///
+ internal static string PropertyDescriptionExternalTool {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionExternalTool", 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 PropertyDescriptionExternalToolAfter {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionExternalToolAfter", 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 PropertyDescriptionExternalToolBefore {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionExternalToolBefore", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show this connection in the favorites menu..
+ ///
+ internal static string PropertyDescriptionFavorite {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionFavorite", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Enter the hostname or ip you want to connect to..
+ ///
+ internal static string PropertyDescriptionHostnameIp {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionHostnameIp", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Choose a icon that will be displayed when connected to the host..
+ ///
+ internal static string PropertyDescriptionIcon {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionIcon", 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 PropertyDescriptionLoadBalanceInfo {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionLoadBalanceInfo", 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 PropertyDescriptionMACAddress {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionMACAddress", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to This is the name that will be displayed in the connections tree..
+ ///
+ internal static string PropertyDescriptionName {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to A command to run on the remote server after successfully connecting..
+ ///
+ internal static string PropertyDescriptionOpeningCommand {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionOpeningCommand", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sets the panel in which the connection will open..
+ ///
+ internal static string PropertyDescriptionPanel {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionPanel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Enter your password..
+ ///
+ internal static string PropertyDescriptionPassword {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionPassword", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Set a password needed to encrypt the connection file with. You will be prompted to enter your passcode before starting mRemoteNG..
+ ///
+ internal static string PropertyDescriptionPasswordProtect {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionPasswordProtect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Enter the port the selected protocol is listening on..
+ ///
+ internal static string PropertyDescriptionPort {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionPort", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Choose the protocol mRemoteNG should use to connect to the host..
+ ///
+ internal static string PropertyDescriptionProtocol {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionProtocol", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select a PuTTY session to be used when connecting..
+ ///
+ internal static string PropertyDescriptionPuttySession {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionPuttySession", 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 PropertyDescriptionRDGatewayDomain {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRDGatewayDomain", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Specifies the host name of the Remote Desktop Gateway server..
+ ///
+ internal static string PropertyDescriptionRDGatewayHostname {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRDGatewayHostname", 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 PropertyDescriptionRDGatewayUseConnectionCredentials {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRDGatewayUseConnectionCredentials", 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 PropertyDescriptionRDGatewayUsername {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRDGatewayUsername", 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 PropertyDescriptionRDPAlertIdleTimeout {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRDPAlertIdleTimeout", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Specifies the password of the Remote Desktop Gateway server..
+ ///
+ internal static string PropertyDescriptionRdpGatewayPassword {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRdpGatewayPassword", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Specifies when to use a Remote Desktop Gateway (RD Gateway) server..
+ ///
+ internal static string PropertyDescriptionRdpGatewayUsageMethod {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRdpGatewayUsageMethod", 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 PropertyDescriptionRDPMinutesToIdleTimeout {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRDPMinutesToIdleTimeout", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The program to be started on the remote server upon connection..
+ ///
+ internal static string PropertyDescriptionRDPStartProgram {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRDPStartProgram", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Specifies the working directory of the alternate shell..
+ ///
+ internal static string PropertyDescriptionRDPStartProgramWorkDir {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRDPStartProgramWorkDir", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sets the version of RDP to use when opening connections..
+ ///
+ internal static string PropertyDescriptionRdpVersion {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRdpVersion", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select whether the default audio input device on the remote machine should be redirected to this computer..
+ ///
+ internal static string PropertyDescriptionRedirectAudioCapture {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRedirectAudioCapture", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select whether the clipboard should be shared..
+ ///
+ internal static string PropertyDescriptionRedirectClipboard {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRedirectClipboard", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select whether local disk drives should be shown on the remote host..
+ ///
+ internal static string PropertyDescriptionRedirectDrives {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRedirectDrives", 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 PropertyDescriptionRedirectKeys {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRedirectKeys", 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 PropertyDescriptionRedirectPorts {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRedirectPorts", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select whether local printers should be shown on the remote host..
+ ///
+ internal static string PropertyDescriptionRedirectPrinters {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRedirectPrinters", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select whether local smart cards should be available on the remote host..
+ ///
+ internal static string PropertyDescriptionRedirectSmartCards {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRedirectSmartCards", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select how remote sound should be redirected..
+ ///
+ internal static string PropertyDescriptionRedirectSounds {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRedirectSounds", 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 PropertyDescriptionRenderingEngine {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionRenderingEngine", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Choose the resolution or mode this connection will open in..
+ ///
+ internal static string PropertyDescriptionResolution {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionResolution", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select the SmartSize mode to be used..
+ ///
+ internal static string PropertyDescriptionSmartSizeMode {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionSmartSizeMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Choose the Sound Quality provided by the protocol: Dynamic, Medium, High.
+ ///
+ internal static string PropertyDescriptionSoundQuality {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionSoundQuality", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Specify here additional options to be used for SSH connection. See putty documentation for further details..
+ ///
+ internal static string PropertyDescriptionSshOptions {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionSshOptions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to For connection through a SSH tunnel (jump host) specify SSH connection to be used to establish SSH tunnel..
+ ///
+ internal static string PropertyDescriptionSshTunnel {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionSshTunnel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Start Program/alternate shell.
+ ///
+ internal static string PropertyDescriptionStartProgram {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionStartProgram", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connect to the console session of the remote host..
+ ///
+ internal static string PropertyDescriptionUseConsoleSession {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionUseConsoleSession", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use the Credential Security Support Provider (CredSSP) for authentication if it is available..
+ ///
+ internal static string PropertyDescriptionUseCredSsp {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionUseCredSsp", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connect to a Hyper-V host with enhanced mode enabled..
+ ///
+ internal static string PropertyDescriptionUseEnhancedMode {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionUseEnhancedMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Feel free to enter any information you need here..
+ ///
+ internal static string PropertyDescriptionUser1 {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionUser1", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Enter your username..
+ ///
+ internal static string PropertyDescriptionUsername {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionUsername", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use VM ID to connect to VM running on Hyper-V..
+ ///
+ internal static string PropertyDescriptionUseVmId {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionUseVmId", 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 PropertyDescriptionViewOnly {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionViewOnly", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The ID of the Hyper-V virtual machine to connect to..
+ ///
+ internal static string PropertyDescriptionVmId {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionVmId", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Enter the proxy address to be used..
+ ///
+ internal static string PropertyDescriptionVNCProxyAddress {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionVNCProxyAddress", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Enter your password for authenticating against the proxy..
+ ///
+ internal static string PropertyDescriptionVNCProxyPassword {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionVNCProxyPassword", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Enter the port the proxy server listens on..
+ ///
+ internal static string PropertyDescriptionVNCProxyPort {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionVNCProxyPort", 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 PropertyDescriptionVNCProxyType {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionVNCProxyType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Enter your username for authenticating against the proxy..
+ ///
+ internal static string PropertyDescriptionVNCProxyUsername {
+ get {
+ return ResourceManager.GetString("PropertyDescriptionVNCProxyUsername", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Protocol.
+ ///
+ internal static string Protocol {
+ get {
+ return ResourceManager.GetString("Protocol", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Protocol Event Disconnected. Host: "{1}"; Protocol: "{2}" Message: "{0}".
+ ///
+ internal static string ProtocolEventDisconnected {
+ get {
+ return ResourceManager.GetString("ProtocolEventDisconnected", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Protocol Event Disconnected failed.
+ ///{0}.
+ ///
+ internal static string ProtocolEventDisconnectFailed {
+ get {
+ return ResourceManager.GetString("ProtocolEventDisconnectFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Protocol to import.
+ ///
+ internal static string ProtocolToImport {
+ get {
+ return ResourceManager.GetString("ProtocolToImport", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Proxy.
+ ///
+ internal static string Proxy {
+ get {
+ return ResourceManager.GetString("Proxy", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Proxy Address.
+ ///
+ internal static string ProxyAddress {
+ get {
+ return ResourceManager.GetString("ProxyAddress", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Proxy Password.
+ ///
+ internal static string ProxyPassword {
+ get {
+ return ResourceManager.GetString("ProxyPassword", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Proxy Port.
+ ///
+ internal static string ProxyPort {
+ get {
+ return ResourceManager.GetString("ProxyPort", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Proxy test failed!.
+ ///
+ internal static string ProxyTestFailed {
+ get {
+ return ResourceManager.GetString("ProxyTestFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Proxy test succeeded!.
+ ///
+ internal static string ProxyTestSucceeded {
+ get {
+ return ResourceManager.GetString("ProxyTestSucceeded", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Proxy Type.
+ ///
+ internal static string ProxyType {
+ get {
+ return ResourceManager.GetString("ProxyType", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Proxy Username.
+ ///
+ internal static string ProxyUsername {
+ get {
+ return ResourceManager.GetString("ProxyUsername", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Dispose of Putty process failed!.
+ ///
+ internal static string PuttyDisposeFailed {
+ get {
+ return ResourceManager.GetString("PuttyDisposeFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Couldn't set focus!.
+ ///
+ internal static string PuttyFocusFailed {
+ get {
+ return ResourceManager.GetString("PuttyFocusFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Putty Handle: {0}.
+ ///
+ internal static string PuttyHandle {
+ get {
+ return ResourceManager.GetString("PuttyHandle", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Killing Putty Process failed!.
+ ///
+ internal static string PuttyKillFailed {
+ get {
+ return ResourceManager.GetString("PuttyKillFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Putty Resize Failed!.
+ ///
+ internal static string PuttyResizeFailed {
+ get {
+ return ResourceManager.GetString("PuttyResizeFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PuTTY Saved Sessions.
+ ///
+ internal static string PuttySavedSessionsRootName {
+ get {
+ return ResourceManager.GetString("PuttySavedSessionsRootName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PuTTY Session.
+ ///
+ internal static string PuttySession {
+ get {
+ return ResourceManager.GetString("PuttySession", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to To configure PuTTY sessions click this button:.
+ ///
+ internal static string PuttySessionsConfig {
+ get {
+ return ResourceManager.GetString("PuttySessionsConfig", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PuTTY Settings.
+ ///
+ internal static string PuttySettings {
+ get {
+ return ResourceManager.GetString("PuttySettings", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show PuTTY Settings Dialog failed!.
+ ///
+ internal static string PuttyShowSettingsDialogFailed {
+ get {
+ return ResourceManager.GetString("PuttyShowSettingsDialogFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to --- PuTTY Stuff ---.
+ ///
+ internal static string PuttyStuff {
+ get {
+ return ResourceManager.GetString("PuttyStuff", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Maximum PuTTY and integrated external tools wait time:.
+ ///
+ internal static string PuttyTimeout {
+ get {
+ return ResourceManager.GetString("PuttyTimeout", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to PuTTY Title: {0}.
+ ///
+ internal static string PuttyTitle {
+ get {
+ return ResourceManager.GetString("PuttyTitle", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Quick: {0}.
+ ///
+ internal static string Quick {
+ get {
+ return ResourceManager.GetString("Quick", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Quick Connect.
+ ///
+ internal static string QuickConnect {
+ get {
+ return ResourceManager.GetString("QuickConnect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Quick Connect Add Failed!.
+ ///
+ internal static string QuickConnectAddFailed {
+ get {
+ return ResourceManager.GetString("QuickConnectAddFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Creating quick connect failed.
+ ///
+ internal static string QuickConnectFailed {
+ get {
+ return ResourceManager.GetString("QuickConnectFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Quick Connect Toolbar.
+ ///
+ internal static string QuickConnectToolbar {
+ get {
+ return ResourceManager.GetString("QuickConnectToolbar", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Warn me only when e&xiting mRemoteNG.
+ ///
+ internal static string RadioCloseWarnExit {
+ get {
+ return ResourceManager.GetString("RadioCloseWarnExit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Warn me only when closing &multiple connections.
+ ///
+ internal static string RadioCloseWarnMultiple {
+ get {
+ return ResourceManager.GetString("RadioCloseWarnMultiple", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Do ¬ warn me when closing connections.
+ ///
+ internal static string RadioCloseWarnNever {
+ get {
+ return ResourceManager.GetString("RadioCloseWarnNever", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RAW.
+ ///
+ internal static string Raw {
+ get {
+ return ResourceManager.GetString("Raw", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP.
+ ///
+ internal static string Rdp {
+ get {
+ return ResourceManager.GetString("Rdp", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 16777216 Colours (24-bit).
+ ///
+ internal static string Rdp16777216Colors {
+ get {
+ return ResourceManager.GetString("Rdp16777216Colors", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 256 Colours (8-bit).
+ ///
+ internal static string Rdp256Colors {
+ get {
+ return ResourceManager.GetString("Rdp256Colors", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 32768 Colours (15-bit).
+ ///
+ internal static string Rdp32768Colors {
+ get {
+ return ResourceManager.GetString("Rdp32768Colors", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 16777216 Colours (32-bit).
+ ///
+ internal static string Rdp4294967296Colors {
+ get {
+ return ResourceManager.GetString("Rdp4294967296Colors", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to 65536 Colours (16-bit).
+ ///
+ internal static string Rdp65536Colors {
+ get {
+ return ResourceManager.GetString("Rdp65536Colors", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Couldn't create RDP control, please check mRemoteNG requirements..
+ ///
+ internal static string RdpControlCreationFailed {
+ get {
+ return ResourceManager.GetString("RdpControlCreationFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP Disconnect failed, trying to close!.
+ ///
+ internal static string RdpDisconnectFailed {
+ get {
+ return ResourceManager.GetString("RdpDisconnectFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Internal error code 1..
+ ///
+ internal static string RdpErrorCode1 {
+ get {
+ return ResourceManager.GetString("RdpErrorCode1", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Internal error code 2..
+ ///
+ internal static string RdpErrorCode2 {
+ get {
+ return ResourceManager.GetString("RdpErrorCode2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Internal error code 3. This is not a valid state..
+ ///
+ internal static string RdpErrorCode3 {
+ get {
+ return ResourceManager.GetString("RdpErrorCode3", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Internal error code 4..
+ ///
+ internal static string RdpErrorCode4 {
+ get {
+ return ResourceManager.GetString("RdpErrorCode4", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to An unrecoverable error has occurred during client connection..
+ ///
+ internal static string RdpErrorConnection {
+ get {
+ return ResourceManager.GetString("RdpErrorConnection", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to GetError failed (FatalErrors).
+ ///
+ internal static string RdpErrorGetFailure {
+ get {
+ return ResourceManager.GetString("RdpErrorGetFailure", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to An out-of-memory error has occurred..
+ ///
+ internal static string RdpErrorOutOfMemory {
+ get {
+ return ResourceManager.GetString("RdpErrorOutOfMemory", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to An unknown error has occurred..
+ ///
+ internal static string RdpErrorUnknown {
+ get {
+ return ResourceManager.GetString("RdpErrorUnknown", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to A window-creation error has occurred..
+ ///
+ internal static string RdpErrorWindowCreation {
+ get {
+ return ResourceManager.GetString("RdpErrorWindowCreation", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Winsock initialization error..
+ ///
+ internal static string RdpErrorWinsock {
+ get {
+ return ResourceManager.GetString("RdpErrorWinsock", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP Focus failed!.
+ ///
+ internal static string RdpFocusFailed {
+ get {
+ return ResourceManager.GetString("RdpFocusFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Gateway Domain.
+ ///
+ internal static string RdpGatewayDomain {
+ get {
+ return ResourceManager.GetString("RdpGatewayDomain", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Gateway Hostname.
+ ///
+ internal static string RdpGatewayHostname {
+ get {
+ return ResourceManager.GetString("RdpGatewayHostname", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP Gateway is supported..
+ ///
+ internal static string RdpGatewayIsSupported {
+ get {
+ return ResourceManager.GetString("RdpGatewayIsSupported", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP Gateway is not supported!.
+ ///
+ internal static string RdpGatewayNotSupported {
+ get {
+ return ResourceManager.GetString("RdpGatewayNotSupported", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Remote Desktop Gateway Password.
+ ///
+ internal static string RdpGatewayPassword {
+ get {
+ return ResourceManager.GetString("RdpGatewayPassword", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use Gateway.
+ ///
+ internal static string RdpGatewayUsageMethod {
+ get {
+ return ResourceManager.GetString("RdpGatewayUsageMethod", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Gateway Credentials.
+ ///
+ internal static string RdpGatewayUseConnectionCredentials {
+ get {
+ return ResourceManager.GetString("RdpGatewayUseConnectionCredentials", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Gateway Username.
+ ///
+ internal static string RdpGatewayUsername {
+ get {
+ return ResourceManager.GetString("RdpGatewayUsername", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP Connection Timeout.
+ ///
+ internal static string RdpOverallConnectionTimeout {
+ get {
+ return ResourceManager.GetString("RdpOverallConnectionTimeout", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Could not create RDP client. RDP protocol version {0} is not supported on this machine. Please choose an older protocol version..
+ ///
+ internal static string RdpProtocolVersionNotSupported {
+ get {
+ return ResourceManager.GetString("RdpProtocolVersionNotSupported", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP reconnection count:.
+ ///
+ internal static string RdpReconnectCount {
+ get {
+ return ResourceManager.GetString("RdpReconnectCount", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP SetAuthenticationLevel failed!.
+ ///
+ internal static string RdpSetAuthenticationLevelFailed {
+ get {
+ return ResourceManager.GetString("RdpSetAuthenticationLevelFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP SetUseConsoleSession failed!.
+ ///
+ internal static string RdpSetConsoleSessionFailed {
+ get {
+ return ResourceManager.GetString("RdpSetConsoleSessionFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP Setting Console switch for RDC {0}..
+ ///
+ internal static string RdpSetConsoleSwitch {
+ get {
+ return ResourceManager.GetString("RdpSetConsoleSwitch", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP SetCredentials failed!.
+ ///
+ internal static string RdpSetCredentialsFailed {
+ get {
+ return ResourceManager.GetString("RdpSetCredentialsFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP SetEventHandlers failed!.
+ ///
+ internal static string RdpSetEventHandlersFailed {
+ get {
+ return ResourceManager.GetString("RdpSetEventHandlersFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP SetRDGateway failed!.
+ ///
+ internal static string RdpSetGatewayFailed {
+ get {
+ return ResourceManager.GetString("RdpSetGatewayFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP SetPerformanceFlags failed!.
+ ///
+ internal static string RdpSetPerformanceFlagsFailed {
+ get {
+ return ResourceManager.GetString("RdpSetPerformanceFlagsFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP SetPort failed!.
+ ///
+ internal static string RdpSetPortFailed {
+ get {
+ return ResourceManager.GetString("RdpSetPortFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP SetProps failed!.
+ ///
+ internal static string RdpSetPropsFailed {
+ get {
+ return ResourceManager.GetString("RdpSetPropsFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP Set Redirection Failed!.
+ ///
+ internal static string RdpSetRedirectionFailed {
+ get {
+ return ResourceManager.GetString("RdpSetRedirectionFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP Set Redirect Keys Failed!.
+ ///
+ internal static string RdpSetRedirectKeysFailed {
+ get {
+ return ResourceManager.GetString("RdpSetRedirectKeysFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP SetResolution failed!.
+ ///
+ internal static string RdpSetResolutionFailed {
+ get {
+ return ResourceManager.GetString("RdpSetResolutionFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Bring to this computer.
+ ///
+ internal static string RdpSoundBringToThisComputer {
+ get {
+ return ResourceManager.GetString("RdpSoundBringToThisComputer", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Leave at remote computer.
+ ///
+ internal static string RdpSoundLeaveAtRemoteComputer {
+ get {
+ return ResourceManager.GetString("RdpSoundLeaveAtRemoteComputer", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Alternate Shell.
+ ///
+ internal static string RDPStartProgram {
+ get {
+ return ResourceManager.GetString("RDPStartProgram", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Alternate shell working directory.
+ ///
+ internal static string RDPStartProgramWorkDir {
+ get {
+ return ResourceManager.GetString("RDPStartProgramWorkDir", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP ToggleFullscreen failed!.
+ ///
+ internal static string RdpToggleFullscreenFailed {
+ get {
+ return ResourceManager.GetString("RdpToggleFullscreenFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP ToggleSmartSize failed!.
+ ///
+ internal static string RdpToggleSmartSizeFailed {
+ get {
+ return ResourceManager.GetString("RdpToggleSmartSizeFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to RDP Version.
+ ///
+ internal static string RdpVersion {
+ get {
+ return ResourceManager.GetString("RdpVersion", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Read only:.
+ ///
+ internal static string ReadOnly {
+ get {
+ return ResourceManager.GetString("ReadOnly", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reconnect.
+ ///
+ internal static string Reconnect {
+ get {
+ return ResourceManager.GetString("Reconnect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reconnect All Connections.
+ ///
+ internal static string ReconnectAllConnections {
+ get {
+ return ResourceManager.GetString("ReconnectAllConnections", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reconnect to previously opened sessions on startup.
+ ///
+ internal static string ReconnectAtStartup {
+ get {
+ return ResourceManager.GetString("ReconnectAtStartup", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Redirect.
+ ///
+ internal static string Redirect {
+ get {
+ return ResourceManager.GetString("Redirect", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Disk Drives.
+ ///
+ internal static string RedirectDrives {
+ get {
+ return ResourceManager.GetString("RedirectDrives", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Key Combinations.
+ ///
+ internal static string RedirectKeys {
+ get {
+ return ResourceManager.GetString("RedirectKeys", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Smart Cards.
+ ///
+ internal static string RedirectSmartCards {
+ get {
+ return ResourceManager.GetString("RedirectSmartCards", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Refresh.
+ ///
+ internal static string Refresh {
+ get {
+ return ResourceManager.GetString("Refresh", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Refresh Screen (VNC).
+ ///
+ internal static string RefreshScreen {
+ get {
+ return ResourceManager.GetString("RefreshScreen", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Release Channel.
+ ///
+ internal static string ReleaseChannel {
+ get {
+ return ResourceManager.GetString("ReleaseChannel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Stable channel includes final releases only.
+ ///Preview channel includes Betas & Release Candidates.
+ ///Nightly Channel includes Alphas, Betas & Release Candidates..
+ ///
+ internal static string ReleaseChannelExplanation {
+ get {
+ return ResourceManager.GetString("ReleaseChannelExplanation", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Released under the GNU General Public License (GPL).
+ ///
+ internal static string ReleasedUnderGPL {
+ get {
+ return ResourceManager.GetString("ReleasedUnderGPL", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Remote Desktop Services.
+ ///
+ internal static string RemoteDesktopServices {
+ get {
+ return ResourceManager.GetString("RemoteDesktopServices", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Remote file.
+ ///
+ internal static string RemoteFile {
+ get {
+ return ResourceManager.GetString("RemoteFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Remove All.
+ ///
+ internal static string RemoveAll {
+ get {
+ return ResourceManager.GetString("RemoveAll", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Rename.
+ ///
+ internal static string Rename {
+ get {
+ return ResourceManager.GetString("Rename", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Rename Tab.
+ ///
+ internal static string RenameTab {
+ get {
+ return ResourceManager.GetString("RenameTab", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Rendering Engine.
+ ///
+ internal static string RenderingEngine {
+ get {
+ return ResourceManager.GetString("RenderingEngine", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Report a Bug.
+ ///
+ internal static string ReportBug {
+ get {
+ return ResourceManager.GetString("ReportBug", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Reset layout.
+ ///
+ internal static string ResetLayout {
+ get {
+ return ResourceManager.GetString("ResetLayout", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Resolution.
+ ///
+ internal static string Resolution {
+ get {
+ return ResourceManager.GetString("Resolution", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Rlogin.
+ ///
+ internal static string Rlogin {
+ get {
+ return ResourceManager.GetString("Rlogin", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Run elevated.
+ ///
+ internal static string RunElevated {
+ get {
+ return ResourceManager.GetString("RunElevated", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Save.
+ ///
+ internal static string Save {
+ get {
+ return ResourceManager.GetString("Save", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Save All.
+ ///
+ internal static string SaveAll {
+ get {
+ return ResourceManager.GetString("SaveAll", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Save Connection File.
+ ///
+ internal static string SaveConnectionFile {
+ get {
+ return ResourceManager.GetString("SaveConnectionFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Save Connection File As....
+ ///
+ internal static string SaveConnectionFileAs {
+ get {
+ return ResourceManager.GetString("SaveConnectionFileAs", 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 Do you want to save the current connections file before loading another?.
+ ///
+ internal static string SaveConnectionsFileBeforeOpeningAnother {
+ get {
+ return ResourceManager.GetString("SaveConnectionsFileBeforeOpeningAnother", 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 SaveImageFilter {
+ get {
+ return ResourceManager.GetString("SaveImageFilter", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Screen.
+ ///
+ internal static string Screen {
+ get {
+ return ResourceManager.GetString("Screen", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Screenshot.
+ ///
+ internal static string Screenshot {
+ get {
+ return ResourceManager.GetString("Screenshot", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Screenshots.
+ ///
+ internal static string Screenshots {
+ get {
+ return ResourceManager.GetString("Screenshots", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Search.
+ ///
+ internal static string SearchPrompt {
+ get {
+ return ResourceManager.GetString("SearchPrompt", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Seconds.
+ ///
+ internal static string Seconds {
+ get {
+ return ResourceManager.GetString("Seconds", 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 SelectPanel {
+ get {
+ return ResourceManager.GetString("SelectPanel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Send Special Keys (VNC).
+ ///
+ internal static string SendSpecialKeys {
+ get {
+ return ResourceManager.GetString("SendSpecialKeys", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Send To....
+ ///
+ internal static string SendTo {
+ get {
+ return ResourceManager.GetString("SendTo", 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 Server status:.
+ ///
+ internal static string ServerStatus {
+ get {
+ return ResourceManager.GetString("ServerStatus", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Set hostname like display name when creating or renaming connections.
+ ///
+ internal static string SetHostnameLikeDisplayName {
+ get {
+ return ResourceManager.GetString("SetHostnameLikeDisplayName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Couldn't save settings or dispose SysTray Icon!.
+ ///
+ internal static string SettingsCouldNotBeSavedOrTrayDispose {
+ get {
+ return ResourceManager.GetString("SettingsCouldNotBeSavedOrTrayDispose", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show description tooltips in connection tree.
+ ///
+ internal static string ShowDescriptionTooltips {
+ get {
+ return ResourceManager.GetString("ShowDescriptionTooltips", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show full connections file path in window title.
+ ///
+ internal static string ShowFullConsFilePath {
+ get {
+ return ResourceManager.GetString("ShowFullConsFilePath", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to &Show Help Text.
+ ///
+ internal static string ShowHelpText {
+ get {
+ return ResourceManager.GetString("ShowHelpText", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show/Hide Menu Strip.
+ ///
+ internal static string ShowHideMenu {
+ get {
+ return ResourceManager.GetString("ShowHideMenu", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show logon information on tab names.
+ ///
+ internal static string ShowLogonInfoOnTabs {
+ get {
+ return ResourceManager.GetString("ShowLogonInfoOnTabs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show On Toolbar.
+ ///
+ internal static string ShowOnToolbar {
+ get {
+ return ResourceManager.GetString("ShowOnToolbar", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show on toolbar column.
+ ///
+ internal static string ShowOnToolbarColumnHeader {
+ get {
+ return ResourceManager.GetString("ShowOnToolbarColumnHeader", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show protocols on tab names.
+ ///
+ internal static string ShowProtocolOnTabs {
+ get {
+ return ResourceManager.GetString("ShowProtocolOnTabs", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show Text.
+ ///
+ internal static string ShowText {
+ get {
+ return ResourceManager.GetString("ShowText", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Show these message types.
+ ///
+ internal static string ShowTheseMessageTypes {
+ get {
+ return ResourceManager.GetString("ShowTheseMessageTypes", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Single click on connection opens it.
+ ///
+ internal static string SingleClickOnConnectionOpensIt {
+ get {
+ return ResourceManager.GetString("SingleClickOnConnectionOpensIt", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Single click on opened connection in Connection Tree switches to opened Connection Tab.
+ ///
+ internal static string SingleClickOnOpenConnectionSwitchesToIt {
+ get {
+ return ResourceManager.GetString("SingleClickOnOpenConnectionSwitchesToIt", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SmartCard.
+ ///
+ internal static string SmartCard {
+ get {
+ return ResourceManager.GetString("SmartCard", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SmartSize (RDP/VNC).
+ ///
+ internal static string SmartSize {
+ get {
+ return ResourceManager.GetString("SmartSize", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SmartSize Mode.
+ ///
+ internal static string SmartSizeMode {
+ get {
+ return ResourceManager.GetString("SmartSizeMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Socks 5.
+ ///
+ internal static string Socks5 {
+ get {
+ return ResourceManager.GetString("Socks5", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sort.
+ ///
+ internal static string Sort {
+ get {
+ return ResourceManager.GetString("Sort", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ascending (A-Z).
+ ///
+ internal static string SortAsc {
+ get {
+ return ResourceManager.GetString("SortAsc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Descending (Z-A).
+ ///
+ internal static string SortDesc {
+ get {
+ return ResourceManager.GetString("SortDesc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sound quality.
+ ///
+ internal static string SoundQuality {
+ get {
+ return ResourceManager.GetString("SoundQuality", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Sounds.
+ ///
+ internal static string Sounds {
+ get {
+ return ResourceManager.GetString("Sounds", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Please see Help - Getting started - SQL Configuration for more Info!.
+ ///
+ internal static string SQLInfo {
+ get {
+ return ResourceManager.GetString("SQLInfo", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SQL Server.
+ ///
+ internal static string SQLServer {
+ get {
+ return ResourceManager.GetString("SQLServer", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH background transfer failed!.
+ ///
+ internal static string SshBackgroundTransferFailed {
+ get {
+ return ResourceManager.GetString("SshBackgroundTransferFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH File Transfer.
+ ///
+ internal static string SshFileTransfer {
+ get {
+ return ResourceManager.GetString("SshFileTransfer", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH Options.
+ ///
+ internal static string SshOptions {
+ get {
+ return ResourceManager.GetString("SshOptions", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH transfer failed..
+ ///
+ internal static string SshTransferFailed {
+ get {
+ return ResourceManager.GetString("SshTransferFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH Tunnel.
+ ///
+ internal static string SshTunnel {
+ get {
+ return ResourceManager.GetString("SshTunnel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH Tunnel connection configuration problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. A connection with the name configured as SSH Tunnel and protocol SSH version 1 or SSH2 version 2 cannot be found in the connection tree. Clear SSH Tunnel configuration or specify existing SSH connection..
+ ///
+ internal static string SshTunnelConfigProblem {
+ get {
+ return ResourceManager.GetString("SshTunnelConfigProblem", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH tunnel connection failed. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Putty process terminated. Check for any problems with the connection configured as SSH Tunnel..
+ ///
+ internal static string SshTunnelFailed {
+ get {
+ return ResourceManager.GetString("SshTunnelFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH tunnel configuration problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Connection configured as SSH Tunnel found in tree, but protocol is not derived from putty. Make sure connection configured as SSH Tunnel is using SSH protocol..
+ ///
+ internal static string SshTunnelIsNotPutty {
+ get {
+ return ResourceManager.GetString("SshTunnelIsNotPutty", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH tunnel connection problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. SSH connection failed. Check for any problems with the connection configured as SSH Tunnel..
+ ///
+ internal static string SshTunnelNotConnected {
+ get {
+ return ResourceManager.GetString("SshTunnelNotConnected", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH tunnel initialization problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. SSH connection could not be initialized. Check for any problems with the connection configured as SSH Tunnel..
+ ///
+ internal static string SshTunnelNotInitialized {
+ get {
+ return ResourceManager.GetString("SshTunnelNotInitialized", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH tunnel connection timed out. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Local tunnel port did not become available in time. Check for any problems with the connection configured as SSH Tunnel..
+ ///
+ internal static string SshTunnelPortNotReadyInTime {
+ get {
+ return ResourceManager.GetString("SshTunnelPortNotReadyInTime", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH version 1.
+ ///
+ internal static string SshV1 {
+ get {
+ return ResourceManager.GetString("SshV1", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to SSH version 2.
+ ///
+ internal static string SshV2 {
+ get {
+ return ResourceManager.GetString("SshV2", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Stack trace.
+ ///
+ internal static string StackTrace {
+ get {
+ return ResourceManager.GetString("StackTrace", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Start Chat (VNC).
+ ///
+ internal static string StartChat {
+ get {
+ return ResourceManager.GetString("StartChat", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Start minimized.
+ ///
+ internal static string StartMinimized {
+ get {
+ return ResourceManager.GetString("StartMinimized", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Start Program.
+ ///
+ internal static string StartProgram {
+ get {
+ return ResourceManager.GetString("StartProgram", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Startup/Exit.
+ ///
+ internal static string StartupExit {
+ get {
+ return ResourceManager.GetString("StartupExit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Status.
+ ///
+ internal static string Status {
+ get {
+ return ResourceManager.GetString("Status", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Backup.
+ ///
+ internal static string strBackup {
+ get {
+ return ResourceManager.GetString("strBackup", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Browse....
+ ///
+ internal static string strBrowse {
+ get {
+ return ResourceManager.GetString("strBrowse", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Connection Backup Frequency.
+ ///
+ internal static string strConnectionBackupFrequency {
+ get {
+ return ResourceManager.GetString("strConnectionBackupFrequency", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Maximum number of backups.
+ ///
+ internal static string strConnectionsBackupMaxCount {
+ get {
+ return ResourceManager.GetString("strConnectionsBackupMaxCount", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Location of connection file backup.
+ ///
+ internal static string strConnectionsBackupPath {
+ get {
+ return ResourceManager.GetString("strConnectionsBackupPath", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Support Forum.
+ ///
+ internal static string SupportForum {
+ get {
+ return ResourceManager.GetString("SupportForum", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Switch to Notifications panel on:.
+ ///
+ internal static string SwitchToErrorsAndInfos {
+ get {
+ return ResourceManager.GetString("SwitchToErrorsAndInfos", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Tabs && Panels.
+ ///
+ internal static string TabsAndPanels {
+ get {
+ return ResourceManager.GetString("TabsAndPanels", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Security.
+ ///
+ internal static string TabSecurity {
+ get {
+ return ResourceManager.GetString("TabSecurity", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Telnet.
+ ///
+ internal static string Telnet {
+ get {
+ return ResourceManager.GetString("Telnet", 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 Test Proxy.
+ ///
+ internal static string TestProxy {
+ get {
+ return ResourceManager.GetString("TestProxy", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Test Settings.
+ ///
+ internal static string TestSettings {
+ get {
+ return ResourceManager.GetString("TestSettings", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The following:.
+ ///
+ internal static string TheFollowing {
+ get {
+ return ResourceManager.GetString("TheFollowing", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Theme.
+ ///
+ internal static string Theme {
+ get {
+ return ResourceManager.GetString("Theme", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Timeout [seconds].
+ ///
+ internal static string TimeoutInSeconds {
+ get {
+ return ResourceManager.GetString("TimeoutInSeconds", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Title.
+ ///
+ internal static string Title {
+ get {
+ return ResourceManager.GetString("Title", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Error ({0}).
+ ///
+ internal static string TitleError {
+ get {
+ return ResourceManager.GetString("TitleError", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Information ({0}).
+ ///
+ internal static string TitleInformation {
+ get {
+ return ResourceManager.GetString("TitleInformation", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mRemoteNG password.
+ ///
+ internal static string TitlePassword {
+ get {
+ return ResourceManager.GetString("TitlePassword", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mRemoteNG password for {0}.
+ ///
+ internal static string TitlePasswordWithName {
+ get {
+ return ResourceManager.GetString("TitlePasswordWithName", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Select Panel.
+ ///
+ internal static string TitleSelectPanel {
+ get {
+ return ResourceManager.GetString("TitleSelectPanel", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Warning ({0}).
+ ///
+ internal static string TitleWarning {
+ get {
+ return ResourceManager.GetString("TitleWarning", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Track active connection in the connection tree.
+ ///
+ internal static string TrackActiveConnectionInConnectionTree {
+ get {
+ return ResourceManager.GetString("TrackActiveConnectionInConnectionTree", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Transfer.
+ ///
+ internal static string Transfer {
+ get {
+ return ResourceManager.GetString("Transfer", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Transfer File (SSH).
+ ///
+ internal static string TransferFile {
+ get {
+ return ResourceManager.GetString("TransferFile", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Try to integrate.
+ ///
+ internal static string TryToIntegrate {
+ get {
+ return ResourceManager.GetString("TryToIntegrate", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Ultra VNC Repeater.
+ ///
+ internal static string UltraVncRepeater {
+ get {
+ return ResourceManager.GetString("UltraVncRepeater", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to UltraVNC SingleClick port:.
+ ///
+ internal static string UltraVNCSCListeningPort {
+ get {
+ return ResourceManager.GetString("UltraVNCSCListeningPort", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to UltraVNC SingleClick.
+ ///
+ internal static string UltraVNCSingleClick {
+ get {
+ return ResourceManager.GetString("UltraVNCSingleClick", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Uncheck the properties you want not to be saved!.
+ ///
+ internal static string UncheckProperties {
+ get {
+ return ResourceManager.GetString("UncheckProperties", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to An unhandled exception has occurred.
+ ///
+ internal static string UnhandledExceptionOccured {
+ get {
+ return ResourceManager.GetString("UnhandledExceptionOccured", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mRemoteNG requires an update.
+ ///
+ internal static string UpdateAvailable {
+ get {
+ return ResourceManager.GetString("UpdateAvailable", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to mRemoteNG can periodically connect to the mRemoteNG website to check for updates..
+ ///
+ internal static string UpdateCheck {
+ get {
+ return ResourceManager.GetString("UpdateCheck", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The update information could not be downloaded..
+ ///
+ internal static string UpdateCheckCompleteFailed {
+ get {
+ return ResourceManager.GetString("UpdateCheckCompleteFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Download complete!
+ ///mRemoteNG will now quit and begin with the installation..
+ ///
+ internal static string UpdateDownloadComplete {
+ get {
+ return ResourceManager.GetString("UpdateDownloadComplete", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The update could not be downloaded..
+ ///
+ internal static string UpdateDownloadCompleteFailed {
+ get {
+ return ResourceManager.GetString("UpdateDownloadCompleteFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The update download could not be initiated..
+ ///
+ internal static string UpdateDownloadFailed {
+ get {
+ return ResourceManager.GetString("UpdateDownloadFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Every {0} days.
+ ///
+ internal static string UpdateFrequencyCustom {
+ get {
+ return ResourceManager.GetString("UpdateFrequencyCustom", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to The change log could not be downloaded..
+ ///
+ internal static string UpdateGetChangeLogFailed {
+ get {
+ return ResourceManager.GetString("UpdateGetChangeLogFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Download Completed!.
+ ///
+ internal static string UpdatePortableDownloadComplete {
+ get {
+ return ResourceManager.GetString("UpdatePortableDownloadComplete", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Updates.
+ ///
+ internal static string Updates {
+ get {
+ return ResourceManager.GetString("Updates", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use Console Session.
+ ///
+ internal static string UseConsoleSession {
+ get {
+ return ResourceManager.GetString("UseConsoleSession", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use CredSSP.
+ ///
+ internal static string UseCredSsp {
+ get {
+ return ResourceManager.GetString("UseCredSsp", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use default.
+ ///
+ internal static string UseDefault {
+ get {
+ return ResourceManager.GetString("UseDefault", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use a different username and password.
+ ///
+ internal static string UseDifferentUsernameAndPassword {
+ get {
+ return ResourceManager.GetString("UseDifferentUsernameAndPassword", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use enhanced mode.
+ ///
+ internal static string UseEnhancedMode {
+ get {
+ return ResourceManager.GetString("UseEnhancedMode", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to User.
+ ///
+ internal static string User {
+ get {
+ return ResourceManager.GetString("User", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to User Field.
+ ///
+ internal static string UserField {
+ get {
+ return ResourceManager.GetString("UserField", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Username.
+ ///
+ internal static string Username {
+ get {
+ return ResourceManager.GetString("Username", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use the same username and password.
+ ///
+ internal static string UseSameUsernameAndPassword {
+ get {
+ return ResourceManager.GetString("UseSameUsernameAndPassword", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use a smart card.
+ ///
+ internal static string UseSmartCard {
+ get {
+ return ResourceManager.GetString("UseSmartCard", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use SQL Server to load && save connections.
+ ///
+ internal static string UseSQLServer {
+ get {
+ return ResourceManager.GetString("UseSQLServer", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Use VM ID.
+ ///
+ internal static string UseVmId {
+ get {
+ return ResourceManager.GetString("UseVmId", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Verify:.
+ ///
+ internal static string Verify {
+ get {
+ return ResourceManager.GetString("Verify", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Version.
+ ///
+ internal static string Version {
+ get {
+ return ResourceManager.GetString("Version", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to View Only.
+ ///
+ internal static string ViewOnly {
+ get {
+ return ResourceManager.GetString("ViewOnly", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VM ID.
+ ///
+ internal static string VmId {
+ get {
+ return ResourceManager.GetString("VmId", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VNC.
+ ///
+ internal static string Vnc {
+ get {
+ return ResourceManager.GetString("Vnc", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VNC disconnect failed!.
+ ///
+ internal static string VncConnectionDisconnectFailed {
+ get {
+ return ResourceManager.GetString("VncConnectionDisconnectFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VNC Refresh Screen Failed!.
+ ///
+ internal static string VncRefreshFailed {
+ get {
+ return ResourceManager.GetString("VncRefreshFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VNC SendSpecialKeys failed!.
+ ///
+ internal static string VncSendSpecialKeysFailed {
+ get {
+ return ResourceManager.GetString("VncSendSpecialKeysFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VNC Set Event Handlers failed!.
+ ///
+ internal static string VncSetEventHandlersFailed {
+ get {
+ return ResourceManager.GetString("VncSetEventHandlersFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VNC Set Props Failed!.
+ ///
+ internal static string VncSetPropsFailed {
+ get {
+ return ResourceManager.GetString("VncSetPropsFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VNC Toggle SmartSize Failed!.
+ ///
+ internal static string VncToggleSmartSizeFailed {
+ get {
+ return ResourceManager.GetString("VncToggleSmartSizeFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to VNC Toggle ViewOnly Failed!.
+ ///
+ internal static string VncToggleViewOnlyFailed {
+ get {
+ return ResourceManager.GetString("VncToggleViewOnlyFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Wait for exit.
+ ///
+ internal static string WaitForExit {
+ get {
+ return ResourceManager.GetString("WaitForExit", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Warn me if authentication fails.
+ ///
+ internal static string WarnIfAuthFails {
+ get {
+ return ResourceManager.GetString("WarnIfAuthFails", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Warnings.
+ ///
+ internal static string Warnings {
+ get {
+ return ResourceManager.GetString("Warnings", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Website.
+ ///
+ internal static string Website {
+ get {
+ return ResourceManager.GetString("Website", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to WebView2 creation failed with exception.
+ ///
+ internal static string WebView2InitializationFailed {
+ get {
+ return ResourceManager.GetString("WebView2InitializationFailed", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Weekly.
+ ///
+ internal static string Weekly {
+ get {
+ return ResourceManager.GetString("Weekly", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Windows.
+ ///
+ internal static string Windows {
+ get {
+ return ResourceManager.GetString("Windows", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Working directory.
+ ///
+ internal static string WorkingDirColumnHeader {
+ get {
+ return ResourceManager.GetString("WorkingDirColumnHeader", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Working directory:.
+ ///
+ internal static string WorkingDirectory {
+ get {
+ return ResourceManager.GetString("WorkingDirectory", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Yes.
+ ///
+ internal static string Yes {
+ get {
+ return ResourceManager.GetString("Yes", resourceCulture);
+ }
+ }
+ }
+}
diff --git a/mRemoteNG/Language/Language.de.resx b/mRemoteNG/Language/Language.de.resx
index b25908c3..9ffeed4a 100644
--- a/mRemoteNG/Language/Language.de.resx
+++ b/mRemoteNG/Language/Language.de.resx
@@ -2025,4 +2025,10 @@ Nightly umfasst Alphas, Betas und Release Candidates.
WebView2-Erstellung fehlgeschlagen
+
+ Standardvererbung anwenden
+
+
+ Vererbung auf Kinder anwenden
+
\ No newline at end of file
diff --git a/mRemoteNG/Language/Language.resx b/mRemoteNG/Language/Language.resx
index 6e763afd..630aea25 100644
--- a/mRemoteNG/Language/Language.resx
+++ b/mRemoteNG/Language/Language.resx
@@ -1,2193 +1,2202 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- About
-
-
- Active Directory
-
-
- AddNodeFromXML failed!
-
-
- Allow only a single instance of the application (mRemoteNG restart required)
-
-
- Always
-
-
- Always connect, even if authentication fails
-
-
- Always show panel selection dialog when opening connections
-
-
- Always show panel tabs
-
-
- Always show notification area icon
-
-
- Ask me again later
-
-
- Customize the settings now
-
-
- Use the recommended settings
-
-
- {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.
-
-
- Automatic update settings
-
-
- Aspect
-
-
- Auto save time in minutes (0 means disabled):
-
-
- Latest version
-
-
- &Browse...
-
-
- &Cancel
-
-
- Change
-
-
- &Close
-
-
- Default Inheritance
-
-
- Default Properties
-
-
- Disconnect
-
-
- Icon
-
-
- &Import
-
-
- Inheritance
-
-
- &Launch
-
-
- Launch PuTTY
-
-
- &OK
-
-
- Properties
-
-
- &Scan
-
-
- &Stop
-
-
- Test Proxy
-
-
- Cannot start Port Scan, incorrect IP format!
-
-
- Appearance
-
-
- Connection
-
-
- Display
-
-
- Gateway
-
-
- Miscellaneous
-
-
- Protocol
-
-
- Redirect
-
-
- Check failed!
-
-
- Automatically try to reconnect when disconnected from server (RDP && ICA only)
-
-
- Do not show this message again.
-
-
- This proxy server requires authentication
-
-
- Use custom PuTTY path:
-
-
- Reconnect when ready
-
-
- Use a proxy server to connect
-
-
- Username
-
-
- Wait for exit
-
-
- Check Again
-
-
- Check for updates at startup
-
-
- Check now
-
-
- Check proper installation of components at startup
-
-
- Choose panel before connecting
-
-
- Closed Ports
-
-
- Collapse all folders
-
-
- Arguments
-
-
- Filename
-
-
- Message
-
-
- E&xit {0}
-
-
- Couldn't parse command line args!
-
-
- &Open a connection file
-
-
- &Try again
-
-
- {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.
-
-
- Compatibility problem detected
-
-
- btnIcon_Click failed!
-
-
- ShowHideGridItems failed!
-
-
- IconMenu_Click failed!
-
-
- Property Grid object failed!
-
-
- SetHostStatus failed!
-
-
- pGrid_PopertyValueChanged failed!
-
-
- Config UI load failed!
-
-
- Are you sure you want to close the panel, "{0}"? Any connections that it contains will also be closed.
-
-
- Are you sure you want to delete the external tool, "{0}"?
-
-
- Are you sure you want to delete the {0} selected external tools?
-
-
- Are you sure you want to delete the connection, "{0}"?
-
-
- Are you sure you want to delete the empty folder, "{0}"?
-
-
- Are you sure you want to delete the folder, "{0}"? Any folders or connections that it contains will also be deleted.
-
-
- Do you want to close all open connections?
-
-
- Are you sure you want to reset the panels to their default layout?
-
-
- Connect
-
-
- Connect in fullscreen mode
-
-
- Connecting...
-
-
- Protocol Event Connected
-
-
- Connection to "{0}" via "{1}" established by user "{2}" (Description: "{3}"; User Field: "{4}")
-
-
- Connection failed!
-
-
- A connection protocol error occurred. Host: "{1}"; Error code: "{2}"; Error Description: "{0}"
-
-
- Opening connection failed!
-
-
- Cannot open connection: No hostname specified!
-
-
- Connections
-
-
- Couldn't set default port!
-
-
- Couldn't create backup of connections file!
-
-
- Connections file "{0}" could not be loaded!
-
-
- Connections file "{0}" could not be loaded!
-Starting with new connections file.
-
-
- Couldn't save connections file as "{0}"!
-
-
- Connect without credentials
-
-
- Connect to console session
-
-
- Connect (with options)
-
-
- Connection to {0} via {1} closed by user {2}.
-
-
- Connection Event Closed
-
-
- Connection Event Closed failed!
-
-
- Couldn't create new connections file!
-
-
- Could not find ToolStrip control in FilteredPropertyGrid.
-
-
- Detect
-
-
- Don't connect to console session
-
-
- Don't connect if authentication fails
-
-
- Double click on tab closes it
-
-
- Download and Install
-
-
- Duplicate
-
-
- Do you want to continue with no password?
-
-
- For empty Username, Password or Domain fields use:
-
-
- Completely encrypt connection file
-
-
- Last IP
-
-
- Last Port
-
-
- AddExternalToolsToToolBar (frmMain) failed. {0}
-
-
- AddFolder (UI.Window.ConnectionTreeWindow) failed. {0}
-
-
- The database version {0} is not compatible with this version of {1}.
-
-
- The connection list could not be saved.
-
-
- PuTTY could not be launched.
-
-
- Decryption failed. {0}
-
-
- Encryption failed. {0}
-
-
- 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.
-
-
- Errors
-
-
- 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.
-
-
- VerifyDatabaseVersion (Config.Connections.Save) failed. {0}
-
-
- Expand all folders
-
-
- Experimental
-
-
- Export
-
-
- Export everything
-
-
- Export File
-
-
- Export Items
-
-
- Export Properties
-
-
- Export the currently selected connection
-
-
- Export the currently selected folder
-
-
- &Export to File...
-
-
- New External Tool
-
-
- File &Format:
-
-
- All Files (*.*)
-
-
- All importable files
-
-
- Application Files (*.exe)
-
-
- mRemote CSV Files (*.csv)
-
-
- mRemote XML Files (*.xml)
-
-
- PuTTY Connection Manager files
-
-
- Remote Desktop Connection Manager files (*.rdg)
-
-
- RDP Files (*.rdp)
-
-
- Inherit {0}
-
-
- Description of inherited property: {0}
-
-
- Free
-
-
- Fullscreen
-
-
- General
-
-
- An error occured while loading the connection entry for "{0}" from "{1}". {2}
-
-
- Automatic Reconnect
-
-
- External Tool Properties
-
-
- Files
-
-
- Host
-
-
- HTTP
-
-
- HTTP Connect Failed!
-
-
- Couldn't create new HTTP Connection!
-
-
- Changing HTTP Document Tile Failed!
-
-
- Internet Explorer
-
-
- HTTPS
-
-
- Set HTTP Props failed!
-
-
- Identify quick connect tabs by adding the prefix "Quick:"
-
-
- Import from Active Directory
-
-
- An error occurred while importing the file "{0}".
-
-
- Import from &File...
-
-
- Import from Port Scan
-
-
- Informations
-
-
- Dispose of Int App process failed!
-
-
- Int App Focus Failed!
-
-
- Int App Handle: {0}
-
-
- Killing Int App Process failed!
-
-
- Int App Resize failed!
-
-
- --- IntApp Stuff ---
-
-
- Int App Title: {0}
-
-
- Address:
-
-
- When closing connections:
-
-
- Display Name
-
-
- Domain
-
-
- Hostname:
-
-
- Portable Edition
-
-
- To configure PuTTY sessions click this button:
-
-
- Maximum PuTTY and integrated external tools wait time:
-
-
- Released under the GNU General Public License (GPL)
-
-
- Seconds
-
-
- Select a panel from the list below or click New to add a new one. Click OK to continue.
-
-
- Server status:
-
-
- Database:
-
-
- Verify:
-
-
- Language
-
-
- (Automatically Detect)
-
-
- {0} must be restarted before changes to the language will take effect.
-
-
- Load from SQL failed
-
-
- The connection information could not be loaded from the SQL server.
-
-
- Load From XML failed!
-
-
- Local file
-
-
- Local file does not exist!
-
-
- Add Connection Panel
-
-
- Check for Updates
-
-
- Config
-
-
- Connection Panels
-
-
- Copy
-
-
- Ctrl-Alt-Del
-
-
- Ctrl-Esc
-
-
- Delete External Tool...
-
-
- Donate
-
-
- Duplicate Tab
-
-
- Exit
-
-
- External Tools Toolbar
-
-
- &File
-
-
- &Help
-
-
- mRemoteNG Help
-
-
- Launch External Tool
-
-
- New Connection File
-
-
- New External Tool
-
-
- Notifications
-
-
- Copy All
-
-
- Delete All
-
-
- Open Connection File...
-
-
- Options
-
-
- Port Scan
-
-
- Quick Connect Toolbar
-
-
- Reconnect
-
-
- Refresh Screen (VNC)
-
-
- Rename Tab
-
-
- Report a Bug
-
-
- Reset layout
-
-
- Save Connection File
-
-
- Save Connection File As...
-
-
- Send Special Keys (VNC)
-
-
- &Show Help Text
-
-
- Show Text
-
-
- SmartSize (RDP/VNC)
-
-
- SSH File Transfer
-
-
- Start Chat (VNC)
-
-
- Support Forum
-
-
- &Tools
-
-
- Transfer File (SSH)
-
-
- &View
-
-
- View Only
-
-
- Website
-
-
- Minimize to notification area
-
-
- Move down
-
-
- Move up
-
-
- mRemoteNG CSV
-
-
- mRemoteNG XML
-
-
- My current credentials (Windows logon information)
-
-
- Never
-
-
- New Connection
-
-
- New Folder
-
-
- New Panel
-
-
- New Title
-
-
- No
-
-
- No сompression
-
-
- No ext. app specified.
-
-
- None
-
-
- Normal
-
-
- No SmartSize
-
-
- No update available
-
-
- 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!
-
-
- Open new tab to the right of the currently selected tab
-
-
- Open Ports
-
-
- Testing...
-
-
- Theme
-
-
- &Delete
-
-
- &New
-
-
- Panel Name
-
-
- Password protect
-
-
- Both passwords must match.
-
-
- The password must be at least 3 characters long.
-
-
- Please fill all fields
-
-
- Port scan complete.
-
-
- Couldn't load PortScan panel!
-
-
- Enter the hostname or ip you want to connect to.
-
-
- Toggle all inheritance options.
-
-
- Select which authentication level this connection should use.
-
-
- Select how you want to authenticate against the VNC server.
-
-
- Select whether to automatically resize the connection when the window is resized or when fullscreen mode is toggled. Requires RDC 8.0 or higher.
-
-
- Select whether to use bitmap caching or not.
-
-
- Select the colour quality to be used.
-
-
- Select the compression value to be used.
-
-
- Put your notes or a description for the host here.
-
-
- Select yes if the theme of the remote host should be displayed.
-
-
- Select yes if the wallpaper of the remote host should be displayed.
-
-
- Enter your domain.
-
-
- Select whether to use desktop composition or not.
-
-
- Select whether to use font smoothing or not.
-
-
- Select the encoding mode to be used.
-
-
- Select the external tool to be started.
-
-
- Select a external tool to be started after the disconnection to the remote host.
-
-
- Select a external tool to be started before the connection to the remote host is established.
-
-
- Choose a icon that will be displayed when connected to the host.
-
-
- Specifies the load balancing information for use by load balancing routers to choose the best server.
-
-
- Enter the MAC address of the remote host if you wish to use it in an external tool.
-
-
- This is the name that will be displayed in the connections tree.
-
-
- Sets the panel in which the connection will open.
-
-
- Enter your password.
-
-
- Enter the port the selected protocol is listening on.
-
-
- Choose the protocol mRemoteNG should use to connect to the host.
-
-
- Select a PuTTY session to be used when connecting.
-
-
- Specifies the domain name that a user provides to connect to the RD Gateway server.
-
-
- Specifies the host name of the Remote Desktop Gateway server.
-
-
- Specifies when to use a Remote Desktop Gateway (RD Gateway) server.
-
-
- Specifies whether or not to log on to the gateway using the same username and password as the connection.
-
-
- Specifies the user name that a user provides to connect to the RD Gateway server.
-
-
- Select whether local disk drives should be shown on the remote host.
-
-
- Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host.
-
-
- Select whether local ports (ie. com, parallel) should be shown on the remote host.
-
-
- Select whether local printers should be shown on the remote host.
-
-
- Select whether the clipboard should be shared.
-
-
- Select whether local smart cards should be available on the remote host.
-
-
- Select how remote sound should be redirected.
-
-
- Select whether the default audio input device on the remote machine should be redirected to this computer.
-
-
- Select one of the available rendering engines that will be used to display HTML.
-
-
- Choose the resolution or mode this connection will open in.
-
-
- Select the SmartSize mode to be used.
-
-
- Connect to the console session of the remote host.
-
-
- Use the Credential Security Support Provider (CredSSP) for authentication if it is available.
-
-
- Feel free to enter any information you need here.
-
-
- Enter your username.
-
-
- If you want to establish a view only connection to the host select yes.
-
-
- Enter the proxy address to be used.
-
-
- Enter your password for authenticating against the proxy.
-
-
- Enter the port the proxy server listens on.
-
-
- If you use a proxy to tunnel VNC connections, select which type it is.
-
-
- Enter your username for authenticating against the proxy.
-
-
- Hostname/IP
-
-
- All
-
-
- Server Authentication
-
-
- Authentication mode
-
-
- Automatic resize
-
-
- Cache Bitmaps
-
-
- Colours
-
-
- Compression
-
-
- Description
-
-
- Display Themes
-
-
- Display Wallpaper
-
-
- Desktop Composition
-
-
- Font Smoothing
-
-
- Encoding
-
-
- External Tool
-
-
- External Tool After
-
-
- External Tool Before
-
-
- Load Balance Info
-
-
- MAC Address
-
-
- Name
-
-
- Panel
-
-
- Password
-
-
- Port
-
-
- PuTTY Session
-
-
- Gateway Domain
-
-
- Gateway Hostname
-
-
- Remote Desktop Gateway Password
-
-
- Use Gateway
-
-
- Gateway Credentials
-
-
- Gateway Username
-
-
- Disk Drives
-
-
- Key Combinations
-
-
- Ports
-
-
- Printers
-
-
- Clipboard
-
-
- Sounds
-
-
- Audio Capture
-
-
- Rendering Engine
-
-
- Resolution
-
-
- SmartSize Mode
-
-
- Use Console Session
-
-
- Use CredSSP
-
-
- User Field
-
-
- Proxy Address
-
-
- Proxy Password
-
-
- Proxy Port
-
-
- Proxy Type
-
-
- Proxy Username
-
-
- Protocol Event Disconnected. Host: "{1}"; Protocol: "{2}" Message: "{0}"
-
-
- Protocol Event Disconnected failed.
-{0}
-
-
- Protocol to import
-
-
- Proxy test failed!
-
-
- Proxy test succeeded!
-
-
- Dispose of Putty process failed!
-
-
- Couldn't set focus!
-
-
- Putty Handle: {0}
-
-
- Killing Putty Process failed!
-
-
- Panel Handle: {0}
-
-
- Putty Resize Failed!
-
-
- PuTTY Saved Sessions
-
-
- PuTTY Settings
-
-
- Show PuTTY Settings Dialog failed!
-
-
- --- PuTTY Stuff ---
-
-
- PuTTY Title: {0}
-
-
- Quick: {0}
-
-
- Quick Connect
-
-
- Quick Connect Add Failed!
-
-
- Creating quick connect failed
-
-
- Warn me when closing connections
-
-
- Warn me only when e&xiting mRemoteNG
-
-
- Warn me only when closing &multiple connections
-
-
- Do ¬ warn me when closing connections
-
-
- RAW
-
-
- RDP
-
-
- 16777216 Colours (24-bit)
-
-
- 256 Colours (8-bit)
-
-
- 32768 Colours (15-bit)
-
-
- 16777216 Colours (32-bit)
-
-
- 65536 Colours (16-bit)
-
-
- Couldn't create RDP control, please check mRemoteNG requirements.
-
-
- Disable Cursor blinking
-
-
- Disable Cursor Shadow
-
-
- Disable Full Window drag
-
-
- Disable Menu Animations
-
-
- RDP Disconnect failed, trying to close!
-
-
- Internal error code 1.
-
-
- Internal error code 2.
-
-
- Internal error code 3. This is not a valid state.
-
-
- Internal error code 4.
-
-
- An unrecoverable error has occurred during client connection.
-
-
- GetError failed (FatalErrors)
-
-
- An out-of-memory error has occurred.
-
-
- An unknown error has occurred.
-
-
- A window-creation error has occurred.
-
-
- Winsock initialization error.
-
-
- Fit To Panel
-
-
- RDP Focus failed!
-
-
- RDP Gateway is supported.
-
-
- RDP Gateway is not supported!
-
-
- RDP reconnection count:
-
-
- RDP SetAuthenticationLevel failed!
-
-
- RDP SetUseConsoleSession failed!
-
-
- RDP Setting Console switch for RDC {0}.
-
-
- RDP SetCredentials failed!
-
-
- RDP SetEventHandlers failed!
-
-
- RDP SetRDGateway failed!
-
-
- RDP SetPerformanceFlags failed!
-
-
- RDP SetPort failed!
-
-
- RDP SetProps failed!
-
-
- RDP Set Redirection Failed!
-
-
- RDP Set Redirect Keys Failed!
-
-
- RDP SetResolution failed!
-
-
- Bring to this computer
-
-
- Do not play
-
-
- Leave at remote computer
-
-
- RDP ToggleFullscreen failed!
-
-
- RDP ToggleSmartSize failed!
-
-
- Reconnect to previously opened sessions on startup
-
-
- Remote file
-
-
- Remove All
-
-
- Rename
-
-
- Rlogin
-
-
- Save
-
-
- Save All
-
-
- Do you want to save the current connections file before loading another?
-
-
- Daily
-
-
- Connection Backup Frequency
-
-
- Weekly
-
-
- Maximum number of backups
-
-
- Location of connection file backup
-
-
- On Edit
-
-
- On Exit
-
-
- Never backup connections
-
-
- Browse...
-
-
- Backup
-
-
- 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
-
-
- Screen
-
-
- Screenshot
-
-
- Screenshots
-
-
- Search
-
-
- Send To...
-
-
- Set hostname like display name when creating or renaming connections
-
-
- Couldn't save settings or dispose SysTray Icon!
-
-
- Show description tooltips in connection tree
-
-
- Show full connections file path in window title
-
-
- Show logon information on tab names
-
-
- Show protocols on tab names
-
-
- Single click on connection opens it
-
-
- Single click on opened connection in Connection Tree switches to opened Connection Tab
-
-
- Socks 5
-
-
- Sort
-
-
- Ascending (A-Z)
-
-
- Descending (Z-A)
-
-
- Please see Help - Getting started - SQL Configuration for more Info!
-
-
- SQL Server
-
-
- SSH version 1
-
-
- SSH version 2
-
-
- SSH background transfer failed!
-
-
- SSH transfer failed.
-
-
- First IP
-
-
- First Port
-
-
- Startup/Exit
-
-
- Status
-
-
- Switch to Notifications panel on:
-
-
- Advanced
-
-
- Tabs && Panels
-
-
- Updates
-
-
- Telnet
-
-
- The following:
-
-
- Error ({0})
-
-
- Information ({0})
-
-
- mRemoteNG password
-
-
- mRemoteNG password for {0}
-
-
- Select Panel
-
-
- Warning ({0})
-
-
- Transfer
-
-
- Try to integrate
-
-
- Show On Toolbar
-
-
- Ultra VNC Repeater
-
-
- UltraVNC SingleClick port:
-
-
- Uncheck the properties you want not to be saved!
-
-
- mRemoteNG requires an update
-
-
- mRemoteNG can periodically connect to the mRemoteNG website to check for updates.
-
-
- The update information could not be downloaded.
-
-
- Download complete!
-mRemoteNG will now quit and begin with the installation.
-
-
- The update could not be downloaded.
-
-
- The update download could not be initiated.
-
-
- Every {0} days
-
-
- Daily
-
-
- Monthly
-
-
- Weekly
-
-
- The change log could not be downloaded.
-
-
- Use a different username and password
-
-
- User
-
-
- Use the same username and password
-
-
- Use a smart card
-
-
- Use SQL Server to load && save connections
-
-
- Version
-
-
- VNC
-
-
- VNC disconnect failed!
-
-
- VNC Refresh Screen Failed!
-
-
- VNC SendSpecialKeys failed!
-
-
- VNC Set Event Handlers failed!
-
-
- VNC Set Props Failed!
-
-
- VNC Toggle SmartSize Failed!
-
-
- VNC Toggle ViewOnly Failed!
-
-
- Warn me if authentication fails
-
-
- Warnings
-
-
- Yes
-
-
- RDP Connection Timeout
-
-
- This node is already in this folder.
-
-
- Cannot drag node onto itself.
-
-
- Cannot drag parent node onto child.
-
-
- This node is not draggable.
-
-
- Block Cipher Mode
-
-
- Encryption Engine
-
-
- Security
-
-
- Key Derivation Function Iterations
-
-
- Dynamic
-
-
- High
-
-
- Medium
-
-
- Choose the Sound Quality provided by the protocol: Dynamic, Medium, High
-
-
- Sound quality
-
-
- Download Completed!
-
-
- Download
-
-
- The number of minutes for the RDP session to sit idle before automatically disconnecting (for no limit use 0)
-
-
- Minutes to Idle
-
-
- Add
-
-
- Title
-
-
- Are you sure you want to delete the credential record, {0}?
-
-
- Select whether to receive an alert after the RDP session disconnects due to inactivity
-
-
- Password must contain at least {0} of the following characters: {1}
-
-
- Password must contain at least {0} lower case character(s)
-
-
- Password must contain at least {0} number(s)
-
-
- Password must contain at least {0} upper case character(s)
-
-
- Password length must be between {0} and {1}
-
-
- Choose a path for the mRemoteNG log file
-
-
- Debug
-
-
- Show these message types
-
-
- Log file path
-
-
- Log these message types
-
-
- Choose path
-
-
- Open file
-
-
- Use default
-
-
- Logging
-
-
- Popups
-
-
- Log to application directory
-
-
- Assigned Credential
-
-
- Credentials
-
-
- Open a different file
-
-
- Credential not available
-
-
- Do you really want to delete the theme?
-
-
- New theme name
-
-
- Cannot create theme, name already present or special characters in the name
-
-
- Type the new theme name
-
-
- Warning: Restart is required to commit any theme configuration change.
-
-
- Could not find external tool with name "{0}"
-
-
- Create a New Connection File
-
-
- The connection file could not be found.
-
-
- Import an Existing File
-
-
- Use a Custom File Path
-
-
- Testing connection
-
-
- Server '{0}' was not accessible.
-
-
- Connection successful
-
-
- Login failed for user '{0}'.
-
-
- Database '{0}' not available.
-
-
- Save connections after every edit
-
-
- Filter search matches in connection tree
-
-
- Test connection
-
-
- Read only:
-
-
- Use UTF8 encoding for RDP "Load Balance Info" property
-
-
- Timeout [seconds]
-
-
- Working directory:
-
-
- Run elevated
-
-
- Show on toolbar column
-
-
- Working directory
-
-
- Lock toolbar positions
-
-
- Multi SSH toolbar
-
-
- Import sub OUs
-
-
- Advanced security options
-
-
- mRemoteNG Options
-
-
- Create an empty panel when mRemoteNG starts
-
-
- Must Be Between 0 and 255
-
-
- Out Of Range
-
-
- Delete
-
-
- Reconnect All Connections
-
-
- UltraVNC SingleClick
-
-
- Disconnect Tabs To The Right
-
-
- Disconnect All But This
-
-
- Are you sure you want to close all connections except for "{0}"?
-
-
- An error occurred while trying to reconnect to RDP host '{0}'
-
-
- An error occurred while trying to change the connection resolution to host '{0}'
-
-
- Stack trace
-
-
- Exception Message
-
-
- mRemoteNG Unhandled Exception
-
-
- An unhandled exception has occurred
-
-
- This exception will force mRemoteNG to close
-
-
- Copy Hostname
-
-
- Place search bar above connection tree
-
-
- Track active connection in the connection tree
-
-
- Always show connection tabs
-
-
- Release Channel
-
-
- Stable channel includes final releases only.
-Preview channel includes Betas & Release Candidates.
-Nightly Channel includes Alphas, Betas & Release Candidates.
-
-
- Apply
-
-
- Proxy
-
-
- Multi SSH:
-
-
- Press ENTER to send. Ctrl+C is sent immediately.
-
-
- Show this connection in the favorites menu.
-
-
- Favorite
-
-
- Favorites
-
-
- Clear search string
-
-
- Connect in View Only mode
-
-
- Do not trim spaces from usernames
-
-
- Environment
-
-
- Encrypting {0} entries using {1}/{2} and {3} iterations took {4} seconds.
-
-
- Encryption Test
-
-
- Test Settings
-
-
- Sets the version of RDP to use when opening connections.
-
-
- RDP Version
-
-
- Use VM ID to connect to VM running on Hyper-V.
-
-
- The ID of the Hyper-V virtual machine to connect to.
-
-
- Use VM ID
-
-
- VM ID
-
-
- Could not create RDP client. RDP protocol version {0} is not supported on this machine. Please choose an older protocol version.
-
-
- For connection through a SSH tunnel (jump host) specify SSH connection to be used to establish SSH tunnel.
-
-
- SSH Tunnel
-
-
- Specify here additional options to be used for SSH connection. See putty documentation for further details.
-
-
- SSH Options
-
-
- SSH Tunnel connection configuration problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. A connection with the name configured as SSH Tunnel and protocol SSH version 1 or SSH2 version 2 cannot be found in the connection tree. Clear SSH Tunnel configuration or specify existing SSH connection.
-
-
- SSH tunnel configuration problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Connection configured as SSH Tunnel found in tree, but protocol is not derived from putty. Make sure connection configured as SSH Tunnel is using SSH protocol.
-
-
- SSH tunnel initialization problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. SSH connection could not be initialized. Check for any problems with the connection configured as SSH Tunnel.
-
-
- SSH tunnel connection problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. SSH connection failed. Check for any problems with the connection configured as SSH Tunnel.
-
-
- SSH tunnel connection failed. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Putty process terminated. Check for any problems with the connection configured as SSH Tunnel.
-
-
- SSH tunnel connection timed out. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Local tunnel port did not become available in time. Check for any problems with the connection configured as SSH Tunnel.
-
-
- Start minimized
-
-
- Set a password needed to encrypt the connection file with. You will be prompted to enter your passcode before starting mRemoteNG.
-
-
- Connect to a Hyper-V host with enhanced mode enabled.
-
-
- Use enhanced mode
-
-
- Specifies the password of the Remote Desktop Gateway server.
-
-
- Close to notification area
-
-
- Windows
-
-
- PowerShell
-
-
- Changelog
-
-
- Credits
-
-
- License
-
-
- Determines whether cursor flashes should be disabled.
-
-
- Determines whether a mouse shadow should be visible.
-
-
- Determines whether window content is displayed when you drag the window to a new location.
-
-
- Determines whether menus and windows can be displayed with animation effects in the remote session.
-
-
- Edge Chromium
-
-
- Failed to contruct the URL to load
-
-
- Show/Hide Menu Strip
-
-
- The program to be started on the remote server upon connection.
-
-
- Specifies the working directory of the alternate shell.
-
-
- Alternate Shell
- https://docs.microsoft.com/en-us/windows/win32/termserv/imstscsecuredsettings-startprogram
-
-
- Alternate shell working directory
- https://docs.microsoft.com/en-us/windows/win32/termserv/imstscsecuredsettings-workdir
-
-
- Disk Drives
-
-
- Smart Cards
-
-
- Remote Desktop Services
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ About
+
+
+ Active Directory
+
+
+ AddNodeFromXML failed!
+
+
+ Allow only a single instance of the application (mRemoteNG restart required)
+
+
+ Always
+
+
+ Always connect, even if authentication fails
+
+
+ Always show panel selection dialog when opening connections
+
+
+ Always show panel tabs
+
+
+ Always show notification area icon
+
+
+ Ask me again later
+
+
+ Customize the settings now
+
+
+ Use the recommended settings
+
+
+ {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.
+
+
+ Automatic update settings
+
+
+ Aspect
+
+
+ Auto save time in minutes (0 means disabled):
+
+
+ Latest version
+
+
+ &Browse...
+
+
+ &Cancel
+
+
+ Change
+
+
+ &Close
+
+
+ Default Inheritance
+
+
+ Default Properties
+
+
+ Disconnect
+
+
+ Icon
+
+
+ &Import
+
+
+ Inheritance
+
+
+ &Launch
+
+
+ Launch PuTTY
+
+
+ &OK
+
+
+ Properties
+
+
+ &Scan
+
+
+ &Stop
+
+
+ Test Proxy
+
+
+ Cannot start Port Scan, incorrect IP format!
+
+
+ Appearance
+
+
+ Connection
+
+
+ Display
+
+
+ Gateway
+
+
+ Miscellaneous
+
+
+ Protocol
+
+
+ Redirect
+
+
+ Check failed!
+
+
+ Automatically try to reconnect when disconnected from server (RDP && ICA only)
+
+
+ Do not show this message again.
+
+
+ This proxy server requires authentication
+
+
+ Use custom PuTTY path:
+
+
+ Reconnect when ready
+
+
+ Use a proxy server to connect
+
+
+ Username
+
+
+ Wait for exit
+
+
+ Check Again
+
+
+ Check for updates at startup
+
+
+ Check now
+
+
+ Check proper installation of components at startup
+
+
+ Choose panel before connecting
+
+
+ Closed Ports
+
+
+ Collapse all folders
+
+
+ Arguments
+
+
+ Filename
+
+
+ Message
+
+
+ E&xit {0}
+
+
+ Couldn't parse command line args!
+
+
+ &Open a connection file
+
+
+ &Try again
+
+
+ {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.
+
+
+ Compatibility problem detected
+
+
+ btnIcon_Click failed!
+
+
+ ShowHideGridItems failed!
+
+
+ IconMenu_Click failed!
+
+
+ Property Grid object failed!
+
+
+ SetHostStatus failed!
+
+
+ pGrid_PopertyValueChanged failed!
+
+
+ Config UI load failed!
+
+
+ Are you sure you want to close the panel, "{0}"? Any connections that it contains will also be closed.
+
+
+ Are you sure you want to delete the external tool, "{0}"?
+
+
+ Are you sure you want to delete the {0} selected external tools?
+
+
+ Are you sure you want to delete the connection, "{0}"?
+
+
+ Are you sure you want to delete the empty folder, "{0}"?
+
+
+ Are you sure you want to delete the folder, "{0}"? Any folders or connections that it contains will also be deleted.
+
+
+ Do you want to close all open connections?
+
+
+ Are you sure you want to reset the panels to their default layout?
+
+
+ Connect
+
+
+ Connect in fullscreen mode
+
+
+ Connecting...
+
+
+ Protocol Event Connected
+
+
+ Connection to "{0}" via "{1}" established by user "{2}" (Description: "{3}"; User Field: "{4}")
+
+
+ Connection failed!
+
+
+ A connection protocol error occurred. Host: "{1}"; Error code: "{2}"; Error Description: "{0}"
+
+
+ Opening connection failed!
+
+
+ Cannot open connection: No hostname specified!
+
+
+ Connections
+
+
+ Couldn't set default port!
+
+
+ Couldn't create backup of connections file!
+
+
+ Connections file "{0}" could not be loaded!
+
+
+ Connections file "{0}" could not be loaded!
+Starting with new connections file.
+
+
+ Couldn't save connections file as "{0}"!
+
+
+ Connect without credentials
+
+
+ Connect to console session
+
+
+ Connect (with options)
+
+
+ Connection to {0} via {1} closed by user {2}.
+
+
+ Connection Event Closed
+
+
+ Connection Event Closed failed!
+
+
+ Couldn't create new connections file!
+
+
+ Could not find ToolStrip control in FilteredPropertyGrid.
+
+
+ Detect
+
+
+ Don't connect to console session
+
+
+ Don't connect if authentication fails
+
+
+ Double click on tab closes it
+
+
+ Download and Install
+
+
+ Duplicate
+
+
+ Do you want to continue with no password?
+
+
+ For empty Username, Password or Domain fields use:
+
+
+ Completely encrypt connection file
+
+
+ Last IP
+
+
+ Last Port
+
+
+ AddExternalToolsToToolBar (frmMain) failed. {0}
+
+
+ AddFolder (UI.Window.ConnectionTreeWindow) failed. {0}
+
+
+ The database version {0} is not compatible with this version of {1}.
+
+
+ The connection list could not be saved.
+
+
+ PuTTY could not be launched.
+
+
+ Decryption failed. {0}
+
+
+ Encryption failed. {0}
+
+
+ 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.
+
+
+ Errors
+
+
+ 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.
+
+
+ VerifyDatabaseVersion (Config.Connections.Save) failed. {0}
+
+
+ Expand all folders
+
+
+ Experimental
+
+
+ Export
+
+
+ Export everything
+
+
+ Export File
+
+
+ Export Items
+
+
+ Export Properties
+
+
+ Export the currently selected connection
+
+
+ Export the currently selected folder
+
+
+ &Export to File...
+
+
+ New External Tool
+
+
+ File &Format:
+
+
+ All Files (*.*)
+
+
+ All importable files
+
+
+ Application Files (*.exe)
+
+
+ mRemote CSV Files (*.csv)
+
+
+ mRemote XML Files (*.xml)
+
+
+ PuTTY Connection Manager files
+
+
+ Remote Desktop Connection Manager files (*.rdg)
+
+
+ RDP Files (*.rdp)
+
+
+ Inherit {0}
+
+
+ Description of inherited property: {0}
+
+
+ Free
+
+
+ Fullscreen
+
+
+ General
+
+
+ An error occured while loading the connection entry for "{0}" from "{1}". {2}
+
+
+ Automatic Reconnect
+
+
+ External Tool Properties
+
+
+ Files
+
+
+ Host
+
+
+ HTTP
+
+
+ HTTP Connect Failed!
+
+
+ Couldn't create new HTTP Connection!
+
+
+ Changing HTTP Document Tile Failed!
+
+
+ Internet Explorer
+
+
+ HTTPS
+
+
+ Set HTTP Props failed!
+
+
+ Identify quick connect tabs by adding the prefix "Quick:"
+
+
+ Import from Active Directory
+
+
+ An error occurred while importing the file "{0}".
+
+
+ Import from &File...
+
+
+ Import from Port Scan
+
+
+ Informations
+
+
+ Dispose of Int App process failed!
+
+
+ Int App Focus Failed!
+
+
+ Int App Handle: {0}
+
+
+ Killing Int App Process failed!
+
+
+ Int App Resize failed!
+
+
+ --- IntApp Stuff ---
+
+
+ Int App Title: {0}
+
+
+ Address:
+
+
+ When closing connections:
+
+
+ Display Name
+
+
+ Domain
+
+
+ Hostname:
+
+
+ Portable Edition
+
+
+ To configure PuTTY sessions click this button:
+
+
+ Maximum PuTTY and integrated external tools wait time:
+
+
+ Released under the GNU General Public License (GPL)
+
+
+ Seconds
+
+
+ Select a panel from the list below or click New to add a new one. Click OK to continue.
+
+
+ Server status:
+
+
+ Database:
+
+
+ Verify:
+
+
+ Language
+
+
+ (Automatically Detect)
+
+
+ {0} must be restarted before changes to the language will take effect.
+
+
+ Load from SQL failed
+
+
+ The connection information could not be loaded from the SQL server.
+
+
+ Load From XML failed!
+
+
+ Local file
+
+
+ Local file does not exist!
+
+
+ Add Connection Panel
+
+
+ Check for Updates
+
+
+ Config
+
+
+ Connection Panels
+
+
+ Copy
+
+
+ Ctrl-Alt-Del
+
+
+ Ctrl-Esc
+
+
+ Delete External Tool...
+
+
+ Donate
+
+
+ Duplicate Tab
+
+
+ Exit
+
+
+ External Tools Toolbar
+
+
+ &File
+
+
+ &Help
+
+
+ mRemoteNG Help
+
+
+ Launch External Tool
+
+
+ New Connection File
+
+
+ New External Tool
+
+
+ Notifications
+
+
+ Copy All
+
+
+ Delete All
+
+
+ Open Connection File...
+
+
+ Options
+
+
+ Port Scan
+
+
+ Quick Connect Toolbar
+
+
+ Reconnect
+
+
+ Refresh Screen (VNC)
+
+
+ Rename Tab
+
+
+ Report a Bug
+
+
+ Reset layout
+
+
+ Save Connection File
+
+
+ Save Connection File As...
+
+
+ Send Special Keys (VNC)
+
+
+ &Show Help Text
+
+
+ Show Text
+
+
+ SmartSize (RDP/VNC)
+
+
+ SSH File Transfer
+
+
+ Start Chat (VNC)
+
+
+ Support Forum
+
+
+ &Tools
+
+
+ Transfer File (SSH)
+
+
+ &View
+
+
+ View Only
+
+
+ Website
+
+
+ Minimize to notification area
+
+
+ Move down
+
+
+ Move up
+
+
+ mRemoteNG CSV
+
+
+ mRemoteNG XML
+
+
+ My current credentials (Windows logon information)
+
+
+ Never
+
+
+ New Connection
+
+
+ New Folder
+
+
+ New Panel
+
+
+ New Title
+
+
+ No
+
+
+ No сompression
+
+
+ No ext. app specified.
+
+
+ None
+
+
+ Normal
+
+
+ No SmartSize
+
+
+ No update available
+
+
+ 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!
+
+
+ Open new tab to the right of the currently selected tab
+
+
+ Open Ports
+
+
+ Testing...
+
+
+ Theme
+
+
+ &Delete
+
+
+ &New
+
+
+ Panel Name
+
+
+ Password protect
+
+
+ Both passwords must match.
+
+
+ The password must be at least 3 characters long.
+
+
+ Please fill all fields
+
+
+ Port scan complete.
+
+
+ Couldn't load PortScan panel!
+
+
+ Enter the hostname or ip you want to connect to.
+
+
+ Toggle all inheritance options.
+
+
+ Select which authentication level this connection should use.
+
+
+ Select how you want to authenticate against the VNC server.
+
+
+ Select whether to automatically resize the connection when the window is resized or when fullscreen mode is toggled. Requires RDC 8.0 or higher.
+
+
+ Select whether to use bitmap caching or not.
+
+
+ Select the colour quality to be used.
+
+
+ Select the compression value to be used.
+
+
+ Put your notes or a description for the host here.
+
+
+ Select yes if the theme of the remote host should be displayed.
+
+
+ Select yes if the wallpaper of the remote host should be displayed.
+
+
+ Enter your domain.
+
+
+ Select whether to use desktop composition or not.
+
+
+ Select whether to use font smoothing or not.
+
+
+ Select the encoding mode to be used.
+
+
+ Select the external tool to be started.
+
+
+ Select a external tool to be started after the disconnection to the remote host.
+
+
+ Select a external tool to be started before the connection to the remote host is established.
+
+
+ Choose a icon that will be displayed when connected to the host.
+
+
+ Specifies the load balancing information for use by load balancing routers to choose the best server.
+
+
+ Enter the MAC address of the remote host if you wish to use it in an external tool.
+
+
+ This is the name that will be displayed in the connections tree.
+
+
+ Sets the panel in which the connection will open.
+
+
+ Enter your password.
+
+
+ Enter the port the selected protocol is listening on.
+
+
+ Choose the protocol mRemoteNG should use to connect to the host.
+
+
+ Select a PuTTY session to be used when connecting.
+
+
+ Specifies the domain name that a user provides to connect to the RD Gateway server.
+
+
+ Specifies the host name of the Remote Desktop Gateway server.
+
+
+ Specifies when to use a Remote Desktop Gateway (RD Gateway) server.
+
+
+ Specifies whether or not to log on to the gateway using the same username and password as the connection.
+
+
+ Specifies the user name that a user provides to connect to the RD Gateway server.
+
+
+ Select whether local disk drives should be shown on the remote host.
+
+
+ Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host.
+
+
+ Select whether local ports (ie. com, parallel) should be shown on the remote host.
+
+
+ Select whether local printers should be shown on the remote host.
+
+
+ Select whether the clipboard should be shared.
+
+
+ Select whether local smart cards should be available on the remote host.
+
+
+ Select how remote sound should be redirected.
+
+
+ Select whether the default audio input device on the remote machine should be redirected to this computer.
+
+
+ Select one of the available rendering engines that will be used to display HTML.
+
+
+ Choose the resolution or mode this connection will open in.
+
+
+ Select the SmartSize mode to be used.
+
+
+ Connect to the console session of the remote host.
+
+
+ Use the Credential Security Support Provider (CredSSP) for authentication if it is available.
+
+
+ Feel free to enter any information you need here.
+
+
+ Enter your username.
+
+
+ If you want to establish a view only connection to the host select yes.
+
+
+ Enter the proxy address to be used.
+
+
+ Enter your password for authenticating against the proxy.
+
+
+ Enter the port the proxy server listens on.
+
+
+ If you use a proxy to tunnel VNC connections, select which type it is.
+
+
+ Enter your username for authenticating against the proxy.
+
+
+ Hostname/IP
+
+
+ All
+
+
+ Server Authentication
+
+
+ Authentication mode
+
+
+ Automatic resize
+
+
+ Cache Bitmaps
+
+
+ Colours
+
+
+ Compression
+
+
+ Description
+
+
+ Display Themes
+
+
+ Display Wallpaper
+
+
+ Desktop Composition
+
+
+ Font Smoothing
+
+
+ Encoding
+
+
+ External Tool
+
+
+ External Tool After
+
+
+ External Tool Before
+
+
+ Load Balance Info
+
+
+ MAC Address
+
+
+ Name
+
+
+ Panel
+
+
+ Password
+
+
+ Port
+
+
+ PuTTY Session
+
+
+ Gateway Domain
+
+
+ Gateway Hostname
+
+
+ Remote Desktop Gateway Password
+
+
+ Use Gateway
+
+
+ Gateway Credentials
+
+
+ Gateway Username
+
+
+ Disk Drives
+
+
+ Key Combinations
+
+
+ Ports
+
+
+ Printers
+
+
+ Clipboard
+
+
+ Sounds
+
+
+ Audio Capture
+
+
+ Rendering Engine
+
+
+ Resolution
+
+
+ SmartSize Mode
+
+
+ Use Console Session
+
+
+ Use CredSSP
+
+
+ User Field
+
+
+ Proxy Address
+
+
+ Proxy Password
+
+
+ Proxy Port
+
+
+ Proxy Type
+
+
+ Proxy Username
+
+
+ Protocol Event Disconnected. Host: "{1}"; Protocol: "{2}" Message: "{0}"
+
+
+ Protocol Event Disconnected failed.
+{0}
+
+
+ Protocol to import
+
+
+ Proxy test failed!
+
+
+ Proxy test succeeded!
+
+
+ Dispose of Putty process failed!
+
+
+ Couldn't set focus!
+
+
+ Putty Handle: {0}
+
+
+ Killing Putty Process failed!
+
+
+ Panel Handle: {0}
+
+
+ Putty Resize Failed!
+
+
+ PuTTY Saved Sessions
+
+
+ PuTTY Settings
+
+
+ Show PuTTY Settings Dialog failed!
+
+
+ --- PuTTY Stuff ---
+
+
+ PuTTY Title: {0}
+
+
+ Quick: {0}
+
+
+ Quick Connect
+
+
+ Quick Connect Add Failed!
+
+
+ Creating quick connect failed
+
+
+ Warn me when closing connections
+
+
+ Warn me only when e&xiting mRemoteNG
+
+
+ Warn me only when closing &multiple connections
+
+
+ Do ¬ warn me when closing connections
+
+
+ RAW
+
+
+ RDP
+
+
+ 16777216 Colours (24-bit)
+
+
+ 256 Colours (8-bit)
+
+
+ 32768 Colours (15-bit)
+
+
+ 16777216 Colours (32-bit)
+
+
+ 65536 Colours (16-bit)
+
+
+ Couldn't create RDP control, please check mRemoteNG requirements.
+
+
+ Disable Cursor blinking
+
+
+ Disable Cursor Shadow
+
+
+ Disable Full Window drag
+
+
+ Disable Menu Animations
+
+
+ RDP Disconnect failed, trying to close!
+
+
+ Internal error code 1.
+
+
+ Internal error code 2.
+
+
+ Internal error code 3. This is not a valid state.
+
+
+ Internal error code 4.
+
+
+ An unrecoverable error has occurred during client connection.
+
+
+ GetError failed (FatalErrors)
+
+
+ An out-of-memory error has occurred.
+
+
+ An unknown error has occurred.
+
+
+ A window-creation error has occurred.
+
+
+ Winsock initialization error.
+
+
+ Fit To Panel
+
+
+ RDP Focus failed!
+
+
+ RDP Gateway is supported.
+
+
+ RDP Gateway is not supported!
+
+
+ RDP reconnection count:
+
+
+ RDP SetAuthenticationLevel failed!
+
+
+ RDP SetUseConsoleSession failed!
+
+
+ RDP Setting Console switch for RDC {0}.
+
+
+ RDP SetCredentials failed!
+
+
+ RDP SetEventHandlers failed!
+
+
+ RDP SetRDGateway failed!
+
+
+ RDP SetPerformanceFlags failed!
+
+
+ RDP SetPort failed!
+
+
+ RDP SetProps failed!
+
+
+ RDP Set Redirection Failed!
+
+
+ RDP Set Redirect Keys Failed!
+
+
+ RDP SetResolution failed!
+
+
+ Bring to this computer
+
+
+ Do not play
+
+
+ Leave at remote computer
+
+
+ RDP ToggleFullscreen failed!
+
+
+ RDP ToggleSmartSize failed!
+
+
+ Reconnect to previously opened sessions on startup
+
+
+ Remote file
+
+
+ Remove All
+
+
+ Rename
+
+
+ Rlogin
+
+
+ Save
+
+
+ Save All
+
+
+ Do you want to save the current connections file before loading another?
+
+
+ Daily
+
+
+ Connection Backup Frequency
+
+
+ Weekly
+
+
+ Maximum number of backups
+
+
+ Location of connection file backup
+
+
+ On Edit
+
+
+ On Exit
+
+
+ Never backup connections
+
+
+ Browse...
+
+
+ Backup
+
+
+ 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
+
+
+ Screen
+
+
+ Screenshot
+
+
+ Screenshots
+
+
+ Search
+
+
+ Send To...
+
+
+ Set hostname like display name when creating or renaming connections
+
+
+ Couldn't save settings or dispose SysTray Icon!
+
+
+ Show description tooltips in connection tree
+
+
+ Show full connections file path in window title
+
+
+ Show logon information on tab names
+
+
+ Show protocols on tab names
+
+
+ Single click on connection opens it
+
+
+ Single click on opened connection in Connection Tree switches to opened Connection Tab
+
+
+ Socks 5
+
+
+ Sort
+
+
+ Ascending (A-Z)
+
+
+ Descending (Z-A)
+
+
+ Please see Help - Getting started - SQL Configuration for more Info!
+
+
+ SQL Server
+
+
+ SSH version 1
+
+
+ SSH version 2
+
+
+ SSH background transfer failed!
+
+
+ SSH transfer failed.
+
+
+ First IP
+
+
+ First Port
+
+
+ Startup/Exit
+
+
+ Status
+
+
+ Switch to Notifications panel on:
+
+
+ Advanced
+
+
+ Tabs && Panels
+
+
+ Updates
+
+
+ Telnet
+
+
+ The following:
+
+
+ Error ({0})
+
+
+ Information ({0})
+
+
+ mRemoteNG password
+
+
+ mRemoteNG password for {0}
+
+
+ Select Panel
+
+
+ Warning ({0})
+
+
+ Transfer
+
+
+ Try to integrate
+
+
+ Show On Toolbar
+
+
+ Ultra VNC Repeater
+
+
+ UltraVNC SingleClick port:
+
+
+ Uncheck the properties you want not to be saved!
+
+
+ mRemoteNG requires an update
+
+
+ mRemoteNG can periodically connect to the mRemoteNG website to check for updates.
+
+
+ The update information could not be downloaded.
+
+
+ Download complete!
+mRemoteNG will now quit and begin with the installation.
+
+
+ The update could not be downloaded.
+
+
+ The update download could not be initiated.
+
+
+ Every {0} days
+
+
+ Daily
+
+
+ Monthly
+
+
+ Weekly
+
+
+ The change log could not be downloaded.
+
+
+ Use a different username and password
+
+
+ User
+
+
+ Use the same username and password
+
+
+ Use a smart card
+
+
+ Use SQL Server to load && save connections
+
+
+ Version
+
+
+ VNC
+
+
+ VNC disconnect failed!
+
+
+ VNC Refresh Screen Failed!
+
+
+ VNC SendSpecialKeys failed!
+
+
+ VNC Set Event Handlers failed!
+
+
+ VNC Set Props Failed!
+
+
+ VNC Toggle SmartSize Failed!
+
+
+ VNC Toggle ViewOnly Failed!
+
+
+ Warn me if authentication fails
+
+
+ Warnings
+
+
+ Yes
+
+
+ RDP Connection Timeout
+
+
+ This node is already in this folder.
+
+
+ Cannot drag node onto itself.
+
+
+ Cannot drag parent node onto child.
+
+
+ This node is not draggable.
+
+
+ Block Cipher Mode
+
+
+ Encryption Engine
+
+
+ Security
+
+
+ Key Derivation Function Iterations
+
+
+ Dynamic
+
+
+ High
+
+
+ Medium
+
+
+ Choose the Sound Quality provided by the protocol: Dynamic, Medium, High
+
+
+ Sound quality
+
+
+ Download Completed!
+
+
+ Download
+
+
+ The number of minutes for the RDP session to sit idle before automatically disconnecting (for no limit use 0)
+
+
+ Minutes to Idle
+
+
+ Add
+
+
+ Title
+
+
+ Are you sure you want to delete the credential record, {0}?
+
+
+ Select whether to receive an alert after the RDP session disconnects due to inactivity
+
+
+ Password must contain at least {0} of the following characters: {1}
+
+
+ Password must contain at least {0} lower case character(s)
+
+
+ Password must contain at least {0} number(s)
+
+
+ Password must contain at least {0} upper case character(s)
+
+
+ Password length must be between {0} and {1}
+
+
+ Choose a path for the mRemoteNG log file
+
+
+ Debug
+
+
+ Show these message types
+
+
+ Log file path
+
+
+ Log these message types
+
+
+ Choose path
+
+
+ Open file
+
+
+ Use default
+
+
+ Logging
+
+
+ Popups
+
+
+ Log to application directory
+
+
+ Assigned Credential
+
+
+ Credentials
+
+
+ Open a different file
+
+
+ Credential not available
+
+
+ Do you really want to delete the theme?
+
+
+ New theme name
+
+
+ Cannot create theme, name already present or special characters in the name
+
+
+ Type the new theme name
+
+
+ Warning: Restart is required to commit any theme configuration change.
+
+
+ Could not find external tool with name "{0}"
+
+
+ Create a New Connection File
+
+
+ The connection file could not be found.
+
+
+ Import an Existing File
+
+
+ Use a Custom File Path
+
+
+ Testing connection
+
+
+ Server '{0}' was not accessible.
+
+
+ Connection successful
+
+
+ Login failed for user '{0}'.
+
+
+ Database '{0}' not available.
+
+
+ Save connections after every edit
+
+
+ Filter search matches in connection tree
+
+
+ Test connection
+
+
+ Read only:
+
+
+ Use UTF8 encoding for RDP "Load Balance Info" property
+
+
+ Timeout [seconds]
+
+
+ Working directory:
+
+
+ Run elevated
+
+
+ Show on toolbar column
+
+
+ Working directory
+
+
+ Lock toolbar positions
+
+
+ Multi SSH toolbar
+
+
+ Import sub OUs
+
+
+ Advanced security options
+
+
+ mRemoteNG Options
+
+
+ Create an empty panel when mRemoteNG starts
+
+
+ Must Be Between 0 and 255
+
+
+ Out Of Range
+
+
+ Delete
+
+
+ Reconnect All Connections
+
+
+ UltraVNC SingleClick
+
+
+ Disconnect Tabs To The Right
+
+
+ Disconnect All But This
+
+
+ Are you sure you want to close all connections except for "{0}"?
+
+
+ An error occurred while trying to reconnect to RDP host '{0}'
+
+
+ An error occurred while trying to change the connection resolution to host '{0}'
+
+
+ Stack trace
+
+
+ Exception Message
+
+
+ mRemoteNG Unhandled Exception
+
+
+ An unhandled exception has occurred
+
+
+ This exception will force mRemoteNG to close
+
+
+ Copy Hostname
+
+
+ Place search bar above connection tree
+
+
+ Track active connection in the connection tree
+
+
+ Always show connection tabs
+
+
+ Release Channel
+
+
+ Stable channel includes final releases only.
+Preview channel includes Betas & Release Candidates.
+Nightly Channel includes Alphas, Betas & Release Candidates.
+
+
+ Apply
+
+
+ Proxy
+
+
+ Multi SSH:
+
+
+ Press ENTER to send. Ctrl+C is sent immediately.
+
+
+ Show this connection in the favorites menu.
+
+
+ Favorite
+
+
+ Favorites
+
+
+ Clear search string
+
+
+ Connect in View Only mode
+
+
+ Do not trim spaces from usernames
+
+
+ Environment
+
+
+ Encrypting {0} entries using {1}/{2} and {3} iterations took {4} seconds.
+
+
+ Encryption Test
+
+
+ Test Settings
+
+
+ Sets the version of RDP to use when opening connections.
+
+
+ RDP Version
+
+
+ Use VM ID to connect to VM running on Hyper-V.
+
+
+ The ID of the Hyper-V virtual machine to connect to.
+
+
+ Use VM ID
+
+
+ VM ID
+
+
+ Could not create RDP client. RDP protocol version {0} is not supported on this machine. Please choose an older protocol version.
+
+
+ For connection through a SSH tunnel (jump host) specify SSH connection to be used to establish SSH tunnel.
+
+
+ SSH Tunnel
+
+
+ Specify here additional options to be used for SSH connection. See putty documentation for further details.
+
+
+ SSH Options
+
+
+ SSH Tunnel connection configuration problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. A connection with the name configured as SSH Tunnel and protocol SSH version 1 or SSH2 version 2 cannot be found in the connection tree. Clear SSH Tunnel configuration or specify existing SSH connection.
+
+
+ SSH tunnel configuration problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Connection configured as SSH Tunnel found in tree, but protocol is not derived from putty. Make sure connection configured as SSH Tunnel is using SSH protocol.
+
+
+ SSH tunnel initialization problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. SSH connection could not be initialized. Check for any problems with the connection configured as SSH Tunnel.
+
+
+ SSH tunnel connection problem. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. SSH connection failed. Check for any problems with the connection configured as SSH Tunnel.
+
+
+ SSH tunnel connection failed. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Putty process terminated. Check for any problems with the connection configured as SSH Tunnel.
+
+
+ SSH tunnel connection timed out. Connection to: "{0}" via SSH Tunnel: "{1}" not possible. Local tunnel port did not become available in time. Check for any problems with the connection configured as SSH Tunnel.
+
+
+ Start minimized
+
+
+ Set a password needed to encrypt the connection file with. You will be prompted to enter your passcode before starting mRemoteNG.
+
+
+ Connect to a Hyper-V host with enhanced mode enabled.
+
+
+ Use enhanced mode
+
+
+ Specifies the password of the Remote Desktop Gateway server.
+
+
+ Close to notification area
+
+
+ Windows
+
+
+ PowerShell
+
+
+ Changelog
+
+
+ Credits
+
+
+ License
+
+
+ Determines whether cursor flashes should be disabled.
+
+
+ Determines whether a mouse shadow should be visible.
+
+
+ Determines whether window content is displayed when you drag the window to a new location.
+
+
+ Determines whether menus and windows can be displayed with animation effects in the remote session.
+
+
+ Edge Chromium
+
+
+ Failed to contruct the URL to load
+
+
+ Show/Hide Menu Strip
+
+
+ The program to be started on the remote server upon connection.
+
+
+ Specifies the working directory of the alternate shell.
+
+
+ Alternate Shell
+ https://docs.microsoft.com/en-us/windows/win32/termserv/imstscsecuredsettings-startprogram
+
+
+ Alternate shell working directory
+ https://docs.microsoft.com/en-us/windows/win32/termserv/imstscsecuredsettings-workdir
+
+
+ Disk Drives
+
+
+ Smart Cards
+
+
+ Apply inheritance to children
+
+
+ Apply default inheritance
+
+
+ SmartCard
+
+
+ Remote Desktop Services
+
\ No newline at end of file
diff --git a/mRemoteNG/Tree/Root/RootNodeInfo.cs b/mRemoteNG/Tree/Root/RootNodeInfo.cs
index fd5f7856..b738cda1 100644
--- a/mRemoteNG/Tree/Root/RootNodeInfo.cs
+++ b/mRemoteNG/Tree/Root/RootNodeInfo.cs
@@ -69,17 +69,5 @@ namespace mRemoteNG.Tree.Root
}
#endregion
-
- public override void AddChildAt(ConnectionInfo newChildItem, int index)
- {
- newChildItem.Inheritance.DisableInheritance();
- base.AddChildAt(newChildItem, index);
- }
-
- public override void RemoveChild(ConnectionInfo removalTarget)
- {
- removalTarget.Inheritance.EnableInheritance();
- base.RemoveChild(removalTarget);
- }
}
}
\ No newline at end of file
diff --git a/mRemoteNG/UI/Controls/ConnectionContextMenu.cs b/mRemoteNG/UI/Controls/ConnectionContextMenu.cs
index 87f7c5e6..7d68cde8 100644
--- a/mRemoteNG/UI/Controls/ConnectionContextMenu.cs
+++ b/mRemoteNG/UI/Controls/ConnectionContextMenu.cs
@@ -43,6 +43,7 @@ namespace mRemoteNG.UI.Controls
private ToolStripMenuItem _cMenTreeMoveDown;
private ToolStripMenuItem _cMenTreeToolsExternalApps;
private ToolStripMenuItem _cMenTreeDuplicate;
+ private ToolStripMenuItem _cMenInheritanceSubMenu;
private ToolStripMenuItem _cMenTreeConnectWithOptionsChoosePanelBeforeConnecting;
private ToolStripMenuItem _cMenTreeConnectWithOptionsDontConnectToConsoleSession;
private ToolStripMenuItem _cMenTreeImport;
@@ -51,6 +52,8 @@ namespace mRemoteNG.UI.Controls
private ToolStripMenuItem _cMenTreeImportFile;
private ToolStripMenuItem _cMenTreeImportActiveDirectory;
private ToolStripMenuItem _cMenTreeImportPortScan;
+ private ToolStripMenuItem _cMenTreeApplyInheritanceToChildren;
+ private ToolStripMenuItem _cMenTreeApplyDefaultInheritance;
private readonly ConnectionTree.ConnectionTree _connectionTree;
private readonly IConnectionInitiator _connectionInitiator;
@@ -99,6 +102,9 @@ namespace mRemoteNG.UI.Controls
_cMenTreeImportFile = new ToolStripMenuItem();
_cMenTreeImportActiveDirectory = new ToolStripMenuItem();
_cMenTreeImportPortScan = new ToolStripMenuItem();
+ _cMenInheritanceSubMenu = new ToolStripMenuItem();
+ _cMenTreeApplyInheritanceToChildren = new ToolStripMenuItem();
+ _cMenTreeApplyDefaultInheritance = new ToolStripMenuItem();
_cMenTreeExportFile = new ToolStripMenuItem();
_cMenTreeSep4 = new ToolStripSeparator();
_cMenTreeAddConnection = new ToolStripMenuItem();
@@ -129,6 +135,7 @@ namespace mRemoteNG.UI.Controls
_cMenTreeRename,
_cMenTreeDelete,
_cMenTreeCopyHostname,
+ _cMenInheritanceSubMenu,
_cMenTreeSep3,
_cMenTreeImport,
_cMenTreeExportFile,
@@ -395,8 +402,34 @@ namespace mRemoteNG.UI.Controls
_cMenTreeMoveDown.Size = new System.Drawing.Size(199, 22);
_cMenTreeMoveDown.Text = "Move down";
_cMenTreeMoveDown.Click += OnMoveDownClicked;
+ //
+ // cMenEditSubMenu
+ //
+ _cMenInheritanceSubMenu.DropDownItems.AddRange(new ToolStripItem[]
+ {
+ _cMenTreeApplyInheritanceToChildren,
+ _cMenTreeApplyDefaultInheritance
+ });
+ _cMenInheritanceSubMenu.Name = "_cMenInheritanceSubMenu";
+ _cMenInheritanceSubMenu.Size = new System.Drawing.Size(199, 22);
+ _cMenInheritanceSubMenu.Text = "Inheritance";
+ //
+ // _cMenTreeApplyInheritanceToChildren
+ //
+ _cMenTreeApplyInheritanceToChildren.Name = "_cMenTreeApplyInheritanceToChildren";
+ _cMenTreeApplyInheritanceToChildren.Size = new System.Drawing.Size(199, 22);
+ _cMenTreeApplyInheritanceToChildren.Text = "Apply inheritance to children";
+ _cMenTreeApplyInheritanceToChildren.Click += OnApplyInheritanceToChildrenClicked;
+ //
+ // _cMenTreeApplyDefaultInheritance
+ //
+ _cMenTreeApplyDefaultInheritance.Name = "_cMenTreeApplyDefaultInheritance";
+ _cMenTreeApplyDefaultInheritance.Size = new System.Drawing.Size(199, 22);
+ _cMenTreeApplyDefaultInheritance.Text = "Apply default inheritance";
+ _cMenTreeApplyDefaultInheritance.Click += OnApplyDefaultInheritanceClicked;
}
+
private void ApplyLanguage()
{
_cMenTreeConnect.Text = Language.Connect;
@@ -431,6 +464,10 @@ namespace mRemoteNG.UI.Controls
_cMenTreeToolsSortDescending.Text = Language.SortDesc;
_cMenTreeMoveUp.Text = Language.MoveUp;
_cMenTreeMoveDown.Text = Language.MoveDown;
+
+ _cMenInheritanceSubMenu.Text = Language.Inheritance;
+ _cMenTreeApplyInheritanceToChildren.Text = Language.ApplyInheritanceToChildren;
+ _cMenTreeApplyDefaultInheritance.Text = Language.ApplyDefaultInheritance;
}
internal void ShowHideMenuItems()
@@ -459,6 +496,9 @@ namespace mRemoteNG.UI.Controls
{
ShowHideMenuItemsForConnectionNode(_connectionTree.SelectedNode);
}
+
+ _cMenInheritanceSubMenu.Enabled = _cMenInheritanceSubMenu.DropDownItems
+ .OfType().Any(i => i.Enabled);
}
catch (Exception ex)
{
@@ -487,6 +527,9 @@ namespace mRemoteNG.UI.Controls
_cMenTreeMoveUp.Enabled = false;
_cMenTreeMoveDown.Enabled = false;
_cMenTreeConnectWithOptionsViewOnly.Enabled = false;
+ _cMenTreeApplyInheritanceToChildren.Enabled = false;
+ _cMenTreeApplyDefaultInheritance.Enabled = false;
+ _cMenTreeCopyHostname.Enabled = false;
}
internal void ShowHideMenuItemsForRootConnectionNode()
@@ -504,6 +547,8 @@ namespace mRemoteNG.UI.Controls
_cMenTreeMoveUp.Enabled = false;
_cMenTreeMoveDown.Enabled = false;
_cMenTreeConnectWithOptionsViewOnly.Enabled = false;
+ _cMenTreeApplyInheritanceToChildren.Enabled = false;
+ _cMenTreeApplyDefaultInheritance.Enabled = false;
}
internal void ShowHideMenuItemsForContainer(ContainerInfo containerInfo)
@@ -540,6 +585,8 @@ namespace mRemoteNG.UI.Controls
_cMenTreeImport.Enabled = false;
_cMenTreeExportFile.Enabled = false;
_cMenTreeConnectWithOptionsViewOnly.Enabled = false;
+ _cMenTreeApplyInheritanceToChildren.Enabled = false;
+ _cMenTreeApplyDefaultInheritance.Enabled = false;
}
internal void ShowHideMenuItemsForConnectionNode(ConnectionInfo connectionInfo)
@@ -561,6 +608,8 @@ namespace mRemoteNG.UI.Controls
if (connectionInfo.Protocol != ProtocolType.RDP && connectionInfo.Protocol != ProtocolType.VNC)
_cMenTreeConnectWithOptionsViewOnly.Enabled = false;
+
+ _cMenTreeApplyInheritanceToChildren.Enabled = false;
}
internal void DisableShortcutKeys()
@@ -872,6 +921,22 @@ namespace mRemoteNG.UI.Controls
}
}
+ private void OnApplyInheritanceToChildrenClicked(object sender, EventArgs e)
+ {
+ if (!(_connectionTree.SelectedNode is ContainerInfo container))
+ return;
+
+ container.ApplyInheritancePropertiesToChildren();
+ }
+
+ private void OnApplyDefaultInheritanceClicked(object sender, EventArgs e)
+ {
+ if (_connectionTree.SelectedNode == null)
+ return;
+
+ DefaultConnectionInheritance.Instance.SaveTo(_connectionTree.SelectedNode.Inheritance);
+ }
+
#endregion
}
}
\ No newline at end of file
diff --git a/mRemoteNG/UI/Window/ConfigWindow.cs b/mRemoteNG/UI/Window/ConfigWindow.cs
index 0666e358..54b4b6f2 100644
--- a/mRemoteNG/UI/Window/ConfigWindow.cs
+++ b/mRemoteNG/UI/Window/ConfigWindow.cs
@@ -208,10 +208,8 @@ namespace mRemoteNG.UI.Window
public bool CanShowProperties => SelectedTreeNode != null;
public bool InheritanceVisible => _btnShowInheritance.Checked;
- public bool CanShowInheritance => !_pGrid.RootNodeSelected &&
- SelectedTreeNode != null &&
- _pGrid.SelectedConnectionInfo?.Parent != null &&
- !(_pGrid.SelectedConnectionInfo.Parent is RootNodeInfo);
+ public bool CanShowInheritance => SelectedTreeNode != null &&
+ _pGrid.SelectedConnectionInfo?.Parent != null;
public bool DefaultPropertiesVisible => _btnShowDefaultProperties.Checked;
public bool CanShowDefaultProperties => true;
diff --git a/mRemoteNG/mRemoteNG.csproj b/mRemoteNG/mRemoteNG.csproj
index 4a089ca4..483c87bb 100644
--- a/mRemoteNG/mRemoteNG.csproj
+++ b/mRemoteNG/mRemoteNG.csproj
@@ -1,288 +1,288 @@
-
-
-
- WinExe
- net6.0-windows
- true
- Icons\mRemoteNG.ico
- 1.77.2
- Multi-protocol remote connections manager
- 2020 mRemoteNG Dev Team, 2010-2013 Riley McArdle, 2007-2009 Felix Deimel
- COPYING.TXT
- https://mremoteng.org/
- x64
- Debug;Release;Debug Portable;Release Portable;Release Installer
- false
- preview
-
-
- DEBUG
- false
-
- bin\x64\Debug\
-
-
-
-
- false
- bin\x64\Release\
- false
-
-
-
-
- DEBUG;PORTABLE
- false
- bin\x64\Debug Portable\
- false
-
-
-
-
- PORTABLE
- false
- bin\x64\Release Portable\
- false
-
-
-
-
-
-
-
-
-
- aximp
- 0
- 1
- 8c11efa1-92c3-11d1-bc1e-00c04fa31489
- 0
- false
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- True
- True
- Settings.settings
-
-
-
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- Always
-
-
- True
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ WinExe
+ net6.0-windows
+ true
+ Icons\mRemoteNG.ico
+ 1.77.2
+ Multi-protocol remote connections manager
+ 2020 mRemoteNG Dev Team, 2010-2013 Riley McArdle, 2007-2009 Felix Deimel
+ COPYING.TXT
+ https://mremoteng.org/
+ x64
+ Debug;Release;Debug Portable;Release Portable;Release Installer
+ false
+ preview
+
+
+ DEBUG
+ false
+
+ bin\x64\Debug\
+
+
+
+
+ false
+ bin\x64\Release\
+ false
+
+
+
+
+ DEBUG;PORTABLE
+ false
+ bin\x64\Debug Portable\
+ false
+
+
+
+
+ PORTABLE
+ false
+ bin\x64\Release Portable\
+ false
+
+
+
+
+
+
+
+
+
+ aximp
+ 0
+ 1
+ 8c11efa1-92c3-11d1-bc1e-00c04fa31489
+ 0
+ false
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ True
+ True
+ Settings.settings
+
+
+
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ True
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mRemoteNGSpecs/app.config b/mRemoteNGSpecs/app.config
index 88412249..061123b1 100644
--- a/mRemoteNGSpecs/app.config
+++ b/mRemoteNGSpecs/app.config
@@ -1,53 +1,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mRemoteNGTests/Config/Serializers/ConnectionSerializers/Csv/CsvConnectionsDeserializerMremotengFormatTests.cs b/mRemoteNGTests/Config/Serializers/ConnectionSerializers/Csv/CsvConnectionsDeserializerMremotengFormatTests.cs
index 3258164c..c55f2d26 100644
--- a/mRemoteNGTests/Config/Serializers/ConnectionSerializers/Csv/CsvConnectionsDeserializerMremotengFormatTests.cs
+++ b/mRemoteNGTests/Config/Serializers/ConnectionSerializers/Csv/CsvConnectionsDeserializerMremotengFormatTests.cs
@@ -15,7 +15,7 @@ using NUnit.Framework;
namespace mRemoteNGTests.Config.Serializers.ConnectionSerializers.Csv
{
- public class CsvConnectionsDeserializerMremotengFormatTests
+ public class CsvConnectionsDeserializerMremotengFormatTests
{
private CsvConnectionsDeserializerMremotengFormat _deserializer;
private CsvConnectionsSerializerMremotengFormat _serializer;
@@ -168,8 +168,17 @@ namespace mRemoteNGTests.Config.Serializers.ConnectionSerializers.Csv
public static IEnumerable InheritanceTestCases()
{
- var testInheritance = GetTestConnectionWithAllInherited().Inheritance;
- var properties = testInheritance.GetProperties();
+ var ignoreProperties = new[]
+ {
+ nameof(ConnectionInfoInheritance.EverythingInherited),
+ nameof(ConnectionInfoInheritance.Parent),
+ nameof(ConnectionInfoInheritance.EverythingInherited)
+ };
+ var properties = typeof(ConnectionInfoInheritance)
+ .GetProperties()
+ .Where(property => !ignoreProperties.Contains(property.Name));
+ var testCases = new List();
+ var testInheritance = GetTestConnectionWithAllInherited().Inheritance;
return properties
.Select(property =>
diff --git a/mRemoteNGTests/Connection/ConnectionInfoInheritanceTests.cs b/mRemoteNGTests/Connection/ConnectionInfoInheritanceTests.cs
index 2b18a5dc..e1e582ce 100644
--- a/mRemoteNGTests/Connection/ConnectionInfoInheritanceTests.cs
+++ b/mRemoteNGTests/Connection/ConnectionInfoInheritanceTests.cs
@@ -1,77 +1,91 @@
-using mRemoteNG.Connection;
-using mRemoteNG.Container;
-using NUnit.Framework;
-using System.Collections;
+using System.Collections;
using System.Linq;
using System.Reflection;
+using mRemoteNG.Connection;
+using mRemoteNG.Container;
+using mRemoteNG.Tree.Root;
+using NUnit.Framework;
namespace mRemoteNGTests.Connection
{
- [TestFixture]
+ [TestFixture]
public class ConnectionInfoInheritanceTests
{
- private ConnectionInfo _connectionInfo;
- private ConnectionInfoInheritance _inheritance;
- private PropertyInfo[] _inheritanceProperties = typeof(ConnectionInfoInheritance).GetProperties();
+ private readonly PropertyInfo[] _inheritanceProperties = typeof(ConnectionInfoInheritance).GetProperties();
- [SetUp]
- public void Setup()
- {
- _connectionInfo = new ConnectionInfo();
- _inheritance = new ConnectionInfoInheritance(_connectionInfo);
- }
-
- [TearDown]
- public void Teardown()
- {
- _connectionInfo = null;
- _inheritance = null;
- }
-
- [Test]
+ [Test]
public void TurnOffInheritanceCompletely()
{
- _inheritance.Username = true;
- _inheritance.TurnOffInheritanceCompletely();
- Assert.That(AllInheritancePropertiesAreFalse(), Is.True);
+ var inheritance = new ConnectionInfoInheritance(new ConnectionInfo()) {Username = true};
+ inheritance.TurnOffInheritanceCompletely();
+ Assert.That(AllInheritancePropertiesAreFalse(inheritance), Is.True);
}
[Test]
public void TurnOnInheritanceCompletely()
{
- _inheritance.TurnOnInheritanceCompletely();
- Assert.That(AllInheritancePropertiesAreTrue(), Is.True);
+ var inheritance = new ConnectionInfoInheritance(new ConnectionInfo());
+ inheritance.TurnOnInheritanceCompletely();
+ Assert.That(AllInheritancePropertiesAreTrue(inheritance), Is.True);
}
[Test]
- public void DisableInheritanceTurnsOffAllInheritance()
+ public void InheritanceIsDisabledWhenAttachedToARootNode()
{
- _inheritance.Username = true;
- _inheritance.DisableInheritance();
- Assert.That(AllInheritancePropertiesAreFalse(), Is.True);
+ var inheritance = new ConnectionInfoInheritance(new RootNodeInfo(RootNodeType.Connection));
+ Assert.That(inheritance.InheritanceActive, Is.False);
}
[Test]
- public void EnableInheritanceRestoresPreviousInheritanceValues()
+ public void InheritanceIsDisabledWhenAttachedToAPuttyRootNode()
{
- _inheritance.Username = true;
- _inheritance.DisableInheritance();
- _inheritance.EnableInheritance();
- Assert.That(_inheritance.Username, Is.True);
+ var inheritance = new ConnectionInfoInheritance(new RootNodeInfo(RootNodeType.PuttySessions));
+ Assert.That(inheritance.InheritanceActive, Is.False);
}
[Test]
+ public void InheritanceIsDisabledWhenAttachedToAPuttyNode()
+ {
+ var inheritance = new ConnectionInfoInheritance(new RootPuttySessionsNodeInfo());
+ Assert.That(inheritance.InheritanceActive, Is.False);
+ }
+
+ [Test]
+ public void InheritanceIsDisabledWhenAttachedToANodeDirectlyUnderTheRootNode()
+ {
+ var con = new ConnectionInfo();
+ new RootNodeInfo(RootNodeType.Connection).AddChild(con);
+ Assert.That(con.Inheritance.InheritanceActive, Is.False);
+ }
+
+ [Test]
+ public void InheritanceIsEnabledWhenAttachedToNormalConnectionInfo()
+ {
+ var inheritance = new ConnectionInfoInheritance(new ConnectionInfo());
+ Assert.That(inheritance.InheritanceActive, Is.True);
+ }
+
+ [Test]
+ public void InheritanceIsEnabledWhenAttachedToNormalContainerInfo()
+ {
+ var inheritance = new ConnectionInfoInheritance(new ContainerInfo());
+ Assert.That(inheritance.InheritanceActive, Is.True);
+ }
+
+ [Test]
public void GetPropertiesReturnsListOfSettableProperties()
{
- var hasIconProperty = _inheritance.GetProperties().Contains(typeof(ConnectionInfoInheritance).GetProperty("Icon"));
+ var inheritance = new ConnectionInfoInheritance(new ConnectionInfo());
+ var hasIconProperty = inheritance.GetProperties().Contains(typeof(ConnectionInfoInheritance).GetProperty("Icon"));
Assert.That(hasIconProperty, Is.True);
}
[Test]
public void GetPropertiesExludesPropertiesThatShouldNotBeSet()
{
- var hasEverythingInheritedProperty = _inheritance.GetProperties().Contains(typeof(ConnectionInfoInheritance).GetProperty("EverythingInherited"));
+ var inheritance = new ConnectionInfoInheritance(new ConnectionInfo());
+ var hasEverythingInheritedProperty = inheritance.GetProperties().Contains(typeof(ConnectionInfoInheritance).GetProperty("EverythingInherited"));
Assert.That(hasEverythingInheritedProperty, Is.False);
}
@@ -91,23 +105,25 @@ namespace mRemoteNGTests.Connection
Assert.That(con1.AutomaticResize, Is.EqualTo(expectedSetting));
}
- private bool AllInheritancePropertiesAreTrue()
+ private bool AllInheritancePropertiesAreTrue(ConnectionInfoInheritance inheritance)
{
var allPropertiesTrue = true;
foreach (var property in _inheritanceProperties)
{
- if (PropertyIsBoolean(property) && PropertyIsChangedWhenSettingInheritAll(property) && BooleanPropertyIsSetToFalse(property))
+ if (PropertyIsBoolean(property) && PropertyIsChangedWhenSettingInheritAll(property) &&
+ BooleanPropertyIsSetToFalse(property, inheritance))
allPropertiesTrue = false;
}
return allPropertiesTrue;
}
- private bool AllInheritancePropertiesAreFalse()
+ private bool AllInheritancePropertiesAreFalse(ConnectionInfoInheritance inheritance)
{
var allPropertiesFalse = true;
foreach (var property in _inheritanceProperties)
{
- if (PropertyIsBoolean(property) && PropertyIsChangedWhenSettingInheritAll(property) && BooleanPropertyIsSetToTrue(property))
+ if (PropertyIsBoolean(property) && PropertyIsChangedWhenSettingInheritAll(property) &&
+ BooleanPropertyIsSetToTrue(property, inheritance))
allPropertiesFalse = false;
}
return allPropertiesFalse;
@@ -124,14 +140,14 @@ namespace mRemoteNGTests.Connection
return (property.PropertyType.Name == typeof(bool).Name);
}
- private bool BooleanPropertyIsSetToFalse(PropertyInfo property)
+ private bool BooleanPropertyIsSetToFalse(PropertyInfo property, ConnectionInfoInheritance inheritance)
{
- return (bool)property.GetValue(_inheritance) == false;
+ return (bool)property.GetValue(inheritance) == false;
}
- private bool BooleanPropertyIsSetToTrue(PropertyInfo property)
+ private bool BooleanPropertyIsSetToTrue(PropertyInfo property, ConnectionInfoInheritance inheritance)
{
- return (bool)property.GetValue(_inheritance);
+ return (bool)property.GetValue(inheritance);
}
}
}
\ No newline at end of file
diff --git a/mRemoteNGTests/Connection/ConnectionInfoTests.cs b/mRemoteNGTests/Connection/ConnectionInfoTests.cs
index a439ad24..681f772d 100644
--- a/mRemoteNGTests/Connection/ConnectionInfoTests.cs
+++ b/mRemoteNGTests/Connection/ConnectionInfoTests.cs
@@ -93,16 +93,6 @@ namespace mRemoteNGTests.Connection
Assert.That(nameOfModifiedProperty, Is.EqualTo("OpenConnections"));
}
- [TestCaseSource(typeof(InheritancePropertyProvider), nameof(InheritancePropertyProvider.GetProperties))]
- public void MovingAConnectionUnderRootNodeDisablesInheritance(PropertyInfo property)
- {
- var rootNode = new RootNodeInfo(RootNodeType.Connection);
- _connectionInfo.Inheritance.EverythingInherited = true;
- _connectionInfo.SetParent(rootNode);
- var propertyValue = property.GetValue(_connectionInfo.Inheritance);
- Assert.That(propertyValue, Is.False);
- }
-
[TestCaseSource(typeof(InheritancePropertyProvider), nameof(InheritancePropertyProvider.GetProperties))]
public void MovingAConnectionFromUnderRootNodeToUnderADifferentNodeEnablesInheritance(PropertyInfo property)
{
diff --git a/mRemoteNGTests/Container/ContainerInfoTests.cs b/mRemoteNGTests/Container/ContainerInfoTests.cs
index 8c08a419..0c8cb3b3 100644
--- a/mRemoteNGTests/Container/ContainerInfoTests.cs
+++ b/mRemoteNGTests/Container/ContainerInfoTests.cs
@@ -2,12 +2,13 @@
using System.Linq;
using mRemoteNG.Connection;
using mRemoteNG.Container;
+using mRemoteNGTests.TestHelpers;
using NUnit.Framework;
namespace mRemoteNGTests.Container
{
- public class ContainerInfoTests
+ public class ContainerInfoTests
{
private ContainerInfo _containerInfo;
private ConnectionInfo _con1;
@@ -434,5 +435,69 @@ namespace mRemoteNGTests.Container
var grandchildOrderAfterSort = _containerInfo.Children.ToArray();
Assert.That(grandchildOrderAfterSort, Is.Ordered.Descending.By(nameof(ConnectionInfo.ConstantID)));
}
- }
+
+ [Test]
+ public void CanApplyConnectionSettingsToChildren()
+ {
+ var comparer = new ConnectionInfoAllConnectionPropertiesEqualityComparer();
+ var container = new ContainerInfo();
+ var con1 = ConnectionInfoHelpers.GetRandomizedConnectionInfo();
+ var con2 = ConnectionInfoHelpers.GetRandomizedConnectionInfo();
+ container.AddChild(con1);
+ container.AddChild(con2);
+
+ container.ApplyConnectionPropertiesToChildren();
+
+ Assert.That(con1, Is.EqualTo(container).Using(comparer));
+ Assert.That(con2, Is.EqualTo(container).Using(comparer));
+ }
+
+ [Test]
+ public void ApplyConnectionPropertiesToChildrenWorksRecursively()
+ {
+ var comparer = new ConnectionInfoAllConnectionPropertiesEqualityComparer();
+ var container = new ContainerInfo();
+ var subContainer = ConnectionInfoHelpers.GetRandomizedContainerInfo();
+ var con1 = ConnectionInfoHelpers.GetRandomizedConnectionInfo();
+ container.AddChild(subContainer);
+ subContainer.AddChild(con1);
+
+ container.ApplyConnectionPropertiesToChildren();
+
+ Assert.That(subContainer, Is.EqualTo(container).Using(comparer));
+ Assert.That(con1, Is.EqualTo(container).Using(comparer));
+ }
+
+ [Test]
+ public void CanApplyInheritanceSettingsToChildren()
+ {
+ var comparer = new ConnectionInheritanceAllPropertiesEqualityComparer();
+ var container = new ContainerInfo();
+ var con1 = ConnectionInfoHelpers.GetRandomizedConnectionInfo(randomizeInheritance:true);
+ var con2 = ConnectionInfoHelpers.GetRandomizedConnectionInfo(randomizeInheritance: true);
+ container.AddChild(con1);
+ container.AddChild(con2);
+
+ container.ApplyInheritancePropertiesToChildren();
+
+ Assert.That(con1.Inheritance, Is.EqualTo(container.Inheritance).Using(comparer));
+ Assert.That(con2.Inheritance, Is.EqualTo(container.Inheritance).Using(comparer));
+ }
+
+ [Test]
+ public void ApplyInheritancePropertiesToChildrenWorksRecursively()
+ {
+ var comparer = new ConnectionInheritanceAllPropertiesEqualityComparer();
+ var container = new ContainerInfo();
+ var subContainer = ConnectionInfoHelpers.GetRandomizedContainerInfo(randomizeInheritance: true);
+ var con1 = ConnectionInfoHelpers.GetRandomizedConnectionInfo(randomizeInheritance: true);
+ container.AddChild(subContainer);
+ subContainer.AddChild(con1);
+
+ container.ApplyInheritancePropertiesToChildren();
+
+ Assert.That(subContainer.Inheritance, Is.EqualTo(container.Inheritance).Using(comparer));
+ Assert.That(con1.Inheritance, Is.EqualTo(container.Inheritance).Using(comparer));
+ }
+ }
}
\ No newline at end of file
diff --git a/mRemoteNGTests/Container/RootNodeInfoTests.cs b/mRemoteNGTests/Container/RootNodeInfoTests.cs
index fbd5894e..97927e68 100644
--- a/mRemoteNGTests/Container/RootNodeInfoTests.cs
+++ b/mRemoteNGTests/Container/RootNodeInfoTests.cs
@@ -4,15 +4,23 @@ using NUnit.Framework;
namespace mRemoteNGTests.Container
{
- public class RootNodeInfoTests
+ public class RootNodeInfoTests
{
[Test]
public void InheritanceIsDisabledForNodesDirectlyUnderRootNode()
{
- var rootNode = new RootNodeInfo(RootNodeType.Connection);
- var con1 = new ConnectionInfo { Inheritance = { Password = true } };
+ var expected = "UnInheritedValue";
+ var rootNode = new RootNodeInfo(RootNodeType.Connection)
+ {
+ Description = "thisCameFromTheRootNode"
+ };
+ var con1 = new ConnectionInfo
+ {
+ Description = expected,
+ Inheritance = { Description = true }
+ };
rootNode.AddChild(con1);
- Assert.That(con1.Inheritance.Password, Is.False);
+ Assert.That(con1.Description, Is.EqualTo(expected));
}
}
}
diff --git a/mRemoteNGTests/TestHelpers/ConnectionInfoAllConnectionPropertiesEqualityComparer.cs b/mRemoteNGTests/TestHelpers/ConnectionInfoAllConnectionPropertiesEqualityComparer.cs
new file mode 100644
index 00000000..33aaf926
--- /dev/null
+++ b/mRemoteNGTests/TestHelpers/ConnectionInfoAllConnectionPropertiesEqualityComparer.cs
@@ -0,0 +1,30 @@
+using System.Collections.Generic;
+using System.Linq;
+using mRemoteNG.Connection;
+
+namespace mRemoteNGTests.TestHelpers
+{
+ public class ConnectionInfoAllConnectionPropertiesEqualityComparer : IEqualityComparer
+ {
+ public bool Equals(ConnectionInfo x, ConnectionInfo y)
+ {
+ if (x == null && y == null)
+ return true;
+ if ((x == null) != (y == null))
+ return false;
+ return GetHashCode(x) == GetHashCode(y);
+ }
+
+ public int GetHashCode(ConnectionInfo connectionInfo)
+ {
+ var allProperties = connectionInfo.GetSerializableProperties();
+
+ unchecked // Overflow is fine, just wrap
+ {
+ return allProperties
+ .Aggregate(17,
+ (current, prop) => current * 23 + prop.GetValue(connectionInfo).GetHashCode());
+ }
+ }
+ }
+}
diff --git a/mRemoteNGTests/TestHelpers/ConnectionInheritanceAllPropertiesEqualityComparer.cs b/mRemoteNGTests/TestHelpers/ConnectionInheritanceAllPropertiesEqualityComparer.cs
new file mode 100644
index 00000000..21fef6f9
--- /dev/null
+++ b/mRemoteNGTests/TestHelpers/ConnectionInheritanceAllPropertiesEqualityComparer.cs
@@ -0,0 +1,30 @@
+using System.Collections.Generic;
+using System.Linq;
+using mRemoteNG.Connection;
+
+namespace mRemoteNGTests.TestHelpers
+{
+ public class ConnectionInheritanceAllPropertiesEqualityComparer : IEqualityComparer
+ {
+ public bool Equals(ConnectionInfoInheritance x, ConnectionInfoInheritance y)
+ {
+ if (x == null && y == null)
+ return true;
+ if ((x == null) != (y == null))
+ return false;
+ return GetHashCode(x) == GetHashCode(y);
+ }
+
+ public int GetHashCode(ConnectionInfoInheritance inheritance)
+ {
+ var allProperties = inheritance.GetProperties();
+
+ unchecked // Overflow is fine, just wrap
+ {
+ return allProperties
+ .Aggregate(17,
+ (current, prop) => current * 23 + prop.GetValue(inheritance).GetHashCode());
+ }
+ }
+ }
+}
diff --git a/mRemoteNGTests/UI/Window/ConfigWindowTests/ConfigWindowGeneralTests.cs b/mRemoteNGTests/UI/Window/ConfigWindowTests/ConfigWindowGeneralTests.cs
index 8df8c976..761ae733 100644
--- a/mRemoteNGTests/UI/Window/ConfigWindowTests/ConfigWindowGeneralTests.cs
+++ b/mRemoteNGTests/UI/Window/ConfigWindowTests/ConfigWindowGeneralTests.cs
@@ -86,26 +86,7 @@ namespace mRemoteNGTests.UI.Window.ConfigWindowTests
() => "The property mode should switch from inheritance to connection properties when clicking on the root node.");
}
- [Test]
- public void SwitchFromInheritanceToConnectionPropertiesWhenClickingChildOfRootNode()
- {
- // connection with a normal parent container
- var root = new RootNodeInfo(RootNodeType.Connection);
- var containerWhoseParentIsRoot = new ContainerInfo();
- var connection = new ConnectionInfo();
- root.AddChild(containerWhoseParentIsRoot);
- containerWhoseParentIsRoot.AddChild(connection);
-
- _configWindow.SelectedTreeNode = connection;
- _configWindow.ShowInheritanceProperties();
-
- _configWindow.SelectedTreeNode = containerWhoseParentIsRoot;
- Assert.That(_configWindow.PropertiesVisible, Is.True,
- () => "The property mode should switch from inheritance to connection properties " +
- "when clicking on a container whose parent is the root node.");
- }
-
- [TestCaseSource(nameof(EveryNodeType))]
+ [TestCaseSource(nameof(EveryNodeType))]
public void DefaultConnectionPropertiesCanBeShownRegardlessOfWhichNodeIsSelected(ConnectionInfo selectedObject)
{
_configWindow.SelectedTreeNode = selectedObject;
@@ -167,47 +148,28 @@ namespace mRemoteNGTests.UI.Window.ConfigWindowTests
private static IEnumerable EveryNodeType()
{
var protocolTypes = typeof(ProtocolType).GetEnumValues().OfType().ToList();
- var root = new RootNodeInfo(RootNodeType.Connection);
var container = new ContainerInfo();
- var connectionsWithNormalParent = protocolTypes
+ var connections = protocolTypes
.Select(protocolType =>
{
var c = new ConnectionInfo {Protocol = protocolType};
c.SetParent(container);
- return new TestCaseData(c).SetName(protocolType + ", Connection, NormalParent");
+ return new TestCaseData(c).SetName(protocolType + ", Connection");
});
- var connectionsWithRootParent = protocolTypes
- .Select(protocolType =>
- {
- var c = new ConnectionInfo { Protocol = protocolType };
- c.SetParent(root);
- return new TestCaseData(c).SetName(protocolType + ", Connection, RootParent");
- });
-
- var contianersWithNormalParent = protocolTypes
+ var containers = protocolTypes
.Select(protocolType =>
{
var c = new ContainerInfo { Protocol = protocolType };
c.SetParent(container);
- return new TestCaseData(c).SetName(protocolType + ", Connection, NormalParent");
+ return new TestCaseData(c).SetName(protocolType + ", Connection");
});
- var containersWithRootParent = protocolTypes
- .Select(protocolType =>
- {
- var c = new ContainerInfo { Protocol = protocolType };
- c.SetParent(root);
- return new TestCaseData(c).SetName(protocolType + ", Connection, RootParent");
- });
-
- return connectionsWithNormalParent
- .Concat(connectionsWithRootParent)
- .Concat(contianersWithNormalParent)
- .Concat(containersWithRootParent)
+ return connections
+ .Concat(containers)
.Concat(new[]
{
- new TestCaseData(root).SetName("RootNode"),
+ new TestCaseData(new RootNodeInfo(RootNodeType.Connection)).SetName("RootNode"),
new TestCaseData(new RootPuttySessionsNodeInfo()).SetName("RootPuttyNode"),
new TestCaseData(new PuttySessionInfo()).SetName("PuttyNode"),
new TestCaseData(null).SetName("Null"),