Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/mRemoteNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Rainier <jonathan@rainier.tech>2022-04-23 22:22:08 +0300
committerJonathan Rainier <jonathan@rainier.tech>2022-04-23 22:22:08 +0300
commitd8bb561063b6203eb663f3b5f918d2ac8ae21bdf (patch)
treea2cbf0f4600e7b0cbf1846e4e3ddf8c6049ae492
parent5dff2c20b20e50c31deb9272f156aace8e5d420b (diff)
Add Remote Desktop Manager (Devolutions) Importer
- Add RDM Importer mRemoteNG/mRemoteNG#887
-rw-r--r--mRemoteNG/App/Import.cs39
-rw-r--r--mRemoteNG/Config/Import/RemoteDesktopManagerImporter.cs45
-rw-r--r--mRemoteNG/Config/Serializers/ConnectionSerializers/Csv/RemoteDesktopManager/CsvConnectionsDeserializerRdmFormat.cs189
-rw-r--r--mRemoteNG/Config/Serializers/ConnectionSerializers/Csv/RemoteDesktopManager/CsvConnectionsSerializerRdmFormat.cs18
-rw-r--r--mRemoteNG/Language/Language.Designer.cs1405
-rw-r--r--mRemoteNG/Language/Language.resx9
-rw-r--r--mRemoteNG/UI/Controls/ConnectionContextMenu.cs164
7 files changed, 1089 insertions, 780 deletions
diff --git a/mRemoteNG/App/Import.cs b/mRemoteNG/App/Import.cs
index 60b50205..02691f14 100644
--- a/mRemoteNG/App/Import.cs
+++ b/mRemoteNG/App/Import.cs
@@ -38,8 +38,8 @@ namespace mRemoteNG.App
return;
HeadlessFileImport(
- openFileDialog.FileNames,
- importDestinationContainer,
+ openFileDialog.FileNames,
+ importDestinationContainer,
Runtime.ConnectionsService,
fileName => MessageBox.Show(string.Format(Language.ImportFileFailedContent, fileName), Language.AskUpdatesMainInstruction,
MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1));
@@ -51,9 +51,40 @@ namespace mRemoteNG.App
}
}
+ public static void ImportFromRemoteDesktopManagerCsv(ContainerInfo importDestinationContainer)
+ {
+ try
+ {
+ using (Runtime.ConnectionsService.BatchedSavingContext())
+ {
+ using (var openFileDialog = new OpenFileDialog())
+ {
+ openFileDialog.CheckFileExists = true;
+ openFileDialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
+ openFileDialog.Multiselect = false;
+
+ var fileTypes = new List<string>();
+ fileTypes.AddRange(new[] {Language.FiltermRemoteRemoteDesktopManagerCSV, "*.csv"});
+
+ openFileDialog.Filter = string.Join("|", fileTypes.ToArray());
+
+ if (openFileDialog.ShowDialog() != DialogResult.OK)
+ return;
+
+ var importer = new RemoteDesktopManagerImporter();
+ importer.Import(openFileDialog.FileName, importDestinationContainer);
+ }
+ }
+ }
+ catch (Exception ex)
+ {
+ Runtime.MessageCollector.AddExceptionMessage("App.Import.ImportFromRemoteDesktopManagerCsv() failed.", ex);
+ }
+ }
+
public static void HeadlessFileImport(
- IEnumerable<string> filePaths,
- ContainerInfo importDestinationContainer,
+ IEnumerable<string> filePaths,
+ ContainerInfo importDestinationContainer,
ConnectionsService connectionsService,
Action<string> exceptionAction = null)
{
diff --git a/mRemoteNG/Config/Import/RemoteDesktopManagerImporter.cs b/mRemoteNG/Config/Import/RemoteDesktopManagerImporter.cs
new file mode 100644
index 00000000..d4e12de4
--- /dev/null
+++ b/mRemoteNG/Config/Import/RemoteDesktopManagerImporter.cs
@@ -0,0 +1,45 @@
+#region
+
+using System.IO;
+using Castle.Core.Internal;
+using mRemoteNG.App;
+using mRemoteNG.Config.DataProviders;
+using mRemoteNG.Config.Serializers.ConnectionSerializers.Csv.RemoteDesktopManager;
+using mRemoteNG.Container;
+using mRemoteNG.Messages;
+
+#endregion
+
+namespace mRemoteNG.Config.Import;
+
+public class RemoteDesktopManagerImporter : IConnectionImporter<string>
+{
+ public void Import(string filePath, ContainerInfo destinationContainer)
+ {
+ if (string.IsNullOrEmpty(filePath))
+ {
+ Runtime.MessageCollector.AddMessage(MessageClass.ErrorMsg, "Unable to import file. File path is null.");
+ return;
+ }
+
+ if (!File.Exists(filePath))
+ Runtime.MessageCollector.AddMessage(MessageClass.ErrorMsg,
+ $"Unable to import file. File does not exist. Path: {filePath}");
+
+ var dataProvider = new FileDataProvider(filePath);
+ var csvString = dataProvider.Load();
+
+ if (csvString.IsNullOrEmpty())
+ {
+ Runtime.MessageCollector.AddMessage(MessageClass.ErrorMsg, "Unable to import file. File is empty.");
+ return;
+ }
+
+ var csvDeserializer = new CsvConnectionsDeserializerRdmFormat();
+ var connectionTreeModel = csvDeserializer.Deserialize(csvString);
+
+ var rootContainer = new ContainerInfo { Name = Path.GetFileNameWithoutExtension(filePath) };
+ rootContainer.AddChildRange(connectionTreeModel.RootNodes);
+ destinationContainer.AddChild(rootContainer);
+ }
+} \ No newline at end of file
diff --git a/mRemoteNG/Config/Serializers/ConnectionSerializers/Csv/RemoteDesktopManager/CsvConnectionsDeserializerRdmFormat.cs b/mRemoteNG/Config/Serializers/ConnectionSerializers/Csv/RemoteDesktopManager/CsvConnectionsDeserializerRdmFormat.cs
new file mode 100644
index 00000000..de040776
--- /dev/null
+++ b/mRemoteNG/Config/Serializers/ConnectionSerializers/Csv/RemoteDesktopManager/CsvConnectionsDeserializerRdmFormat.cs
@@ -0,0 +1,189 @@
+#region
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using mRemoteNG.Connection;
+using mRemoteNG.Connection.Protocol;
+using mRemoteNG.Container;
+using mRemoteNG.Tree;
+
+#endregion
+
+namespace mRemoteNG.Config.Serializers.ConnectionSerializers.Csv.RemoteDesktopManager;
+
+public partial class CsvConnectionsDeserializerRdmFormat : IDeserializer<string, ConnectionTreeModel>
+{
+ private readonly List<RemoteDesktopManagerConnectionInfo> _connectionTypes;
+ private readonly HashSet<string> _groups;
+
+ public CsvConnectionsDeserializerRdmFormat()
+ {
+ _connectionTypes = new List<RemoteDesktopManagerConnectionInfo>
+ {
+ new(ProtocolType.RDP, "RDP (Microsoft Remote Desktop)", 3389),
+ new(ProtocolType.SSH2, "SSH Shell", 22)
+ };
+
+ _groups = new HashSet<string>();
+
+ Containers = new List<ContainerInfo>();
+ }
+
+ private List<ContainerInfo> Containers { get; }
+
+ public ConnectionTreeModel Deserialize(string serializedData)
+ {
+ var lines = serializedData.Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries);
+ var csvHeaders = new List<string>();
+
+ var connections = new List<(ConnectionInfo, string)>(); // (ConnectionInfo, group)
+
+ for (var lineNumber = 0; lineNumber < lines.Length; lineNumber++)
+ {
+ var line = lines[lineNumber].Split(',');
+ if (lineNumber == 0)
+ {
+ csvHeaders = line.ToList();
+ }
+ else
+ {
+ var (connectionInfo, group) = ParseConnectionInfo(csvHeaders, line);
+ if (connectionInfo == default) continue;
+
+ connections.Add((connectionInfo, group));
+ }
+ }
+
+ var connectionTreeModel = new ConnectionTreeModel();
+ var unsortedConnections = new ContainerInfo { Name = "Unsorted" };
+
+ foreach (var containerInfo in Containers) connectionTreeModel.AddRootNode(containerInfo);
+
+ var allChildren = Containers.SelectMany(x => x.GetRecursiveChildList().Select(y => (ContainerInfo)y)).ToList();
+
+ foreach (var (connection, path) in connections)
+ if (string.IsNullOrEmpty(path))
+ {
+ unsortedConnections.AddChild(connection);
+ }
+ else
+ {
+ var container = allChildren.FirstOrDefault(x => x.ConstantID == path);
+ if (container == default) continue;
+
+ container.AddChild(connection);
+ }
+
+ connectionTreeModel.AddRootNode(unsortedConnections);
+
+ return connectionTreeModel;
+ }
+
+ private (ConnectionInfo connectionInfo, string) ParseConnectionInfo(IList<string> headers, IReadOnlyList<string> connectionCsv)
+ {
+ if (headers.Count != connectionCsv.Count) return default;
+
+ var hostString = connectionCsv[headers.IndexOf("Host")].Trim();
+ if (string.IsNullOrEmpty(hostString)) return default;
+
+ var hostType = Uri.CheckHostName(hostString);
+ if (hostType == UriHostNameType.Unknown) return default;
+
+ var connectionTypeString = connectionCsv[headers.IndexOf("ConnectionType")];
+ if (string.IsNullOrEmpty(connectionTypeString)) return default;
+
+ var connectionType = _connectionTypes.FirstOrDefault(x => x.Name == connectionTypeString);
+ if (connectionType == default) return default;
+
+ var portString = connectionCsv[headers.IndexOf("Port")] ?? connectionType.Port.ToString();
+ if (!int.TryParse(portString, out var port)) port = connectionType.Port;
+
+ var name = connectionCsv[headers.IndexOf("Name")];
+ var description = connectionCsv[headers.IndexOf("Description")];
+ var group = connectionCsv[headers.IndexOf("Group")];
+
+ var username = connectionCsv[headers.IndexOf("CredentialUserName")];
+ var domain = connectionCsv[headers.IndexOf("CredentialDomain")];
+ var password = connectionCsv[headers.IndexOf("CredentialPassword")];
+
+ var connectionInfo = new ConnectionInfo(Guid.NewGuid().ToString())
+ {
+ Name = name,
+ Hostname = hostString,
+ Port = port,
+ Username = username,
+ Password = password,
+ Domain = domain,
+ Description = description,
+ Protocol = connectionType.Protocol
+ };
+
+ if (!string.IsNullOrEmpty(group))
+ if (group.Contains('\\'))
+ {
+ var groupParts = group.Split('\\').ToList();
+ var parentContainerName = groupParts[0];
+ var parentContainer = Containers.FirstOrDefault(x => x.Name == parentContainerName);
+ if (parentContainer == default)
+ {
+ parentContainer = new ContainerInfo(group) { Name = parentContainerName };
+ Containers.Add(parentContainer);
+ }
+
+ groupParts.RemoveAt(0);
+
+ AddChildrenRecursive(group, groupParts, parentContainer);
+ }
+
+ return string.IsNullOrEmpty(group) ? (connectionInfo, default) : (connectionInfo, group);
+ }
+
+ private void AddChildrenRecursive(string group, IList<string> groupParts, ContainerInfo parentContainer)
+ {
+ if (_groups.Contains(group)) return;
+
+ var groupCount = groupParts.Count;
+ while (groupCount > 0)
+ {
+ var childName = groupParts[0];
+ var newContainer = new ContainerInfo(group) { Name = childName };
+
+ var childrenNames = parentContainer.GetRecursiveChildList().Select(x => x.Name).ToList();
+ if (!childrenNames.Any())
+ {
+ groupCount = AddChild(parentContainer, newContainer, groupCount);
+ _groups.Add(group);
+ continue;
+ }
+
+ if (groupParts.Count > 1)
+ {
+ var childContainer = (ContainerInfo)parentContainer.Children.FirstOrDefault(x => x.Name == childName);
+ if (childContainer == default)
+ {
+ groupCount = AddChild(parentContainer, newContainer, groupCount);
+ continue;
+ }
+
+ AddChildrenRecursive(group, groupParts.Skip(1).ToList(), childContainer);
+ }
+ else
+ {
+ parentContainer.AddChild(newContainer);
+ _groups.Add(group);
+ }
+
+ groupCount--;
+ }
+ }
+
+ private static int AddChild(ContainerInfo parentContainer, ContainerInfo newContainer, int groupCount)
+ {
+ parentContainer.AddChild(newContainer);
+ groupCount--;
+ return groupCount;
+ }
+}
+
+internal sealed record RemoteDesktopManagerConnectionInfo(ProtocolType Protocol, string Name, int Port); \ No newline at end of file
diff --git a/mRemoteNG/Config/Serializers/ConnectionSerializers/Csv/RemoteDesktopManager/CsvConnectionsSerializerRdmFormat.cs b/mRemoteNG/Config/Serializers/ConnectionSerializers/Csv/RemoteDesktopManager/CsvConnectionsSerializerRdmFormat.cs
new file mode 100644
index 00000000..a3fe0afb
--- /dev/null
+++ b/mRemoteNG/Config/Serializers/ConnectionSerializers/Csv/RemoteDesktopManager/CsvConnectionsSerializerRdmFormat.cs
@@ -0,0 +1,18 @@
+#region
+
+using System;
+using mRemoteNG.Connection;
+
+#endregion
+
+namespace mRemoteNG.Config.Serializers.ConnectionSerializers.Csv.RemoteDesktopManager;
+
+public partial class CsvConnectionsDeserializerRdmFormat : ISerializer<ConnectionInfo, string>
+{
+ public string Serialize(ConnectionInfo model)
+ {
+ throw new NotImplementedException();
+ }
+
+ public Version Version { get; }
+} \ No newline at end of file
diff --git a/mRemoteNG/Language/Language.Designer.cs b/mRemoteNG/Language/Language.Designer.cs
index 1f054720..6b753d3c 100644
--- a/mRemoteNG/Language/Language.Designer.cs
+++ b/mRemoteNG/Language/Language.Designer.cs
@@ -10,8 +10,8 @@
namespace mRemoteNG.Resources.Language {
using System;
-
-
+
+
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
@@ -23,15 +23,15 @@ namespace mRemoteNG.Resources.Language {
[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() {
}
-
+
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
@@ -45,7 +45,7 @@ namespace mRemoteNG.Resources.Language {
return resourceMan;
}
}
-
+
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
@@ -59,7 +59,7 @@ namespace mRemoteNG.Resources.Language {
resourceCulture = value;
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Browse....
/// </summary>
@@ -68,7 +68,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_Browse", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Cancel.
/// </summary>
@@ -77,7 +77,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_Cancel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Close.
/// </summary>
@@ -86,7 +86,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_Close", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Warn me when closing connections.
/// </summary>
@@ -95,7 +95,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_CloseWarnAll", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Delete.
/// </summary>
@@ -104,7 +104,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_Delete", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Export to File....
/// </summary>
@@ -113,7 +113,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_ExportToFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;File.
/// </summary>
@@ -122,7 +122,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_File", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Help.
/// </summary>
@@ -131,7 +131,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_Help", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Import.
/// </summary>
@@ -140,7 +140,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_Import", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Launch.
/// </summary>
@@ -149,7 +149,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_Launch", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;New.
/// </summary>
@@ -158,7 +158,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_New", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;OK.
/// </summary>
@@ -167,7 +167,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_Ok", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Scan.
/// </summary>
@@ -176,7 +176,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_Scan", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Stop.
/// </summary>
@@ -185,7 +185,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_Stop", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Tools.
/// </summary>
@@ -194,7 +194,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_Tools", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Try again.
/// </summary>
@@ -203,7 +203,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_TryAgain", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;View.
/// </summary>
@@ -212,7 +212,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("_View", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to About.
/// </summary>
@@ -221,7 +221,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("About", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Active Directory.
/// </summary>
@@ -230,7 +230,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ActiveDirectory", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Add.
/// </summary>
@@ -239,7 +239,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Add", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Add Connection Panel.
/// </summary>
@@ -248,7 +248,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AddConnectionPanel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to AddNodeFromXML failed!.
/// </summary>
@@ -257,7 +257,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AddNodeFromXmlFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Address:.
/// </summary>
@@ -266,7 +266,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Address", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Advanced.
/// </summary>
@@ -275,7 +275,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Advanced", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Advanced security options.
/// </summary>
@@ -284,7 +284,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AdvancedSecurityOptions", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to All.
/// </summary>
@@ -293,7 +293,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("All", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Allow only a single instance of the application (mRemoteNG restart required).
/// </summary>
@@ -302,7 +302,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AllowOnlySingleInstance", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Always.
/// </summary>
@@ -311,7 +311,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Always", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Always connect, even if authentication fails.
/// </summary>
@@ -320,7 +320,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AlwaysConnectEvenIfAuthFails", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Always show connection tabs.
/// </summary>
@@ -329,7 +329,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AlwaysShowConnectionTabs", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Always show panel selection dialog when opening connections.
/// </summary>
@@ -338,7 +338,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AlwaysShowPanelSelection", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Always show panel tabs.
/// </summary>
@@ -347,7 +347,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AlwaysShowPanelTabs", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Always show notification area icon.
/// </summary>
@@ -356,7 +356,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AlwaysShowSysTrayIcon", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Appearance.
/// </summary>
@@ -365,7 +365,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Appearance", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Apply.
/// </summary>
@@ -374,7 +374,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Apply", resourceCulture);
}
}
-
+
/// <summary>
/// Sucht eine lokalisierte Zeichenfolge, die Apply default inheritance ähnelt.
/// </summary>
@@ -383,7 +383,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ApplyDefaultInheritance", resourceCulture);
}
}
-
+
/// <summary>
/// Sucht eine lokalisierte Zeichenfolge, die Apply inheritance to children ähnelt.
/// </summary>
@@ -392,7 +392,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ApplyInheritanceToChildren", resourceCulture);
}
}
-
+
/// <summary>
/// Sucht eine lokalisierte Zeichenfolge, die Arguments ähnelt.
/// </summary>
@@ -401,7 +401,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Arguments", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Ask me again later.
/// </summary>
@@ -410,7 +410,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AskUpdatesCommandAskLater", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Customize the settings now.
/// </summary>
@@ -419,7 +419,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AskUpdatesCommandCustom", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use the recommended settings.
/// </summary>
@@ -428,7 +428,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AskUpdatesCommandRecommended", resourceCulture);
}
}
-
+
/// <summary>
/// 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..
/// </summary>
@@ -437,7 +437,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AskUpdatesContent", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Automatic update settings.
/// </summary>
@@ -446,7 +446,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AskUpdatesMainInstruction", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Aspect.
/// </summary>
@@ -455,7 +455,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Aspect", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Assigned Credential.
/// </summary>
@@ -464,7 +464,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AssignedCredential", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Audio Capture.
/// </summary>
@@ -473,7 +473,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AudioCapture", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Server Authentication.
/// </summary>
@@ -482,7 +482,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AuthenticationLevel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Authentication mode.
/// </summary>
@@ -491,7 +491,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AuthenticationMode", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to An error occurred while trying to reconnect to RDP host &apos;{0}&apos;.
/// </summary>
@@ -500,7 +500,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AutomaticReconnectError", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Automatic resize.
/// </summary>
@@ -509,7 +509,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AutomaticResize", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Auto save time in minutes (0 means disabled):.
/// </summary>
@@ -518,7 +518,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AutoSaveEvery", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Latest version.
/// </summary>
@@ -527,7 +527,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("AvailableVersion", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Default Inheritance.
/// </summary>
@@ -536,7 +536,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ButtonDefaultInheritance", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Default Properties.
/// </summary>
@@ -545,7 +545,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ButtonDefaultProperties", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Launch PuTTY.
/// </summary>
@@ -554,7 +554,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ButtonLaunchPutty", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Cache Bitmaps.
/// </summary>
@@ -563,7 +563,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CacheBitmaps", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Cannot start Port Scan, incorrect IP format!.
/// </summary>
@@ -572,7 +572,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CannotStartPortScan", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Change.
/// </summary>
@@ -581,7 +581,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Change", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to An error occurred while trying to change the connection resolution to host &apos;{0}&apos;.
/// </summary>
@@ -590,7 +590,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ChangeConnectionResolutionError", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Changelog.
/// </summary>
@@ -599,7 +599,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Changelog", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Check Again.
/// </summary>
@@ -608,7 +608,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckAgain", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Automatically try to reconnect when disconnected from server (RDP &amp;&amp; ICA only).
/// </summary>
@@ -617,7 +617,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckboxAutomaticReconnect", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Do not show this message again..
/// </summary>
@@ -626,7 +626,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckboxDoNotShowThisMessageAgain", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to This proxy server requires authentication.
/// </summary>
@@ -635,7 +635,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckboxProxyAuthentication", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use custom PuTTY path:.
/// </summary>
@@ -644,7 +644,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckboxPuttyPath", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Reconnect when ready.
/// </summary>
@@ -653,7 +653,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckboxReconnectWhenReady", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use a proxy server to connect.
/// </summary>
@@ -662,7 +662,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckboxUpdateUseProxy", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Check failed!.
/// </summary>
@@ -671,7 +671,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Check for Updates.
/// </summary>
@@ -680,7 +680,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckForUpdates", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Check for updates at startup.
/// </summary>
@@ -689,7 +689,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckForUpdatesOnStartup", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Check now.
/// </summary>
@@ -698,7 +698,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckNow", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Check proper installation of components at startup.
/// </summary>
@@ -707,7 +707,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CheckProperInstallationOfComponentsAtStartup", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Choose a path for the mRemoteNG log file.
/// </summary>
@@ -716,7 +716,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ChooseLogPath", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Choose panel before connecting.
/// </summary>
@@ -725,7 +725,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ChoosePanelBeforeConnecting", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Choose path.
/// </summary>
@@ -734,7 +734,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ChoosePath", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Clear search string.
/// </summary>
@@ -743,7 +743,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ClearSearchString", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Clipboard.
/// </summary>
@@ -752,7 +752,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Clipboard", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Closed Ports.
/// </summary>
@@ -761,7 +761,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ClosedPorts", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Close to notification area.
/// </summary>
@@ -770,7 +770,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CloseToSysTray", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to When closing connections:.
/// </summary>
@@ -779,7 +779,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ClosingConnections", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Collapse all folders.
/// </summary>
@@ -788,7 +788,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CollapseAllFolders", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Colours.
/// </summary>
@@ -797,7 +797,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Colors", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to E&amp;xit {0}.
/// </summary>
@@ -806,7 +806,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CommandExitProgram", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Couldn&apos;t parse command line args!.
/// </summary>
@@ -815,7 +815,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CommandLineArgsCouldNotBeParsed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Open a connection file.
/// </summary>
@@ -824,7 +824,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CommandOpenConnectionFile", resourceCulture);
}
}
-
+
/// <summary>
/// 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..
/// </summary>
@@ -833,7 +833,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CompatibilityLenovoAutoScrollUtilityDetected", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Compatibility problem detected.
/// </summary>
@@ -842,7 +842,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CompatibilityProblemDetected", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Compression.
/// </summary>
@@ -851,7 +851,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Compression", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Config.
/// </summary>
@@ -860,7 +860,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Config", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to btnIcon_Click failed!.
/// </summary>
@@ -869,7 +869,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfigPropertyGridButtonIconClickFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to ShowHideGridItems failed!.
/// </summary>
@@ -878,7 +878,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfigPropertyGridHideItemsFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to IconMenu_Click failed!.
/// </summary>
@@ -887,7 +887,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfigPropertyGridMenuClickFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Property Grid object failed!.
/// </summary>
@@ -896,7 +896,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfigPropertyGridObjectFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SetHostStatus failed!.
/// </summary>
@@ -905,7 +905,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfigPropertyGridSetHostStatusFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to pGrid_PopertyValueChanged failed!.
/// </summary>
@@ -914,7 +914,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfigPropertyGridValueFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Config UI load failed!.
/// </summary>
@@ -923,7 +923,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfigUiLoadFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Create a New Connection File.
/// </summary>
@@ -932,7 +932,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfigurationCreateNew", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use a Custom File Path.
/// </summary>
@@ -941,7 +941,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfigurationCustomPath", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Import an Existing File.
/// </summary>
@@ -950,7 +950,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfigurationImportFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Are you sure you want to close all connections except for &quot;{0}&quot;?.
/// </summary>
@@ -959,7 +959,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfirmCloseConnectionOthersInstruction", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Are you sure you want to close the panel, &quot;{0}&quot;? Any connections that it contains will also be closed..
/// </summary>
@@ -968,7 +968,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfirmCloseConnectionPanelMainInstruction", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete the credential record, {0}?.
/// </summary>
@@ -977,7 +977,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfirmDeleteCredentialRecord", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete the external tool, &quot;{0}&quot;?.
/// </summary>
@@ -986,7 +986,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfirmDeleteExternalTool", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete the {0} selected external tools?.
/// </summary>
@@ -995,7 +995,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfirmDeleteExternalToolMultiple", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete the connection, &quot;{0}&quot;?.
/// </summary>
@@ -1004,7 +1004,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfirmDeleteNodeConnection", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete the empty folder, &quot;{0}&quot;?.
/// </summary>
@@ -1013,7 +1013,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfirmDeleteNodeFolder", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Are you sure you want to delete the folder, &quot;{0}&quot;? Any folders or connections that it contains will also be deleted..
/// </summary>
@@ -1022,7 +1022,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfirmDeleteNodeFolderNotEmpty", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Do you want to close all open connections?.
/// </summary>
@@ -1031,7 +1031,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfirmExitMainInstruction", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Are you sure you want to reset the panels to their default layout?.
/// </summary>
@@ -1040,7 +1040,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConfirmResetLayout", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connect.
/// </summary>
@@ -1049,7 +1049,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Connect", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connect in fullscreen mode.
/// </summary>
@@ -1058,7 +1058,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectInFullscreen", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connecting....
/// </summary>
@@ -1067,7 +1067,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Connecting", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connect in View Only mode.
/// </summary>
@@ -1076,7 +1076,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectInViewOnlyMode", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connection.
/// </summary>
@@ -1085,7 +1085,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Connection", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Protocol Event Connected.
/// </summary>
@@ -1094,7 +1094,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionEventConnected", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connection to &quot;{0}&quot; via &quot;{1}&quot; established by user &quot;{2}&quot; (Description: &quot;{3}&quot;; User Field: &quot;{4}&quot;).
/// </summary>
@@ -1103,7 +1103,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionEventConnectedDetail", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to A connection protocol error occurred. Host: &quot;{1}&quot;; Error code: &quot;{2}&quot;; Error Description: &quot;{0}&quot;.
/// </summary>
@@ -1112,7 +1112,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionEventErrorOccured", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connection failed!.
/// </summary>
@@ -1121,7 +1121,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The connection file could not be found..
/// </summary>
@@ -1130,7 +1130,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionFileNotFound", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Opening connection failed!.
/// </summary>
@@ -1139,7 +1139,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionOpenFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Cannot open connection: No hostname specified!.
/// </summary>
@@ -1148,7 +1148,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionOpenFailedNoHostname", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connection Panels.
/// </summary>
@@ -1157,7 +1157,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionPanels", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connections.
/// </summary>
@@ -1166,7 +1166,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Connections", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Daily.
/// </summary>
@@ -1175,7 +1175,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionsBackupFrequencyDaily", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Never backup connections.
/// </summary>
@@ -1184,7 +1184,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionsBackupFrequencyNever", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to On Edit.
/// </summary>
@@ -1193,7 +1193,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionsBackupFrequencyOnEdit", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to On Exit.
/// </summary>
@@ -1202,7 +1202,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionsBackupFrequencyOnExit", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Weekly.
/// </summary>
@@ -1211,7 +1211,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionsBackupFrequencyWeekly", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Couldn&apos;t set default port!.
/// </summary>
@@ -1220,7 +1220,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionSetDefaultPortFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Couldn&apos;t create backup of connections file!.
/// </summary>
@@ -1229,7 +1229,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionsFileBackupFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connections file &quot;{0}&quot; could not be loaded!.
/// </summary>
@@ -1238,7 +1238,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionsFileCouldNotBeLoaded", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connections file &quot;{0}&quot; could not be loaded!
///Starting with new connections file..
@@ -1248,7 +1248,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionsFileCouldNotBeLoadedNew", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Couldn&apos;t save connections file as &quot;{0}&quot;!.
/// </summary>
@@ -1257,7 +1257,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionsFileCouldNotSaveAs", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connection successful.
/// </summary>
@@ -1266,7 +1266,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectionSuccessful", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connect without credentials.
/// </summary>
@@ -1275,7 +1275,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectNoCredentials", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connect to console session.
/// </summary>
@@ -1284,7 +1284,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectToConsoleSession", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connect (with options).
/// </summary>
@@ -1293,7 +1293,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnectWithOptions", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connection to {0} via {1} closed by user {2}..
/// </summary>
@@ -1302,7 +1302,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnenctionClosedByUser", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connection Event Closed.
/// </summary>
@@ -1311,7 +1311,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnenctionCloseEvent", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connection Event Closed failed!.
/// </summary>
@@ -1320,7 +1320,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ConnenctionCloseEventFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Copy.
/// </summary>
@@ -1329,7 +1329,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Copy", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Copy All.
/// </summary>
@@ -1338,7 +1338,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CopyAll", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Copy Hostname.
/// </summary>
@@ -1347,7 +1347,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CopyHostname", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Couldn&apos;t create new connections file!.
/// </summary>
@@ -1356,7 +1356,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CouldNotCreateNewConnectionsFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Could not find external tool with name &quot;{0}&quot;.
/// </summary>
@@ -1365,7 +1365,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CouldNotFindExternalTool", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Could not find ToolStrip control in FilteredPropertyGrid..
/// </summary>
@@ -1374,7 +1374,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CouldNotFindToolStripInFilteredPropertyGrid", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Create an empty panel when mRemoteNG starts.
/// </summary>
@@ -1383,7 +1383,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CreateEmptyPanelOnStartUp", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Credentials.
/// </summary>
@@ -1392,7 +1392,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Credentials", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Credential not available.
/// </summary>
@@ -1401,7 +1401,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CredentialUnavailable", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Credits.
/// </summary>
@@ -1410,7 +1410,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Credits", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Ctrl-Alt-Del.
/// </summary>
@@ -1419,7 +1419,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CtrlAltDel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Ctrl-Esc.
/// </summary>
@@ -1428,7 +1428,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("CtrlEsc", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Daily.
/// </summary>
@@ -1437,7 +1437,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Daily", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Database:.
/// </summary>
@@ -1446,7 +1446,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Database", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Database &apos;{0}&apos; not available..
/// </summary>
@@ -1455,7 +1455,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DatabaseNotAvailable", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Debug.
/// </summary>
@@ -1464,7 +1464,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Debug", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Delete.
/// </summary>
@@ -1473,7 +1473,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Delete", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Delete All.
/// </summary>
@@ -1482,7 +1482,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DeleteAll", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Delete External Tool....
/// </summary>
@@ -1491,7 +1491,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DeleteExternalTool", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Description.
/// </summary>
@@ -1500,7 +1500,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Description", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Detect.
/// </summary>
@@ -1509,7 +1509,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Detect", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Disable Cursor blinking.
/// </summary>
@@ -1518,7 +1518,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DisableCursorBlinking", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Disable Cursor Shadow.
/// </summary>
@@ -1527,7 +1527,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DisableCursorShadow", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Disable Full Window drag.
/// </summary>
@@ -1536,7 +1536,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DisableFullWindowDrag", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Disable Menu Animations.
/// </summary>
@@ -1545,7 +1545,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DisableMenuAnimations", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Disconnect.
/// </summary>
@@ -1554,7 +1554,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Disconnect", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Disconnect All But This.
/// </summary>
@@ -1563,7 +1563,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DisconnectOthers", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Disconnect Tabs To The Right.
/// </summary>
@@ -1572,7 +1572,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DisconnectOthersRight", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Disk Drives.
/// </summary>
@@ -1581,7 +1581,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DiskDrives", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Display.
/// </summary>
@@ -1590,7 +1590,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Display", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Display Name.
/// </summary>
@@ -1599,7 +1599,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DisplayName", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Display Themes.
/// </summary>
@@ -1608,7 +1608,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DisplayThemes", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Display Wallpaper.
/// </summary>
@@ -1617,7 +1617,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DisplayWallpaper", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Domain.
/// </summary>
@@ -1678,7 +1678,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Donate", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Do not play.
/// </summary>
@@ -1687,7 +1687,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DoNotPlay", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Do not trim spaces from usernames.
/// </summary>
@@ -1696,7 +1696,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DoNotTrimUsername", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Don&apos;t connect to console session.
/// </summary>
@@ -1705,7 +1705,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DontConnectToConsoleSession", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Don&apos;t connect if authentication fails.
/// </summary>
@@ -1714,7 +1714,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DontConnectWhenAuthFails", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Double click on tab closes it.
/// </summary>
@@ -1723,7 +1723,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DoubleClickTabClosesIt", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Download.
/// </summary>
@@ -1732,7 +1732,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Download", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Download and Install.
/// </summary>
@@ -1741,7 +1741,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DownloadAndInstall", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Duplicate.
/// </summary>
@@ -1750,7 +1750,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Duplicate", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Duplicate Tab.
/// </summary>
@@ -1759,7 +1759,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("DuplicateTab", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Dynamic.
/// </summary>
@@ -1768,7 +1768,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Dynamic", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Do you want to continue with no password?.
/// </summary>
@@ -1777,7 +1777,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("EmptyPasswordContinue", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to For empty Username, Password or Domain fields use:.
/// </summary>
@@ -1786,7 +1786,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("EmptyUsernamePasswordDomainFields", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Desktop Composition.
/// </summary>
@@ -1795,7 +1795,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("EnableDesktopComposition", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Encoding.
/// </summary>
@@ -1804,7 +1804,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Encoding", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Completely encrypt connection file.
/// </summary>
@@ -1813,7 +1813,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("EncryptCompleteConnectionFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Block Cipher Mode.
/// </summary>
@@ -1822,7 +1822,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("EncryptionBlockCipherMode", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Encryption Engine.
/// </summary>
@@ -1831,7 +1831,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("EncryptionEngine", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Key Derivation Function Iterations.
/// </summary>
@@ -1840,7 +1840,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("EncryptionKeyDerivationIterations", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Encryption Test.
/// </summary>
@@ -1849,7 +1849,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("EncryptionTest", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Encrypting {0} entries using {1}/{2} and {3} iterations took {4} seconds..
/// </summary>
@@ -1858,7 +1858,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("EncryptionTestResultMessage", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Environment.
/// </summary>
@@ -1867,7 +1867,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Environment", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to AddExternalToolsToToolBar (frmMain) failed. {0}.
/// </summary>
@@ -1876,7 +1876,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ErrorAddExternalToolsToToolBarFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to AddFolder (UI.Window.ConnectionTreeWindow) failed. {0}.
/// </summary>
@@ -1885,7 +1885,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ErrorAddFolderFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The database version {0} is not compatible with this version of {1}..
/// </summary>
@@ -1894,7 +1894,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ErrorBadDatabaseVersion", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The connection list could not be saved..
/// </summary>
@@ -1903,7 +1903,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ErrorConnectionListSaveFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to PuTTY could not be launched..
/// </summary>
@@ -1912,7 +1912,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ErrorCouldNotLaunchPutty", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Decryption failed. {0}.
/// </summary>
@@ -1921,7 +1921,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ErrorDecryptionFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Encryption failed. {0}.
/// </summary>
@@ -1930,9 +1930,9 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ErrorEncryptionFailed", resourceCulture);
}
}
-
+
/// <summary>
- /// Looks up a localized string similar to The Windows security setting, &quot;System cryptography: Use FIPS compliant algorithms for encryption, hashing, and signing&quot;, is enabled.
+ /// Looks up a localized string similar to The Windows security setting, &quot;System cryptography: Use FIPS compliant algorithms for encryption, hashing, and signing&quot;, is enabled.
///
///See the Microsoft Support article at http://support.microsoft.com/kb/811833 for more information.
///
@@ -1943,7 +1943,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ErrorFipsPolicyIncompatible", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Errors.
/// </summary>
@@ -1952,7 +1952,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Errors", resourceCulture);
}
}
-
+
/// <summary>
/// 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..
/// </summary>
@@ -1961,7 +1961,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ErrorStartupConnectionFileLoad", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to VerifyDatabaseVersion (Config.Connections.Save) failed. {0}.
/// </summary>
@@ -1970,7 +1970,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ErrorVerifyDatabaseVersionFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to This exception will force mRemoteNG to close.
/// </summary>
@@ -1979,7 +1979,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExceptionForcesmRemoteNGToClose", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Exception Message.
/// </summary>
@@ -1988,7 +1988,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExceptionMessage", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Exit.
/// </summary>
@@ -1997,7 +1997,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Exit", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Expand all folders.
/// </summary>
@@ -2006,7 +2006,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExpandAllFolders", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Experimental.
/// </summary>
@@ -2015,7 +2015,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Experimental", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Export.
/// </summary>
@@ -2024,7 +2024,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Export", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Export everything.
/// </summary>
@@ -2033,7 +2033,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExportEverything", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Export File.
/// </summary>
@@ -2042,7 +2042,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExportFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Export Items.
/// </summary>
@@ -2051,7 +2051,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExportItems", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Export Properties.
/// </summary>
@@ -2060,7 +2060,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExportProperties", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Export the currently selected connection.
/// </summary>
@@ -2069,7 +2069,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExportSelectedConnection", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Export the currently selected folder.
/// </summary>
@@ -2078,7 +2078,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExportSelectedFolder", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to External Tool.
/// </summary>
@@ -2087,7 +2087,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExternalTool", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to External Tool After.
/// </summary>
@@ -2096,7 +2096,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExternalToolAfter", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to External Tool Before.
/// </summary>
@@ -2105,7 +2105,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExternalToolBefore", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to New External Tool.
/// </summary>
@@ -2114,7 +2114,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExternalToolDefaultName", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to External Tool Properties.
/// </summary>
@@ -2123,7 +2123,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExternalToolProperties", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to External Tools Toolbar.
/// </summary>
@@ -2132,7 +2132,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ExternalToolsToolbar", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Favorite.
/// </summary>
@@ -2141,7 +2141,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Favorite", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Favorites.
/// </summary>
@@ -2150,7 +2150,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Favorites", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to File &amp;Format:.
/// </summary>
@@ -2159,7 +2159,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FileFormat", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Filename.
/// </summary>
@@ -2168,7 +2168,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Filename", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Files.
/// </summary>
@@ -2177,7 +2177,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Files", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to All Files (*.*).
/// </summary>
@@ -2186,7 +2186,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FilterAll", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to All importable files.
/// </summary>
@@ -2195,7 +2195,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FilterAllImportable", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Application Files (*.exe).
/// </summary>
@@ -2204,7 +2204,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FilterApplication", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to mRemote CSV Files (*.csv).
/// </summary>
@@ -2213,7 +2213,16 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FiltermRemoteCSV", resourceCulture);
}
}
-
+
+ /// <summary>
+ /// Looks up a localized string similar to Remote Desktop Manager CSV Files (*.csv).
+ /// </summary>
+ internal static string FiltermRemoteRemoteDesktopManagerCSV {
+ get {
+ return ResourceManager.GetString("FiltermRemoteRemoteDesktopManagerCSV", resourceCulture);
+ }
+ }
+
/// <summary>
/// Looks up a localized string similar to mRemote XML Files (*.xml).
/// </summary>
@@ -2222,7 +2231,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FiltermRemoteXML", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to PuTTY Connection Manager files.
/// </summary>
@@ -2231,7 +2240,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FilterPuttyConnectionManager", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Remote Desktop Connection Manager files (*.rdg).
/// </summary>
@@ -2240,7 +2249,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FilterRdgFiles", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP Files (*.rdp).
/// </summary>
@@ -2249,7 +2258,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FilterRDP", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Filter search matches in connection tree.
/// </summary>
@@ -2258,7 +2267,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FilterSearchMatchesInConnectionTree", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to First IP.
/// </summary>
@@ -2267,7 +2276,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FirstIp", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to First Port.
/// </summary>
@@ -2276,7 +2285,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FirstPort", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Fit To Panel.
/// </summary>
@@ -2285,7 +2294,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FitToPanel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Font Smoothing.
/// </summary>
@@ -2294,7 +2303,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FontSmoothing", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Inherit {0}.
/// </summary>
@@ -2303,7 +2312,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FormatInherit", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Description of inherited property: {0}.
/// </summary>
@@ -2312,7 +2321,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("FormatInheritDescription", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Free.
/// </summary>
@@ -2321,7 +2330,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Free", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Fullscreen.
/// </summary>
@@ -2330,7 +2339,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Fullscreen", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Gateway.
/// </summary>
@@ -2339,7 +2348,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Gateway", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to General.
/// </summary>
@@ -2348,7 +2357,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("General", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to An error occured while loading the connection entry for &quot;{0}&quot; from &quot;{1}&quot;. {2}.
/// </summary>
@@ -2357,7 +2366,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("GetConnectionInfoFromXmlFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Automatic Reconnect.
/// </summary>
@@ -2366,7 +2375,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("GroupboxAutomaticReconnect", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to mRemoteNG Help.
/// </summary>
@@ -2375,7 +2384,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("HelpContents", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to High.
/// </summary>
@@ -2384,7 +2393,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("High", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Host.
/// </summary>
@@ -2393,7 +2402,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Host", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Hostname:.
/// </summary>
@@ -2402,7 +2411,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Hostname", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Hostname/IP.
/// </summary>
@@ -2411,7 +2420,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("HostnameIp", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to HTTP.
/// </summary>
@@ -2420,7 +2429,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Http", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Edge Chromium.
/// </summary>
@@ -2429,7 +2438,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("HttpCEF", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to HTTP Connect Failed!.
/// </summary>
@@ -2438,7 +2447,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("HttpConnectFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Couldn&apos;t create new HTTP Connection!.
/// </summary>
@@ -2447,7 +2456,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("HttpConnectionFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Changing HTTP Document Tile Failed!.
/// </summary>
@@ -2456,7 +2465,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("HttpDocumentTileChangeFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Failed to contruct the URL to load.
/// </summary>
@@ -2465,7 +2474,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("HttpFailedUrlBuild", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Internet Explorer.
/// </summary>
@@ -2474,7 +2483,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("HttpInternetExplorer", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to HTTPS.
/// </summary>
@@ -2483,7 +2492,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Https", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Set HTTP Props failed!.
/// </summary>
@@ -2492,7 +2501,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("HttpSetPropsFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Icon.
/// </summary>
@@ -2501,7 +2510,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Icon", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Identify quick connect tabs by adding the prefix &quot;Quick:&quot;.
/// </summary>
@@ -2510,7 +2519,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("IdentifyQuickConnectTabs", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Import from Active Directory.
/// </summary>
@@ -2519,7 +2528,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ImportAD", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to An error occurred while importing the file &quot;{0}&quot;..
/// </summary>
@@ -2528,7 +2537,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ImportFileFailedContent", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Import from &amp;File....
/// </summary>
@@ -2537,7 +2546,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ImportFromFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Import from Port Scan.
/// </summary>
@@ -2546,7 +2555,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ImportPortScan", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Import sub OUs.
/// </summary>
@@ -2555,7 +2564,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ImportSubOUs", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Informations.
/// </summary>
@@ -2564,7 +2573,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Informations", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Inheritance.
/// </summary>
@@ -2573,7 +2582,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Inheritance", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Dispose of Int App process failed!.
/// </summary>
@@ -2582,7 +2591,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("IntAppDisposeFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Int App Focus Failed!.
/// </summary>
@@ -2591,7 +2600,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("IntAppFocusFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Int App Handle: {0}.
/// </summary>
@@ -2600,7 +2609,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("IntAppHandle", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Killing Int App Process failed!.
/// </summary>
@@ -2609,7 +2618,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("IntAppKillFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Int App Resize failed!.
/// </summary>
@@ -2618,7 +2627,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("IntAppResizeFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to --- IntApp Stuff ---.
/// </summary>
@@ -2627,7 +2636,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("IntAppStuff", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Int App Title: {0}.
/// </summary>
@@ -2636,7 +2645,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("IntAppTitle", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to (Automatically Detect).
/// </summary>
@@ -2645,7 +2654,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LanguageDefault", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to {0} must be restarted before changes to the language will take effect..
/// </summary>
@@ -2654,7 +2663,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LanguageRestartRequired", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Language.
/// </summary>
@@ -2663,7 +2672,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LanguageString", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Last IP.
/// </summary>
@@ -2672,7 +2681,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LastIp", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Last Port.
/// </summary>
@@ -2681,7 +2690,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LastPort", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Launch External Tool.
/// </summary>
@@ -2690,7 +2699,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LaunchExternalTool", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to License.
/// </summary>
@@ -2699,7 +2708,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("License", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Load Balance Info.
/// </summary>
@@ -2708,7 +2717,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LoadBalanceInfo", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use UTF8 encoding for RDP &quot;Load Balance Info&quot; property.
/// </summary>
@@ -2717,7 +2726,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LoadBalanceInfoUseUtf8", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Load from SQL failed.
/// </summary>
@@ -2726,7 +2735,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LoadFromSqlFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The connection information could not be loaded from the SQL server..
/// </summary>
@@ -2735,7 +2744,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LoadFromSqlFailedContent", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Load From XML failed!.
/// </summary>
@@ -2744,7 +2753,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LoadFromXmlFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Local file.
/// </summary>
@@ -2753,7 +2762,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LocalFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Local file does not exist!.
/// </summary>
@@ -2762,7 +2771,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LocalFileDoesNotExist", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Lock toolbar positions.
/// </summary>
@@ -2771,7 +2780,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LockToolbars", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Log file path.
/// </summary>
@@ -2780,7 +2789,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LogFilePath", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Logging.
/// </summary>
@@ -2789,7 +2798,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Logging", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Login failed for user &apos;{0}&apos;..
/// </summary>
@@ -2798,7 +2807,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LoginFailedForUser", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Log these message types.
/// </summary>
@@ -2807,7 +2816,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LogTheseMessageTypes", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Log to application directory.
/// </summary>
@@ -2816,7 +2825,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("LogToAppDir", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to MAC Address.
/// </summary>
@@ -2825,7 +2834,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MacAddress", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Medium.
/// </summary>
@@ -2834,7 +2843,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Medium", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Message.
/// </summary>
@@ -2843,7 +2852,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Message", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Minimize to notification area.
/// </summary>
@@ -2852,7 +2861,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MinimizeToSysTray", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Minutes to Idle.
/// </summary>
@@ -2861,7 +2870,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MinutesToIdleTimeout", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Miscellaneous.
/// </summary>
@@ -2870,7 +2879,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Miscellaneous", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Monthly.
/// </summary>
@@ -2879,7 +2888,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Monthly", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Move down.
/// </summary>
@@ -2888,7 +2897,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MoveDown", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Move up.
/// </summary>
@@ -2897,7 +2906,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MoveUp", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to mRemoteNG CSV.
/// </summary>
@@ -2906,7 +2915,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MremoteNgCsv", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to mRemoteNG Unhandled Exception.
/// </summary>
@@ -2915,7 +2924,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("mRemoteNGUnhandledException", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to mRemoteNG XML.
/// </summary>
@@ -2924,7 +2933,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MremoteNgXml", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Multi SSH:.
/// </summary>
@@ -2933,7 +2942,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MultiSsh", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Multi SSH toolbar.
/// </summary>
@@ -2942,7 +2951,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MultiSshToolbar", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Press ENTER to send. Ctrl+C is sent immediately..
/// </summary>
@@ -2951,7 +2960,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MultiSshToolTip", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Must Be Between 0 and 255.
/// </summary>
@@ -2960,7 +2969,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MustBeBetween0And255", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to My current credentials (Windows logon information).
/// </summary>
@@ -2969,7 +2978,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("MyCurrentWindowsCreds", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Name.
/// </summary>
@@ -2978,7 +2987,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Name", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Never.
/// </summary>
@@ -2987,7 +2996,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Never", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to New Connection.
/// </summary>
@@ -2996,7 +3005,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NewConnection", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to New Connection File.
/// </summary>
@@ -3005,7 +3014,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NewConnectionFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to New External Tool.
/// </summary>
@@ -3014,7 +3023,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NewExternalTool", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to New Folder.
/// </summary>
@@ -3023,7 +3032,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NewFolder", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to New Panel.
/// </summary>
@@ -3032,7 +3041,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NewPanel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to New Title.
/// </summary>
@@ -3041,7 +3050,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NewTitle", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to No.
/// </summary>
@@ -3050,7 +3059,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("No", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to No сompression.
/// </summary>
@@ -3059,7 +3068,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NoCompression", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to This node is already in this folder..
/// </summary>
@@ -3068,7 +3077,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NodeAlreadyInFolder", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Cannot drag node onto itself..
/// </summary>
@@ -3077,7 +3086,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NodeCannotDragOnSelf", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Cannot drag parent node onto child..
/// </summary>
@@ -3086,7 +3095,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NodeCannotDragParentOnChild", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to This node is not draggable..
/// </summary>
@@ -3095,7 +3104,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NodeNotDraggable", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to No ext. app specified..
/// </summary>
@@ -3104,7 +3113,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NoExtAppDefined", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to None.
/// </summary>
@@ -3113,7 +3122,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("None", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Normal.
/// </summary>
@@ -3122,7 +3131,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Normal", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to No SmartSize.
/// </summary>
@@ -3131,7 +3140,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NoSmartSize", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Notifications.
/// </summary>
@@ -3140,7 +3149,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Notifications", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to No update available.
/// </summary>
@@ -3149,7 +3158,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("NoUpdateAvailable", resourceCulture);
}
}
-
+
/// <summary>
/// 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!.
@@ -3159,7 +3168,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OldConffile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Open a different file.
/// </summary>
@@ -3168,7 +3177,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OpenADifferentFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Open Connection File....
/// </summary>
@@ -3177,7 +3186,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OpenConnectionFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Open file.
/// </summary>
@@ -3186,7 +3195,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OpenFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Opening Command.
/// </summary>
@@ -3195,7 +3204,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OpeningCommand", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Open new tab to the right of the currently selected tab.
/// </summary>
@@ -3204,7 +3213,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OpenNewTabRight", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Open Ports.
/// </summary>
@@ -3213,7 +3222,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OpenPorts", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Options.
/// </summary>
@@ -3222,7 +3231,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Options", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to mRemoteNG Options.
/// </summary>
@@ -3231,7 +3240,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OptionsPageTitle", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Testing....
/// </summary>
@@ -3240,7 +3249,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OptionsProxyTesting", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Warning: Restart is required to commit any theme configuration change..
/// </summary>
@@ -3249,7 +3258,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OptionsThemeChangeWarning", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Do you really want to delete the theme?.
/// </summary>
@@ -3258,7 +3267,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OptionsThemeDeleteConfirmation", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to New theme name.
/// </summary>
@@ -3267,7 +3276,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OptionsThemeNewThemeCaption", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Cannot create theme, name already present or special characters in the name.
/// </summary>
@@ -3276,7 +3285,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OptionsThemeNewThemeError", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Type the new theme name.
/// </summary>
@@ -3285,7 +3294,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OptionsThemeNewThemeText", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Out Of Range.
/// </summary>
@@ -3294,7 +3303,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("OutOfRange", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Panel.
/// </summary>
@@ -3303,7 +3312,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Panel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Panel Handle: {0}.
/// </summary>
@@ -3312,7 +3321,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PanelHandle", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Panel Name.
/// </summary>
@@ -3321,7 +3330,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PanelName", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Password.
/// </summary>
@@ -3330,7 +3339,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Password", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Password must contain at least {0} of the following characters: {1}.
/// </summary>
@@ -3339,7 +3348,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PasswordConstainsSpecialCharactersConstraintHint", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Password must contain at least {0} lower case character(s).
/// </summary>
@@ -3348,7 +3357,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PasswordContainsLowerCaseConstraintHint", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Password must contain at least {0} number(s).
/// </summary>
@@ -3357,7 +3366,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PasswordContainsNumbersConstraint", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Password must contain at least {0} upper case character(s).
/// </summary>
@@ -3366,7 +3375,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PasswordContainsUpperCaseConstraintHint", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Password length must be between {0} and {1}.
/// </summary>
@@ -3375,7 +3384,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PasswordLengthConstraintHint", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Password protect.
/// </summary>
@@ -3384,7 +3393,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PasswordProtect", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Both passwords must match..
/// </summary>
@@ -3393,7 +3402,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PasswordStatusMustMatch", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The password must be at least 3 characters long..
/// </summary>
@@ -3402,7 +3411,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PasswordStatusTooShort", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Place search bar above connection tree.
/// </summary>
@@ -3411,7 +3420,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PlaceSearchBarAboveConnectionTree", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Please fill all fields.
/// </summary>
@@ -3420,7 +3429,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PleaseFillAllFields", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Popups.
/// </summary>
@@ -3429,7 +3438,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Popups", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Port.
/// </summary>
@@ -3438,7 +3447,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Port", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Portable Edition.
/// </summary>
@@ -3447,7 +3456,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PortableEdition", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Ports.
/// </summary>
@@ -3456,7 +3465,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Ports", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Port Scan.
/// </summary>
@@ -3465,7 +3474,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PortScan", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Port scan complete..
/// </summary>
@@ -3474,7 +3483,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PortScanComplete", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Couldn&apos;t load PortScan panel!.
/// </summary>
@@ -3483,7 +3492,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PortScanCouldNotLoadPanel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to PowerShell.
/// </summary>
@@ -3492,7 +3501,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PowerShell", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Printers.
/// </summary>
@@ -3501,7 +3510,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Printers", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Properties.
/// </summary>
@@ -3510,7 +3519,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Properties", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Toggle all inheritance options..
/// </summary>
@@ -3519,7 +3528,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionAll", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select which authentication level this connection should use..
/// </summary>
@@ -3528,7 +3537,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionAuthenticationLevel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select how you want to authenticate against the VNC server..
/// </summary>
@@ -3537,7 +3546,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionAuthenticationMode", resourceCulture);
}
}
-
+
/// <summary>
/// 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..
/// </summary>
@@ -3546,7 +3555,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionAutomaticResize", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select whether to use bitmap caching or not..
/// </summary>
@@ -3555,7 +3564,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionCacheBitmaps", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select the colour quality to be used..
/// </summary>
@@ -3564,7 +3573,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionColors", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select the compression value to be used..
/// </summary>
@@ -3573,7 +3582,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionCompression", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Put your notes or a description for the host here..
/// </summary>
@@ -3582,7 +3591,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionDescription", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Determines whether cursor flashes should be disabled..
/// </summary>
@@ -3591,7 +3600,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionDisableCursorBlinking", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Determines whether a mouse shadow should be visible..
/// </summary>
@@ -3600,7 +3609,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionDisableCursorShadow", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Determines whether window content is displayed when you drag the window to a new location..
/// </summary>
@@ -3609,7 +3618,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionDisableFullWindowDrag", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Determines whether menus and windows can be displayed with animation effects in the remote session..
/// </summary>
@@ -3618,7 +3627,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionDisableMenuAnimations", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select yes if the theme of the remote host should be displayed..
/// </summary>
@@ -3627,7 +3636,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionDisplayThemes", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select yes if the wallpaper of the remote host should be displayed..
/// </summary>
@@ -3636,7 +3645,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionDisplayWallpaper", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Enter your domain..
/// </summary>
@@ -3645,7 +3654,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionDomain", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select whether to use desktop composition or not..
/// </summary>
@@ -3654,7 +3663,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionEnableDesktopComposition", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select whether to use font smoothing or not..
/// </summary>
@@ -3663,7 +3672,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionEnableFontSmoothing", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select the encoding mode to be used..
/// </summary>
@@ -3672,7 +3681,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionEncoding", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select the external tool to be started..
/// </summary>
@@ -3681,7 +3690,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionExternalTool", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select a external tool to be started after the disconnection to the remote host..
/// </summary>
@@ -3690,7 +3699,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionExternalToolAfter", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select a external tool to be started before the connection to the remote host is established..
/// </summary>
@@ -3699,7 +3708,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionExternalToolBefore", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Show this connection in the favorites menu..
/// </summary>
@@ -3708,7 +3717,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionFavorite", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Enter the hostname or ip you want to connect to..
/// </summary>
@@ -3717,7 +3726,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionHostnameIp", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Choose a icon that will be displayed when connected to the host..
/// </summary>
@@ -3726,7 +3735,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionIcon", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Specifies the load balancing information for use by load balancing routers to choose the best server..
/// </summary>
@@ -3735,7 +3744,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionLoadBalanceInfo", resourceCulture);
}
}
-
+
/// <summary>
/// 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..
/// </summary>
@@ -3744,7 +3753,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionMACAddress", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to This is the name that will be displayed in the connections tree..
/// </summary>
@@ -3753,7 +3762,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionName", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to A command to run on the remote server after successfully connecting..
/// </summary>
@@ -3762,7 +3771,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionOpeningCommand", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Sets the panel in which the connection will open..
/// </summary>
@@ -3771,7 +3780,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionPanel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Enter your password..
/// </summary>
@@ -3780,7 +3789,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionPassword", resourceCulture);
}
}
-
+
/// <summary>
/// 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..
/// </summary>
@@ -3789,7 +3798,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionPasswordProtect", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Enter the port the selected protocol is listening on..
/// </summary>
@@ -3798,7 +3807,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionPort", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Choose the protocol mRemoteNG should use to connect to the host..
/// </summary>
@@ -3807,7 +3816,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionProtocol", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select a PuTTY session to be used when connecting..
/// </summary>
@@ -3816,7 +3825,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionPuttySession", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Specifies the domain name that a user provides to connect to the RD Gateway server..
/// </summary>
@@ -3825,7 +3834,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRDGatewayDomain", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Specifies the host name of the Remote Desktop Gateway server..
/// </summary>
@@ -3834,7 +3843,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRDGatewayHostname", resourceCulture);
}
}
-
+
/// <summary>
/// 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..
/// </summary>
@@ -3843,7 +3852,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRDGatewayUseConnectionCredentials", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Specifies the user name that a user provides to connect to the RD Gateway server..
/// </summary>
@@ -3852,7 +3861,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRDGatewayUsername", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select whether to receive an alert after the RDP session disconnects due to inactivity.
/// </summary>
@@ -3861,7 +3870,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRDPAlertIdleTimeout", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Specifies the password of the Remote Desktop Gateway server..
/// </summary>
@@ -3870,7 +3879,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRdpGatewayPassword", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Specifies when to use a Remote Desktop Gateway (RD Gateway) server..
/// </summary>
@@ -3879,7 +3888,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRdpGatewayUsageMethod", resourceCulture);
}
}
-
+
/// <summary>
/// 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).
/// </summary>
@@ -3888,7 +3897,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRDPMinutesToIdleTimeout", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The program to be started on the remote server upon connection..
/// </summary>
@@ -3897,7 +3906,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRDPStartProgram", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Specifies the working directory of the alternate shell..
/// </summary>
@@ -3906,7 +3915,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRDPStartProgramWorkDir", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Sets the version of RDP to use when opening connections..
/// </summary>
@@ -3915,7 +3924,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRdpVersion", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select whether the default audio input device on the remote machine should be redirected to this computer..
/// </summary>
@@ -3924,7 +3933,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRedirectAudioCapture", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select whether the clipboard should be shared..
/// </summary>
@@ -3933,7 +3942,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRedirectClipboard", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select whether local disk drives should be shown on the remote host..
/// </summary>
@@ -3942,7 +3951,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRedirectDrives", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host..
/// </summary>
@@ -3951,7 +3960,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRedirectKeys", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select whether local ports (ie. com, parallel) should be shown on the remote host..
/// </summary>
@@ -3960,7 +3969,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRedirectPorts", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select whether local printers should be shown on the remote host..
/// </summary>
@@ -3969,7 +3978,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRedirectPrinters", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select whether local smart cards should be available on the remote host..
/// </summary>
@@ -3978,7 +3987,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRedirectSmartCards", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select how remote sound should be redirected..
/// </summary>
@@ -3987,7 +3996,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRedirectSounds", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select one of the available rendering engines that will be used to display HTML..
/// </summary>
@@ -3996,7 +4005,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionRenderingEngine", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Choose the resolution or mode this connection will open in..
/// </summary>
@@ -4005,7 +4014,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionResolution", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select the SmartSize mode to be used..
/// </summary>
@@ -4014,7 +4023,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionSmartSizeMode", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Choose the Sound Quality provided by the protocol: Dynamic, Medium, High.
/// </summary>
@@ -4023,7 +4032,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionSoundQuality", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Specify here additional options to be used for SSH connection. See putty documentation for further details..
/// </summary>
@@ -4032,7 +4041,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionSshOptions", resourceCulture);
}
}
-
+
/// <summary>
/// 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..
/// </summary>
@@ -4041,7 +4050,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionSshTunnel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connect to the console session of the remote host..
/// </summary>
@@ -4050,7 +4059,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionUseConsoleSession", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use the Credential Security Support Provider (CredSSP) for authentication if it is available..
/// </summary>
@@ -4090,7 +4099,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionUseEnhancedMode", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Feel free to enter any information you need here..
/// </summary>
@@ -4119,7 +4128,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionUsername", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use VM ID to connect to VM running on Hyper-V..
/// </summary>
@@ -4128,7 +4137,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionUseVmId", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to If you want to establish a view only connection to the host select yes..
/// </summary>
@@ -4137,7 +4146,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionViewOnly", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The ID of the Hyper-V virtual machine to connect to..
/// </summary>
@@ -4146,7 +4155,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionVmId", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Enter the proxy address to be used..
/// </summary>
@@ -4155,7 +4164,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionVNCProxyAddress", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Enter your password for authenticating against the proxy..
/// </summary>
@@ -4164,7 +4173,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionVNCProxyPassword", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Enter the port the proxy server listens on..
/// </summary>
@@ -4173,7 +4182,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionVNCProxyPort", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to If you use a proxy to tunnel VNC connections, select which type it is..
/// </summary>
@@ -4182,7 +4191,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionVNCProxyType", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Enter your username for authenticating against the proxy..
/// </summary>
@@ -4191,7 +4200,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PropertyDescriptionVNCProxyUsername", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Protocol.
/// </summary>
@@ -4200,7 +4209,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Protocol", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Protocol Event Disconnected. Host: &quot;{1}&quot;; Protocol: &quot;{2}&quot; Message: &quot;{0}&quot;.
/// </summary>
@@ -4209,7 +4218,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ProtocolEventDisconnected", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Protocol Event Disconnected failed.
///{0}.
@@ -4219,7 +4228,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ProtocolEventDisconnectFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Protocol to import.
/// </summary>
@@ -4228,7 +4237,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ProtocolToImport", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Proxy.
/// </summary>
@@ -4237,7 +4246,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Proxy", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Proxy Address.
/// </summary>
@@ -4246,7 +4255,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ProxyAddress", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Proxy Password.
/// </summary>
@@ -4255,7 +4264,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ProxyPassword", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Proxy Port.
/// </summary>
@@ -4264,7 +4273,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ProxyPort", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Proxy test failed!.
/// </summary>
@@ -4273,7 +4282,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ProxyTestFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Proxy test succeeded!.
/// </summary>
@@ -4282,7 +4291,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ProxyTestSucceeded", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Proxy Type.
/// </summary>
@@ -4291,7 +4300,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ProxyType", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Proxy Username.
/// </summary>
@@ -4300,7 +4309,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ProxyUsername", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Dispose of Putty process failed!.
/// </summary>
@@ -4309,7 +4318,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttyDisposeFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Couldn&apos;t set focus!.
/// </summary>
@@ -4318,7 +4327,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttyFocusFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Putty Handle: {0}.
/// </summary>
@@ -4327,7 +4336,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttyHandle", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Killing Putty Process failed!.
/// </summary>
@@ -4336,7 +4345,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttyKillFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Putty Resize Failed!.
/// </summary>
@@ -4345,7 +4354,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttyResizeFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to PuTTY Saved Sessions.
/// </summary>
@@ -4354,7 +4363,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttySavedSessionsRootName", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to PuTTY Session.
/// </summary>
@@ -4363,7 +4372,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttySession", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to To configure PuTTY sessions click this button:.
/// </summary>
@@ -4372,7 +4381,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttySessionsConfig", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to PuTTY Settings.
/// </summary>
@@ -4381,7 +4390,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttySettings", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Show PuTTY Settings Dialog failed!.
/// </summary>
@@ -4390,7 +4399,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttyShowSettingsDialogFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to --- PuTTY Stuff ---.
/// </summary>
@@ -4399,7 +4408,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttyStuff", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Maximum PuTTY and integrated external tools wait time:.
/// </summary>
@@ -4408,7 +4417,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttyTimeout", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to PuTTY Title: {0}.
/// </summary>
@@ -4417,7 +4426,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("PuttyTitle", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Quick: {0}.
/// </summary>
@@ -4426,7 +4435,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Quick", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Quick Connect.
/// </summary>
@@ -4435,7 +4444,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("QuickConnect", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Quick Connect Add Failed!.
/// </summary>
@@ -4444,7 +4453,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("QuickConnectAddFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Creating quick connect failed.
/// </summary>
@@ -4453,7 +4462,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("QuickConnectFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Quick Connect Toolbar.
/// </summary>
@@ -4462,7 +4471,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("QuickConnectToolbar", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Warn me only when e&amp;xiting mRemoteNG.
/// </summary>
@@ -4471,7 +4480,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RadioCloseWarnExit", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Warn me only when closing &amp;multiple connections.
/// </summary>
@@ -4480,7 +4489,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RadioCloseWarnMultiple", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Do &amp;not warn me when closing connections.
/// </summary>
@@ -4489,7 +4498,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RadioCloseWarnNever", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RAW.
/// </summary>
@@ -4498,7 +4507,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Raw", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP.
/// </summary>
@@ -4507,7 +4516,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Rdp", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to 16777216 Colours (24-bit).
/// </summary>
@@ -4516,7 +4525,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Rdp16777216Colors", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to 256 Colours (8-bit).
/// </summary>
@@ -4525,7 +4534,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Rdp256Colors", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to 32768 Colours (15-bit).
/// </summary>
@@ -4534,7 +4543,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Rdp32768Colors", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to 16777216 Colours (32-bit).
/// </summary>
@@ -4543,7 +4552,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Rdp4294967296Colors", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to 65536 Colours (16-bit).
/// </summary>
@@ -4552,7 +4561,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Rdp65536Colors", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Couldn&apos;t create RDP control, please check mRemoteNG requirements..
/// </summary>
@@ -4561,7 +4570,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpControlCreationFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP Disconnect failed, trying to close!.
/// </summary>
@@ -4570,7 +4579,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpDisconnectFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Internal error code 1..
/// </summary>
@@ -4579,7 +4588,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpErrorCode1", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Internal error code 2..
/// </summary>
@@ -4588,7 +4597,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpErrorCode2", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Internal error code 3. This is not a valid state..
/// </summary>
@@ -4597,7 +4606,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpErrorCode3", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Internal error code 4..
/// </summary>
@@ -4606,7 +4615,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpErrorCode4", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to An unrecoverable error has occurred during client connection..
/// </summary>
@@ -4615,7 +4624,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpErrorConnection", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to GetError failed (FatalErrors).
/// </summary>
@@ -4624,7 +4633,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpErrorGetFailure", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to An out-of-memory error has occurred..
/// </summary>
@@ -4633,7 +4642,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpErrorOutOfMemory", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to An unknown error has occurred..
/// </summary>
@@ -4642,7 +4651,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpErrorUnknown", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to A window-creation error has occurred..
/// </summary>
@@ -4651,7 +4660,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpErrorWindowCreation", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Winsock initialization error..
/// </summary>
@@ -4660,7 +4669,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpErrorWinsock", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP Focus failed!.
/// </summary>
@@ -4669,7 +4678,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpFocusFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Gateway Domain.
/// </summary>
@@ -4678,7 +4687,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpGatewayDomain", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Gateway Hostname.
/// </summary>
@@ -4687,7 +4696,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpGatewayHostname", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP Gateway is supported..
/// </summary>
@@ -4696,7 +4705,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpGatewayIsSupported", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP Gateway is not supported!.
/// </summary>
@@ -4705,7 +4714,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpGatewayNotSupported", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Remote Desktop Gateway Password.
/// </summary>
@@ -4714,7 +4723,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpGatewayPassword", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use Gateway.
/// </summary>
@@ -4723,7 +4732,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpGatewayUsageMethod", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Gateway Credentials.
/// </summary>
@@ -4732,7 +4741,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpGatewayUseConnectionCredentials", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Gateway Username.
/// </summary>
@@ -4741,7 +4750,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpGatewayUsername", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP Connection Timeout.
/// </summary>
@@ -4750,7 +4759,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpOverallConnectionTimeout", resourceCulture);
}
}
-
+
/// <summary>
/// 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..
/// </summary>
@@ -4759,7 +4768,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpProtocolVersionNotSupported", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP reconnection count:.
/// </summary>
@@ -4768,7 +4777,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpReconnectCount", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP SetAuthenticationLevel failed!.
/// </summary>
@@ -4777,7 +4786,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetAuthenticationLevelFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP SetUseConsoleSession failed!.
/// </summary>
@@ -4786,7 +4795,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetConsoleSessionFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP Setting Console switch for RDC {0}..
/// </summary>
@@ -4795,7 +4804,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetConsoleSwitch", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP SetCredentials failed!.
/// </summary>
@@ -4804,7 +4813,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetCredentialsFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP SetEventHandlers failed!.
/// </summary>
@@ -4813,7 +4822,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetEventHandlersFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP SetRDGateway failed!.
/// </summary>
@@ -4822,7 +4831,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetGatewayFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP SetPerformanceFlags failed!.
/// </summary>
@@ -4831,7 +4840,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetPerformanceFlagsFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP SetPort failed!.
/// </summary>
@@ -4840,7 +4849,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetPortFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP SetProps failed!.
/// </summary>
@@ -4849,7 +4858,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetPropsFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP Set Redirection Failed!.
/// </summary>
@@ -4858,7 +4867,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetRedirectionFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP Set Redirect Keys Failed!.
/// </summary>
@@ -4867,7 +4876,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetRedirectKeysFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP SetResolution failed!.
/// </summary>
@@ -4876,7 +4885,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSetResolutionFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Bring to this computer.
/// </summary>
@@ -4885,7 +4894,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSoundBringToThisComputer", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Leave at remote computer.
/// </summary>
@@ -4894,7 +4903,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpSoundLeaveAtRemoteComputer", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Alternate Shell.
/// </summary>
@@ -4903,7 +4912,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RDPStartProgram", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Alternate shell working directory.
/// </summary>
@@ -4912,7 +4921,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RDPStartProgramWorkDir", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP ToggleFullscreen failed!.
/// </summary>
@@ -4921,7 +4930,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpToggleFullscreenFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP ToggleSmartSize failed!.
/// </summary>
@@ -4930,7 +4939,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpToggleSmartSizeFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to RDP Version.
/// </summary>
@@ -4939,7 +4948,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RdpVersion", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Read only:.
/// </summary>
@@ -4948,7 +4957,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ReadOnly", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Reconnect.
/// </summary>
@@ -4957,7 +4966,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Reconnect", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Reconnect All Connections.
/// </summary>
@@ -4966,7 +4975,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ReconnectAllConnections", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Reconnect to previously opened sessions on startup.
/// </summary>
@@ -4975,7 +4984,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ReconnectAtStartup", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Redirect.
/// </summary>
@@ -4984,7 +4993,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Redirect", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Disk Drives.
/// </summary>
@@ -4993,7 +5002,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RedirectDrives", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Key Combinations.
/// </summary>
@@ -5002,7 +5011,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RedirectKeys", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Smart Cards.
/// </summary>
@@ -5011,7 +5020,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RedirectSmartCards", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Refresh.
/// </summary>
@@ -5020,7 +5029,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Refresh", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Refresh Screen (VNC).
/// </summary>
@@ -5029,7 +5038,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RefreshScreen", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Release Channel.
/// </summary>
@@ -5038,7 +5047,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ReleaseChannel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Stable channel includes final releases only.
///Preview channel includes Betas &amp; Release Candidates.
@@ -5049,7 +5058,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ReleaseChannelExplanation", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Released under the GNU General Public License (GPL).
/// </summary>
@@ -5058,7 +5067,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ReleasedUnderGPL", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Remote Desktop Services.
/// </summary>
@@ -5067,7 +5076,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RemoteDesktopServices", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Remote file.
/// </summary>
@@ -5076,7 +5085,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RemoteFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Remove All.
/// </summary>
@@ -5085,7 +5094,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RemoveAll", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Rename.
/// </summary>
@@ -5094,7 +5103,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Rename", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Rename Tab.
/// </summary>
@@ -5103,7 +5112,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RenameTab", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Rendering Engine.
/// </summary>
@@ -5112,7 +5121,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RenderingEngine", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Report a Bug.
/// </summary>
@@ -5121,7 +5130,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ReportBug", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Reset layout.
/// </summary>
@@ -5130,7 +5139,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ResetLayout", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Resolution.
/// </summary>
@@ -5139,7 +5148,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Resolution", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Rlogin.
/// </summary>
@@ -5148,7 +5157,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Rlogin", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Run elevated.
/// </summary>
@@ -5157,7 +5166,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("RunElevated", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Save.
/// </summary>
@@ -5166,7 +5175,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Save", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Save All.
/// </summary>
@@ -5175,7 +5184,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SaveAll", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Save Connection File.
/// </summary>
@@ -5184,7 +5193,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SaveConnectionFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Save Connection File As....
/// </summary>
@@ -5193,7 +5202,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SaveConnectionFileAs", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Save connections after every edit.
/// </summary>
@@ -5202,7 +5211,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SaveConnectionsAfterEveryEdit", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Do you want to save the current connections file before loading another?.
/// </summary>
@@ -5211,7 +5220,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SaveConnectionsFileBeforeOpeningAnother", resourceCulture);
}
}
-
+
/// <summary>
/// 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.
/// </summary>
@@ -5220,7 +5229,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SaveImageFilter", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Screen.
/// </summary>
@@ -5229,7 +5238,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Screen", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Screenshot.
/// </summary>
@@ -5238,7 +5247,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Screenshot", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Screenshots.
/// </summary>
@@ -5247,7 +5256,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Screenshots", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Search.
/// </summary>
@@ -5256,7 +5265,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SearchPrompt", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Seconds.
/// </summary>
@@ -5265,7 +5274,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Seconds", resourceCulture);
}
}
-
+
/// <summary>
/// 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..
/// </summary>
@@ -5274,7 +5283,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SelectPanel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Send Special Keys (VNC).
/// </summary>
@@ -5283,7 +5292,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SendSpecialKeys", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Send To....
/// </summary>
@@ -5292,7 +5301,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SendTo", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Server &apos;{0}&apos; was not accessible..
/// </summary>
@@ -5301,7 +5310,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ServerNotAccessible", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Server status:.
/// </summary>
@@ -5310,7 +5319,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ServerStatus", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Set hostname like display name when creating or renaming connections.
/// </summary>
@@ -5319,7 +5328,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SetHostnameLikeDisplayName", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Couldn&apos;t save settings or dispose SysTray Icon!.
/// </summary>
@@ -5328,7 +5337,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SettingsCouldNotBeSavedOrTrayDispose", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Show description tooltips in connection tree.
/// </summary>
@@ -5337,7 +5346,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ShowDescriptionTooltips", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Show full connections file path in window title.
/// </summary>
@@ -5346,7 +5355,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ShowFullConsFilePath", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to &amp;Show Help Text.
/// </summary>
@@ -5355,7 +5364,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ShowHelpText", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Show/Hide Menu Strip.
/// </summary>
@@ -5364,7 +5373,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ShowHideMenu", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Show logon information on tab names.
/// </summary>
@@ -5373,7 +5382,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ShowLogonInfoOnTabs", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Show On Toolbar.
/// </summary>
@@ -5382,7 +5391,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ShowOnToolbar", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Show on toolbar column.
/// </summary>
@@ -5391,7 +5400,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ShowOnToolbarColumnHeader", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Show protocols on tab names.
/// </summary>
@@ -5400,7 +5409,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ShowProtocolOnTabs", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Show Text.
/// </summary>
@@ -5409,7 +5418,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ShowText", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Show these message types.
/// </summary>
@@ -5418,7 +5427,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ShowTheseMessageTypes", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Single click on connection opens it.
/// </summary>
@@ -5427,7 +5436,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SingleClickOnConnectionOpensIt", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Single click on opened connection in Connection Tree switches to opened Connection Tab.
/// </summary>
@@ -5436,7 +5445,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SingleClickOnOpenConnectionSwitchesToIt", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SmartCard.
/// </summary>
@@ -5445,7 +5454,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SmartCard", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SmartSize (RDP/VNC).
/// </summary>
@@ -5454,7 +5463,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SmartSize", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SmartSize Mode.
/// </summary>
@@ -5463,7 +5472,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SmartSizeMode", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Socks 5.
/// </summary>
@@ -5472,7 +5481,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Socks5", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Sort.
/// </summary>
@@ -5481,7 +5490,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Sort", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Ascending (A-Z).
/// </summary>
@@ -5490,7 +5499,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SortAsc", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Descending (Z-A).
/// </summary>
@@ -5499,7 +5508,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SortDesc", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Sound quality.
/// </summary>
@@ -5508,7 +5517,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SoundQuality", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Sounds.
/// </summary>
@@ -5517,7 +5526,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Sounds", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Please see Help - Getting started - SQL Configuration for more Info!.
/// </summary>
@@ -5526,7 +5535,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SQLInfo", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SQL Server.
/// </summary>
@@ -5535,7 +5544,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SQLServer", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH background transfer failed!.
/// </summary>
@@ -5544,7 +5553,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshBackgroundTransferFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH File Transfer.
/// </summary>
@@ -5553,7 +5562,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshFileTransfer", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH Options.
/// </summary>
@@ -5562,7 +5571,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshOptions", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH transfer failed..
/// </summary>
@@ -5571,7 +5580,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshTransferFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH Tunnel.
/// </summary>
@@ -5580,7 +5589,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshTunnel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH Tunnel connection configuration problem. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; 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..
/// </summary>
@@ -5589,7 +5598,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshTunnelConfigProblem", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH tunnel connection failed. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; not possible. Putty process terminated. Check for any problems with the connection configured as SSH Tunnel..
/// </summary>
@@ -5598,7 +5607,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshTunnelFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH tunnel configuration problem. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; 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..
/// </summary>
@@ -5607,7 +5616,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshTunnelIsNotPutty", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH tunnel connection problem. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; not possible. SSH connection failed. Check for any problems with the connection configured as SSH Tunnel..
/// </summary>
@@ -5616,7 +5625,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshTunnelNotConnected", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH tunnel initialization problem. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; not possible. SSH connection could not be initialized. Check for any problems with the connection configured as SSH Tunnel..
/// </summary>
@@ -5625,7 +5634,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshTunnelNotInitialized", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH tunnel connection timed out. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; not possible. Local tunnel port did not become available in time. Check for any problems with the connection configured as SSH Tunnel..
/// </summary>
@@ -5634,7 +5643,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshTunnelPortNotReadyInTime", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH version 1.
/// </summary>
@@ -5643,7 +5652,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshV1", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to SSH version 2.
/// </summary>
@@ -5652,7 +5661,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SshV2", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Stack trace.
/// </summary>
@@ -5661,7 +5670,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("StackTrace", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Start Chat (VNC).
/// </summary>
@@ -5670,7 +5679,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("StartChat", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Start minimized.
/// </summary>
@@ -5679,7 +5688,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("StartMinimized", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Startup/Exit.
/// </summary>
@@ -5688,7 +5697,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("StartupExit", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Status.
/// </summary>
@@ -5697,7 +5706,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Status", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Backup.
/// </summary>
@@ -5706,7 +5715,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("strBackup", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Browse....
/// </summary>
@@ -5715,7 +5724,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("strBrowse", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Connection Backup Frequency.
/// </summary>
@@ -5724,7 +5733,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("strConnectionBackupFrequency", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Maximum number of backups.
/// </summary>
@@ -5733,7 +5742,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("strConnectionsBackupMaxCount", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Location of connection file backup.
/// </summary>
@@ -5742,7 +5751,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("strConnectionsBackupPath", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Support Forum.
/// </summary>
@@ -5751,7 +5760,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SupportForum", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Switch to Notifications panel on:.
/// </summary>
@@ -5760,7 +5769,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("SwitchToErrorsAndInfos", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Tabs &amp;&amp; Panels.
/// </summary>
@@ -5769,7 +5778,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TabsAndPanels", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Security.
/// </summary>
@@ -5778,7 +5787,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TabSecurity", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Telnet.
/// </summary>
@@ -5787,7 +5796,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Telnet", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Test connection.
/// </summary>
@@ -5796,7 +5805,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TestConnection", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Testing connection.
/// </summary>
@@ -5805,7 +5814,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TestingConnection", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Test Proxy.
/// </summary>
@@ -5814,7 +5823,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TestProxy", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Test Settings.
/// </summary>
@@ -5823,7 +5832,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TestSettings", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The following:.
/// </summary>
@@ -5832,7 +5841,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TheFollowing", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Theme.
/// </summary>
@@ -5841,7 +5850,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Theme", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Timeout [seconds].
/// </summary>
@@ -5850,7 +5859,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TimeoutInSeconds", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Title.
/// </summary>
@@ -5859,7 +5868,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Title", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Error ({0}).
/// </summary>
@@ -5868,7 +5877,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TitleError", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Information ({0}).
/// </summary>
@@ -5877,7 +5886,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TitleInformation", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to mRemoteNG password.
/// </summary>
@@ -5886,7 +5895,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TitlePassword", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to mRemoteNG password for {0}.
/// </summary>
@@ -5895,7 +5904,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TitlePasswordWithName", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Select Panel.
/// </summary>
@@ -5904,7 +5913,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TitleSelectPanel", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Warning ({0}).
/// </summary>
@@ -5913,7 +5922,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TitleWarning", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Track active connection in the connection tree.
/// </summary>
@@ -5922,7 +5931,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TrackActiveConnectionInConnectionTree", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Transfer.
/// </summary>
@@ -5931,7 +5940,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Transfer", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Transfer File (SSH).
/// </summary>
@@ -5940,7 +5949,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TransferFile", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Try to integrate.
/// </summary>
@@ -5949,7 +5958,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("TryToIntegrate", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Ultra VNC Repeater.
/// </summary>
@@ -5958,7 +5967,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UltraVncRepeater", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to UltraVNC SingleClick port:.
/// </summary>
@@ -5967,7 +5976,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UltraVNCSCListeningPort", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to UltraVNC SingleClick.
/// </summary>
@@ -5976,7 +5985,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UltraVNCSingleClick", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Uncheck the properties you want not to be saved!.
/// </summary>
@@ -5985,7 +5994,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UncheckProperties", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to An unhandled exception has occurred.
/// </summary>
@@ -5994,7 +6003,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UnhandledExceptionOccured", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to mRemoteNG requires an update.
/// </summary>
@@ -6003,7 +6012,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UpdateAvailable", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to mRemoteNG can periodically connect to the mRemoteNG website to check for updates..
/// </summary>
@@ -6012,7 +6021,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UpdateCheck", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The update information could not be downloaded..
/// </summary>
@@ -6021,7 +6030,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UpdateCheckCompleteFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Download complete!
///mRemoteNG will now quit and begin with the installation..
@@ -6031,7 +6040,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UpdateDownloadComplete", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The update could not be downloaded..
/// </summary>
@@ -6040,7 +6049,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UpdateDownloadCompleteFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The update download could not be initiated..
/// </summary>
@@ -6049,7 +6058,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UpdateDownloadFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Every {0} days.
/// </summary>
@@ -6058,7 +6067,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UpdateFrequencyCustom", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to The change log could not be downloaded..
/// </summary>
@@ -6067,7 +6076,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UpdateGetChangeLogFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Download Completed!.
/// </summary>
@@ -6076,7 +6085,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UpdatePortableDownloadComplete", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Updates.
/// </summary>
@@ -6085,7 +6094,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Updates", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use Console Session.
/// </summary>
@@ -6094,7 +6103,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UseConsoleSession", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use CredSSP.
/// </summary>
@@ -6134,7 +6143,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UseDefault", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use a different username and password.
/// </summary>
@@ -6143,7 +6152,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UseDifferentUsernameAndPassword", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use enhanced mode.
/// </summary>
@@ -6152,7 +6161,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UseEnhancedMode", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to User.
/// </summary>
@@ -6161,7 +6170,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("User", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to User Field.
/// </summary>
@@ -6190,7 +6199,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Username", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use the same username and password.
/// </summary>
@@ -6199,7 +6208,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UseSameUsernameAndPassword", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use a smart card.
/// </summary>
@@ -6208,7 +6217,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UseSmartCard", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use SQL Server to load &amp;&amp; save connections.
/// </summary>
@@ -6217,7 +6226,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UseSQLServer", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Use VM ID.
/// </summary>
@@ -6226,7 +6235,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("UseVmId", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Verify:.
/// </summary>
@@ -6235,7 +6244,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Verify", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Version.
/// </summary>
@@ -6244,7 +6253,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Version", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to View Only.
/// </summary>
@@ -6253,7 +6262,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("ViewOnly", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to VM ID.
/// </summary>
@@ -6262,7 +6271,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("VmId", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to VNC.
/// </summary>
@@ -6271,7 +6280,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Vnc", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to VNC disconnect failed!.
/// </summary>
@@ -6280,7 +6289,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("VncConnectionDisconnectFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to VNC Refresh Screen Failed!.
/// </summary>
@@ -6289,7 +6298,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("VncRefreshFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to VNC SendSpecialKeys failed!.
/// </summary>
@@ -6298,7 +6307,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("VncSendSpecialKeysFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to VNC Set Event Handlers failed!.
/// </summary>
@@ -6307,7 +6316,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("VncSetEventHandlersFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to VNC Set Props Failed!.
/// </summary>
@@ -6316,7 +6325,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("VncSetPropsFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to VNC Toggle SmartSize Failed!.
/// </summary>
@@ -6325,7 +6334,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("VncToggleSmartSizeFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to VNC Toggle ViewOnly Failed!.
/// </summary>
@@ -6334,7 +6343,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("VncToggleViewOnlyFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Wait for exit.
/// </summary>
@@ -6343,7 +6352,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("WaitForExit", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Warn me if authentication fails.
/// </summary>
@@ -6352,7 +6361,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("WarnIfAuthFails", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Warnings.
/// </summary>
@@ -6361,7 +6370,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Warnings", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Website.
/// </summary>
@@ -6370,7 +6379,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Website", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to WebView2 creation failed with exception.
/// </summary>
@@ -6379,7 +6388,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("WebView2InitializationFailed", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Weekly.
/// </summary>
@@ -6388,7 +6397,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Weekly", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Windows.
/// </summary>
@@ -6397,7 +6406,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("Windows", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Working directory.
/// </summary>
@@ -6406,7 +6415,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("WorkingDirColumnHeader", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Working directory:.
/// </summary>
@@ -6415,7 +6424,7 @@ namespace mRemoteNG.Resources.Language {
return ResourceManager.GetString("WorkingDirectory", resourceCulture);
}
}
-
+
/// <summary>
/// Looks up a localized string similar to Yes.
/// </summary>
@@ -6555,4 +6564,4 @@ namespace mRemoteNG.Resources.Language {
}
}
}
-}
+} \ No newline at end of file
diff --git a/mRemoteNG/Language/Language.resx b/mRemoteNG/Language/Language.resx
index 80465f73..639fdd7f 100644
--- a/mRemoteNG/Language/Language.resx
+++ b/mRemoteNG/Language/Language.resx
@@ -1086,15 +1086,12 @@ If you run into such an error, please create a new connection file!</value>
<data name="PropertyDescriptionUseCredSsp" xml:space="preserve">
<value>Use the Credential Security Support Provider (CredSSP) for authentication if it is available.</value>
</data>
-
<data name="PropertyDescriptionUseRestrictedAdmin" xml:space="preserve">
<value>Use restricted admin mode on the target host (local system context).</value>
</data>
-
<data name="PropertyDescriptionUseRCG" xml:space="preserve">
<value>Use Remote Credential Guard to tunnel authentication on target back to source through the RDP channel.</value>
</data>
-
<data name="PropertyDescriptionUser1" xml:space="preserve">
<value>Feel free to enter any information you need here.</value>
</data>
@@ -1248,15 +1245,12 @@ If you run into such an error, please create a new connection file!</value>
<data name="UseCredSsp" xml:space="preserve">
<value>Use CredSSP</value>
</data>
-
<data name="UseRestrictedAdmin" xml:space="preserve">
<value>Use Restricted Admin</value>
</data>
<data name="UseRCG" xml:space="preserve">
<value>Use Remote Credential Guard</value>
</data>
-
-
<data name="UserField" xml:space="preserve">
<value>User Field</value>
</data>
@@ -2283,4 +2277,7 @@ Nightly Channel includes Alphas, Betas &amp; Release Candidates.</value>
<data name="ShowForUser" xml:space="preserve">
<value>Show for user</value>
</data>
+ <data name="FiltermRemoteRemoteDesktopManagerCSV" xml:space="preserve">
+ <value>Remote Desktop Manager Files (*.csv)</value>
+ </data>
</root> \ No newline at end of file
diff --git a/mRemoteNG/UI/Controls/ConnectionContextMenu.cs b/mRemoteNG/UI/Controls/ConnectionContextMenu.cs
index 38143ba3..08ceddd9 100644
--- a/mRemoteNG/UI/Controls/ConnectionContextMenu.cs
+++ b/mRemoteNG/UI/Controls/ConnectionContextMenu.cs
@@ -50,6 +50,7 @@ namespace mRemoteNG.UI.Controls
private ToolStripMenuItem _cMenTreeExportFile;
private ToolStripSeparator _toolStripSeparator1;
private ToolStripMenuItem _cMenTreeImportFile;
+ private ToolStripMenuItem _cMenTreeImportFromRemoteDesktopManager;
private ToolStripMenuItem _cMenTreeImportActiveDirectory;
private ToolStripMenuItem _cMenTreeImportPortScan;
private ToolStripMenuItem _cMenTreeApplyInheritanceToChildren;
@@ -98,6 +99,7 @@ namespace mRemoteNG.UI.Controls
_cMenTreeSep3 = new ToolStripSeparator();
_cMenTreeImport = new ToolStripMenuItem();
_cMenTreeImportFile = new ToolStripMenuItem();
+ _cMenTreeImportFromRemoteDesktopManager = new ToolStripMenuItem();
_cMenTreeImportActiveDirectory = new ToolStripMenuItem();
_cMenTreeImportPortScan = new ToolStripMenuItem();
_cMenInheritanceSubMenu = new ToolStripMenuItem();
@@ -115,9 +117,9 @@ namespace mRemoteNG.UI.Controls
_cMenTreeMoveDown = new ToolStripMenuItem();
- //
+ //
// cMenTree
- //
+ //
Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, 0);
Items.AddRange(new ToolStripItem[]
@@ -148,17 +150,17 @@ namespace mRemoteNG.UI.Controls
Name = "cMenTree";
RenderMode = ToolStripRenderMode.Professional;
Size = new System.Drawing.Size(200, 364);
- //
+ //
// cMenTreeConnect
- //
+ //
_cMenTreeConnect.Image = Properties.Resources.Run_16x;
_cMenTreeConnect.Name = "_cMenTreeConnect";
_cMenTreeConnect.Size = new System.Drawing.Size(199, 22);
_cMenTreeConnect.Text = "Connect";
_cMenTreeConnect.Click += OnConnectClicked;
- //
+ //
// cMenTreeConnectWithOptions
- //
+ //
_cMenTreeConnectWithOptions.DropDownItems.AddRange(new ToolStripItem[]
{
_cMenTreeConnectWithOptionsConnectToConsoleSession,
@@ -171,195 +173,202 @@ namespace mRemoteNG.UI.Controls
_cMenTreeConnectWithOptions.Name = "_cMenTreeConnectWithOptions";
_cMenTreeConnectWithOptions.Size = new System.Drawing.Size(199, 22);
_cMenTreeConnectWithOptions.Text = "Connect (with options)";
- //
+ //
// cMenTreeConnectWithOptionsConnectToConsoleSession
- //
+ //
_cMenTreeConnectWithOptionsConnectToConsoleSession.Name =
"_cMenTreeConnectWithOptionsConnectToConsoleSession";
_cMenTreeConnectWithOptionsConnectToConsoleSession.Size = new System.Drawing.Size(245, 22);
_cMenTreeConnectWithOptionsConnectToConsoleSession.Text = "Connect to console session";
_cMenTreeConnectWithOptionsConnectToConsoleSession.Click += OnConnectToConsoleSessionClicked;
- //
+ //
// cMenTreeConnectWithOptionsDontConnectToConsoleSession
- //
+ //
_cMenTreeConnectWithOptionsDontConnectToConsoleSession.Name =
"_cMenTreeConnectWithOptionsDontConnectToConsoleSession";
_cMenTreeConnectWithOptionsDontConnectToConsoleSession.Size = new System.Drawing.Size(245, 22);
_cMenTreeConnectWithOptionsDontConnectToConsoleSession.Text = "Don\'t connect to console session";
_cMenTreeConnectWithOptionsDontConnectToConsoleSession.Visible = false;
_cMenTreeConnectWithOptionsDontConnectToConsoleSession.Click += OnDontConnectToConsoleSessionClicked;
- //
+ //
// cMenTreeConnectWithOptionsConnectInFullscreen
- //
+ //
_cMenTreeConnectWithOptionsConnectInFullscreen.Image = Properties.Resources.FullScreen_16x;
_cMenTreeConnectWithOptionsConnectInFullscreen.Name = "_cMenTreeConnectWithOptionsConnectInFullscreen";
_cMenTreeConnectWithOptionsConnectInFullscreen.Size = new System.Drawing.Size(245, 22);
_cMenTreeConnectWithOptionsConnectInFullscreen.Text = "Connect in fullscreen";
_cMenTreeConnectWithOptionsConnectInFullscreen.Click += OnConnectInFullscreenClicked;
- //
+ //
// cMenTreeConnectWithOptionsNoCredentials
- //
+ //
_cMenTreeConnectWithOptionsNoCredentials.Image = Properties.Resources.UniqueKeyError_16x;
_cMenTreeConnectWithOptionsNoCredentials.Name = "_cMenTreeConnectWithOptionsNoCredentials";
_cMenTreeConnectWithOptionsNoCredentials.Size = new System.Drawing.Size(245, 22);
_cMenTreeConnectWithOptionsNoCredentials.Text = "Connect without credentials";
_cMenTreeConnectWithOptionsNoCredentials.Click += OnConnectWithNoCredentialsClick;
- //
+ //
// cMenTreeConnectWithOptionsChoosePanelBeforeConnecting
- //
+ //
_cMenTreeConnectWithOptionsChoosePanelBeforeConnecting.Image = Properties.Resources.Panel_16x;
_cMenTreeConnectWithOptionsChoosePanelBeforeConnecting.Name =
"_cMenTreeConnectWithOptionsChoosePanelBeforeConnecting";
_cMenTreeConnectWithOptionsChoosePanelBeforeConnecting.Size = new System.Drawing.Size(245, 22);
_cMenTreeConnectWithOptionsChoosePanelBeforeConnecting.Text = "Choose panel before connecting";
_cMenTreeConnectWithOptionsChoosePanelBeforeConnecting.Click += OnChoosePanelBeforeConnectingClicked;
- //
+ //
// cMenTreeConnectWithOptionsViewOnly
- //
+ //
_cMenTreeConnectWithOptionsViewOnly.Image = Properties.Resources.Monitor_16x;
_cMenTreeConnectWithOptionsViewOnly.Name =
"_cMenTreeConnectWithOptionsViewOnly";
_cMenTreeConnectWithOptionsViewOnly.Size = new System.Drawing.Size(245, 22);
_cMenTreeConnectWithOptionsViewOnly.Text = Language.ConnectInViewOnlyMode;
_cMenTreeConnectWithOptionsViewOnly.Click += ConnectWithOptionsViewOnlyOnClick;
- //
+ //
// cMenTreeDisconnect
- //
+ //
_cMenTreeDisconnect.Image = Properties.Resources.Stop_16x;
_cMenTreeDisconnect.Name = "_cMenTreeDisconnect";
_cMenTreeDisconnect.Size = new System.Drawing.Size(199, 22);
_cMenTreeDisconnect.Text = "Disconnect";
_cMenTreeDisconnect.Click += OnDisconnectClicked;
- //
+ //
// cMenTreeSep1
- //
+ //
_cMenTreeSep1.Name = "_cMenTreeSep1";
_cMenTreeSep1.Size = new System.Drawing.Size(196, 6);
- //
+ //
// cMenTreeToolsExternalApps
- //
+ //
_cMenTreeToolsExternalApps.Image = Properties.Resources.Console_16x;
_cMenTreeToolsExternalApps.Name = "_cMenTreeToolsExternalApps";
_cMenTreeToolsExternalApps.Size = new System.Drawing.Size(199, 22);
_cMenTreeToolsExternalApps.Text = "External Applications";
- //
+ //
// cMenTreeToolsTransferFile
- //
+ //
_cMenTreeToolsTransferFile.Image = Properties.Resources.SyncArrow_16x;
_cMenTreeToolsTransferFile.Name = "_cMenTreeToolsTransferFile";
_cMenTreeToolsTransferFile.Size = new System.Drawing.Size(199, 22);
_cMenTreeToolsTransferFile.Text = "Transfer File (SSH)";
_cMenTreeToolsTransferFile.Click += OnTransferFileClicked;
- //
+ //
// cMenTreeSep2
- //
+ //
_cMenTreeSep2.Name = "_cMenTreeSep2";
_cMenTreeSep2.Size = new System.Drawing.Size(196, 6);
- //
+ //
// cMenTreeDuplicate
- //
+ //
_cMenTreeDuplicate.Image = Properties.Resources.Copy_16x;
_cMenTreeDuplicate.Name = "_cMenTreeDuplicate";
_cMenTreeDuplicate.Size = new System.Drawing.Size(199, 22);
_cMenTreeDuplicate.Text = "Duplicate";
_cMenTreeDuplicate.Click += OnDuplicateClicked;
- //
+ //
// cMenTreeRename
- //
+ //
_cMenTreeRename.Image = Properties.Resources.Rename_16x;
_cMenTreeRename.Name = "_cMenTreeRename";
_cMenTreeRename.Size = new System.Drawing.Size(199, 22);
_cMenTreeRename.Text = "Rename";
_cMenTreeRename.Click += OnRenameClicked;
- //
+ //
// cMenTreeDelete
- //
+ //
_cMenTreeDelete.Image = Properties.Resources.Close_16x;
_cMenTreeDelete.Name = "_cMenTreeDelete";
_cMenTreeDelete.Size = new System.Drawing.Size(199, 22);
_cMenTreeDelete.Text = "Delete";
_cMenTreeDelete.Click += OnDeleteClicked;
- //
+ //
// cMenTreeCopyHostname
- //
+ //
_cMenTreeCopyHostname.Name = "_cMenTreeCopyHostname";
_cMenTreeCopyHostname.Size = new System.Drawing.Size(199, 22);
_cMenTreeCopyHostname.Text = "Copy Hostname";
_cMenTreeCopyHostname.Click += OnCopyHostnameClicked;
- //
+ //
// cMenTreeSep3
- //
+ //
_cMenTreeSep3.Name = "_cMenTreeSep3";
_cMenTreeSep3.Size = new System.Drawing.Size(196, 6);
- //
+ //
// cMenTreeImport
- //
+ //
_cMenTreeImport.DropDownItems.AddRange(new ToolStripItem[]
{
_cMenTreeImportFile,
+ _cMenTreeImportFromRemoteDesktopManager,
_cMenTreeImportActiveDirectory,
_cMenTreeImportPortScan
});
_cMenTreeImport.Name = "_cMenTreeImport";
_cMenTreeImport.Size = new System.Drawing.Size(199, 22);
_cMenTreeImport.Text = "&Import";
- //
+ //
// cMenTreeImportFile
- //
+ //
_cMenTreeImportFile.Name = "_cMenTreeImportFile";
_cMenTreeImportFile.Size = new System.Drawing.Size(226, 22);
_cMenTreeImportFile.Text = "Import from &File...";
_cMenTreeImportFile.Click += OnImportFileClicked;
- //
+
+ // cMenTreeImportFromRemoteDesktopManager
+ _cMenTreeImportFromRemoteDesktopManager.Name = "_cMenTreeImportFromRemoteDesktopManager";
+ _cMenTreeImportFromRemoteDesktopManager.Size = new System.Drawing.Size(226, 22);
+ _cMenTreeImportFromRemoteDesktopManager.Text = "Import from &Remote Desktop Manager";
+ _cMenTreeImportFromRemoteDesktopManager.Click += OnImportRemoteDesktopManagerClicked;
+ //
// cMenTreeImportActiveDirectory
- //
+ //
_cMenTreeImportActiveDirectory.Name = "_cMenTreeImportActiveDirectory";
_cMenTreeImportActiveDirectory.Size = new System.Drawing.Size(226, 22);
_cMenTreeImportActiveDirectory.Text = "Import from &Active Directory...";
_cMenTreeImportActiveDirectory.Click += OnImportActiveDirectoryClicked;
- //
+ //
// cMenTreeImportPortScan
- //
+ //
_cMenTreeImportPortScan.Name = "_cMenTreeImportPortScan";
_cMenTreeImportPortScan.Size = new System.Drawing.Size(226, 22);
_cMenTreeImportPortScan.Text = "Import from &Port Scan...";
_cMenTreeImportPortScan.Click += OnImportPortScanClicked;
- //
+ //
// cMenTreeExportFile
- //
+ //
_cMenTreeExportFile.Name = "_cMenTreeExportFile";
_cMenTreeExportFile.Size = new System.Drawing.Size(199, 22);
_cMenTreeExportFile.Text = "&Export to File...";
_cMenTreeExportFile.Click += OnExportFileClicked;
- //
+ //
// cMenTreeSep4
- //
+ //
_cMenTreeSep4.Name = "_cMenTreeSep4";
_cMenTreeSep4.Size = new System.Drawing.Size(196, 6);
- //
+ //
// cMenTreeAddConnection
- //
+ //
_cMenTreeAddConnection.Image = Properties.Resources.AddItem_16x;
_cMenTreeAddConnection.Name = "_cMenTreeAddConnection";
_cMenTreeAddConnection.Size = new System.Drawing.Size(199, 22);
_cMenTreeAddConnection.Text = "New Connection";
_cMenTreeAddConnection.Click += OnAddConnectionClicked;
- //
+ //
// cMenTreeAddFolder
- //
+ //
_cMenTreeAddFolder.Image = Properties.Resources.AddFolder_16x;
_cMenTreeAddFolder.Name = "_cMenTreeAddFolder";
_cMenTreeAddFolder.Size = new System.Drawing.Size(199, 22);
_cMenTreeAddFolder.Text = "New Folder";
_cMenTreeAddFolder.Click += OnAddFolderClicked;
- //
+ //
// ToolStripSeparator1
- //
+ //
_toolStripSeparator1.Name = "_toolStripSeparator1";
_toolStripSeparator1.Size = new System.Drawing.Size(196, 6);
- //
+ //
// cMenTreeToolsSort
- //
+ //
_cMenTreeToolsSort.DropDownItems.AddRange(new ToolStripItem[]
{
_cMenTreeToolsSortAscending,
@@ -368,41 +377,41 @@ namespace mRemoteNG.UI.Controls
_cMenTreeToolsSort.Name = "_cMenTreeToolsSort";
_cMenTreeToolsSort.Size = new System.Drawing.Size(199, 22);
_cMenTreeToolsSort.Text = "Sort";
- //
+ //
// cMenTreeToolsSortAscending
- //
+ //
_cMenTreeToolsSortAscending.Image = Properties.Resources.SortAscending_16x;
_cMenTreeToolsSortAscending.Name = "_cMenTreeToolsSortAscending";
_cMenTreeToolsSortAscending.Size = new System.Drawing.Size(161, 22);
_cMenTreeToolsSortAscending.Text = "Ascending (A-Z)";
_cMenTreeToolsSortAscending.Click += OnSortAscendingClicked;
- //
+ //
// cMenTreeToolsSortDescending
- //
+ //
_cMenTreeToolsSortDescending.Image = Properties.Resources.SortDescending_16x;
_cMenTreeToolsSortDescending.Name = "_cMenTreeToolsSortDescending";
_cMenTreeToolsSortDescending.Size = new System.Drawing.Size(161, 22);
_cMenTreeToolsSortDescending.Text = "Descending (Z-A)";
_cMenTreeToolsSortDescending.Click += OnSortDescendingClicked;
- //
+ //
// cMenTreeMoveUp
- //
+ //
_cMenTreeMoveUp.Image = Properties.Resources.GlyphUp_16x;
_cMenTreeMoveUp.Name = "_cMenTreeMoveUp";
_cMenTreeMoveUp.Size = new System.Drawing.Size(199, 22);
_cMenTreeMoveUp.Text = "Move up";
_cMenTreeMoveUp.Click += OnMoveUpClicked;
- //
+ //
// cMenTreeMoveDown
- //
+ //
_cMenTreeMoveDown.Image = Properties.Resources.GlyphDown_16x;
_cMenTreeMoveDown.Name = "_cMenTreeMoveDown";
_cMenTreeMoveDown.Size = new System.Drawing.Size(199, 22);
_cMenTreeMoveDown.Text = "Move down";
_cMenTreeMoveDown.Click += OnMoveDownClicked;
- //
+ //
// cMenEditSubMenu
- //
+ //
_cMenInheritanceSubMenu.DropDownItems.AddRange(new ToolStripItem[]
{
_cMenTreeApplyInheritanceToChildren,
@@ -411,16 +420,16 @@ namespace mRemoteNG.UI.Controls
_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";
@@ -853,6 +862,17 @@ namespace mRemoteNG.UI.Controls
Import.ImportFromFile(selectedNodeAsContainer);
}
+ private void OnImportRemoteDesktopManagerClicked(object sender, EventArgs e)
+ {
+ ContainerInfo selectedNodeAsContainer;
+ if (_connectionTree.SelectedNode == null)
+ selectedNodeAsContainer = Runtime.ConnectionsService.ConnectionTreeModel.RootNodes.First();
+ else
+ selectedNodeAsContainer =
+ _connectionTree.SelectedNode as ContainerInfo ?? _connectionTree.SelectedNode.Parent;
+ Import.ImportFromRemoteDesktopManagerCsv(selectedNodeAsContainer);
+ }
+
private void OnImportActiveDirectoryClicked(object sender, EventArgs e)
{
Windows.Show(WindowType.ActiveDirectoryImport);