From 699f40daf3497d5e58f1cfeebdff60fef64f238c Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Thu, 20 Sep 2018 18:39:47 +0200 Subject: [PATCH 1/9] Add icon to app list --- .../NETworkManager/ApplicationViewManager.cs | 25 +- Source/NETworkManager/MainWindow.xaml.cs | 22 +- .../Models/Settings/SettingsInfo.cs | 16 +- .../Models/Settings/SettingsManager.cs | 23 +- .../NETworkManager/Properties/AssemblyInfo.cs | 4 +- .../Localization/Strings.Designer.cs | 1259 +++++++++-------- .../Resources/Localization/Strings.resx | 3 + 7 files changed, 706 insertions(+), 646 deletions(-) diff --git a/Source/NETworkManager/ApplicationViewManager.cs b/Source/NETworkManager/ApplicationViewManager.cs index 47c106e06a..b5b42e188c 100644 --- a/Source/NETworkManager/ApplicationViewManager.cs +++ b/Source/NETworkManager/ApplicationViewManager.cs @@ -44,19 +44,21 @@ public static string GetTranslatedNameByName(Name name) case Name.SNMP: return Resources.Localization.Strings.SNMP; case Name.WakeOnLAN: - return Resources.Localization.Strings.WakeOnLAN; - case Name.HTTPHeaders: - return Resources.Localization.Strings.HTTPHeaders; + return Resources.Localization.Strings.WakeOnLAN; case Name.SubnetCalculator: return Resources.Localization.Strings.SubnetCalculator; case Name.Lookup: return Resources.Localization.Strings.Lookup; + case Name.Whois: + return Resources.Localization.Strings.Whois; + case Name.HTTPHeaders: + return Resources.Localization.Strings.HTTPHeaders; case Name.Connections: return Resources.Localization.Strings.Connections; case Name.Listeners: return Resources.Localization.Strings.Listeners; case Name.ARPTable: - return Resources.Localization.Strings.ARPTable; + return Resources.Localization.Strings.ARPTable; default: return "Name not found!"; } @@ -98,15 +100,19 @@ public static Canvas GetIconByName(Name name) case Name.WakeOnLAN: canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.Power }); break; - case Name.HTTPHeaders: - canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.Web }); - break; + case Name.SubnetCalculator: canvas.Children.Add(new PackIconModern { Kind = PackIconModernKind.Calculator }); break; case Name.Lookup: canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.Magnify }); break; + case Name.Whois: + canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.CloudSearchOutline }); + break; + case Name.HTTPHeaders: + canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.Web }); + break; case Name.Connections: canvas.Children.Add(new PackIconModern { Kind = PackIconModernKind.Connect }); break; @@ -136,10 +142,11 @@ public enum Name RemoteDesktop, PuTTY, SNMP, - WakeOnLAN, - HTTPHeaders, + WakeOnLAN, SubnetCalculator, Lookup, + Whois, + HTTPHeaders, Connections, Listeners, ARPTable diff --git a/Source/NETworkManager/MainWindow.xaml.cs b/Source/NETworkManager/MainWindow.xaml.cs index 4d59227031..0ccaabea36 100644 --- a/Source/NETworkManager/MainWindow.xaml.cs +++ b/Source/NETworkManager/MainWindow.xaml.cs @@ -248,6 +248,10 @@ public MainWindow() // Language Meta LanguageProperty.OverrideMetadata(typeof(FrameworkElement), new FrameworkPropertyMetadata(XmlLanguage.GetLanguage(LocalizationManager.Culture.IetfLanguageTag))); + // Update settings + if (AssemblyManager.Current.Version > new Version(SettingsManager.Current.SettingsVersion)) + SettingsManager.Update(AssemblyManager.Current.Version, new Version(SettingsManager.Current.SettingsVersion)); + // Load appearance AppearanceManager.Load(); @@ -306,7 +310,7 @@ protected override async void OnContentRendered(EventArgs e) if (CommandLineManager.Current.Autostart && SettingsManager.Current.Autostart_StartMinimizedInTray) HideWindowToTray(); - // Chech for updates... + // Search for updates... if (SettingsManager.Current.Update_CheckForUpdatesAtStartup) CheckForUpdates(); } @@ -495,13 +499,6 @@ private void ChangeApplicationView(ApplicationViewManager.Name name) ContentControlApplication.Content = _wakeOnLanView; break; - - case ApplicationViewManager.Name.HTTPHeaders: - if (_httpHeadersHostView == null) - _httpHeadersHostView = new HTTPHeadersHostView(); - - ContentControlApplication.Content = _httpHeadersHostView; - break; case ApplicationViewManager.Name.SubnetCalculator: if (_subnetCalculatorHostView == null) _subnetCalculatorHostView = new SubnetCalculatorHostView(); @@ -514,6 +511,15 @@ private void ChangeApplicationView(ApplicationViewManager.Name name) ContentControlApplication.Content = _lookupHostView; break; + case ApplicationViewManager.Name.Whois: + + break; + case ApplicationViewManager.Name.HTTPHeaders: + if (_httpHeadersHostView == null) + _httpHeadersHostView = new HTTPHeadersHostView(); + + ContentControlApplication.Content = _httpHeadersHostView; + break; case ApplicationViewManager.Name.Connections: if (_connectionsView == null) _connectionsView = new ConnectionsView(); diff --git a/Source/NETworkManager/Models/Settings/SettingsInfo.cs b/Source/NETworkManager/Models/Settings/SettingsInfo.cs index 9602405601..acb84d8a80 100644 --- a/Source/NETworkManager/Models/Settings/SettingsInfo.cs +++ b/Source/NETworkManager/Models/Settings/SettingsInfo.cs @@ -27,8 +27,22 @@ protected virtual void OnPropertyChanged([CallerMemberName] string propertyName #region Variables [XmlIgnore] public bool SettingsChanged { get; set; } - #region General + private string _settingsVersion = "1.7.2.0"; + public string SettingsVersion + { + get => _settingsVersion; + set + { + if(value == _settingsVersion) + return; + + _settingsVersion = value; + SettingsChanged = true; + } + } + + #region General // General private ApplicationViewManager.Name _general_DefaultApplicationViewName = ApplicationViewManager.Name.NetworkInterface; public ApplicationViewManager.Name General_DefaultApplicationViewName diff --git a/Source/NETworkManager/Models/Settings/SettingsManager.cs b/Source/NETworkManager/Models/Settings/SettingsManager.cs index 8753f65396..7978c1c37b 100644 --- a/Source/NETworkManager/Models/Settings/SettingsManager.cs +++ b/Source/NETworkManager/Models/Settings/SettingsManager.cs @@ -1,4 +1,6 @@ using System; +using System.Collections.ObjectModel; +using System.Diagnostics; using System.IO; using System.Linq; using System.Reflection; @@ -16,7 +18,7 @@ public static class SettingsManager private const string IsPortableExtension = "settings"; public static SettingsInfo Current { get; set; } - + public static bool ForceRestart { get; set; } public static bool HotKeysChanged { get; set; } @@ -199,5 +201,24 @@ public static void Reset() ForceRestart = true; } + + public static void Update(Version programmVersion, Version settingsVersion) + { + var reorderApplications = false; + // Features added in 1.7.3.0 + if (settingsVersion < new Version("1.7.3.0")) + { + Current.General_ApplicationList.Add(new ApplicationViewInfo(ApplicationViewManager.Name.Whois)); + + reorderApplications = true; + } + + // Reorder application view + if(reorderApplications) + Current.General_ApplicationList = new ObservableCollection(Current.General_ApplicationList.OrderBy(info => info.Name)); + + // Update settings version + Current.SettingsVersion = programmVersion.ToString(); + } } } \ No newline at end of file diff --git a/Source/NETworkManager/Properties/AssemblyInfo.cs b/Source/NETworkManager/Properties/AssemblyInfo.cs index 852deb2260..e396af08e1 100644 --- a/Source/NETworkManager/Properties/AssemblyInfo.cs +++ b/Source/NETworkManager/Properties/AssemblyInfo.cs @@ -49,6 +49,6 @@ // Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern // übernehmen, indem Sie "*" eingeben: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.7.2.0")] -[assembly: AssemblyFileVersion("1.7.2.0")] +[assembly: AssemblyVersion("1.7.3.0")] +[assembly: AssemblyFileVersion("1.7.3.0")] diff --git a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs index 1d15155534..ee2857034c 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs +++ b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace NETworkManager.Resources.Localization { /// - /// A strongly-typed resource class, for looking up localized strings, etc. + /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. + // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert + // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. + // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen + // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,7 +33,7 @@ internal Strings() { } /// - /// Returns the cached ResourceManager instance used by this class. + /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ internal Strings() { } /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. + /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,7 @@ internal Strings() { } /// - /// Looks up a localized string similar to About. + /// Sucht eine lokalisierte Zeichenfolge, die About ähnelt. /// public static string About { get { @@ -70,7 +70,7 @@ public static string About { } /// - /// Looks up a localized string similar to Accent. + /// Sucht eine lokalisierte Zeichenfolge, die Accent ähnelt. /// public static string Accent { get { @@ -79,7 +79,7 @@ public static string Accent { } /// - /// Looks up a localized string similar to add. + /// Sucht eine lokalisierte Zeichenfolge, die add ähnelt. /// public static string Add { get { @@ -88,7 +88,7 @@ public static string Add { } /// - /// Looks up a localized string similar to Add a tab to open a new connection.... + /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to open a new connection... ähnelt. /// public static string AddATabToOpenANewConnection { get { @@ -97,7 +97,7 @@ public static string AddATabToOpenANewConnection { } /// - /// Looks up a localized string similar to Add a tab to perform a DNS lookup.... + /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a DNS lookup... ähnelt. /// public static string AddATabToPerformADNSLookup { get { @@ -106,7 +106,7 @@ public static string AddATabToPerformADNSLookup { } /// - /// Looks up a localized string similar to Add a tab to perform a network scan.... + /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a network scan... ähnelt. /// public static string AddATabToPerformANetworkScan { get { @@ -115,7 +115,7 @@ public static string AddATabToPerformANetworkScan { } /// - /// Looks up a localized string similar to Add a tab to perform an SNMP action.... + /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform an SNMP action... ähnelt. /// public static string AddATabToPerformAnSNMPAction { get { @@ -124,7 +124,7 @@ public static string AddATabToPerformAnSNMPAction { } /// - /// Looks up a localized string similar to Add a tab to perform a ping.... + /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a ping... ähnelt. /// public static string AddATabToPerformAPing { get { @@ -133,7 +133,7 @@ public static string AddATabToPerformAPing { } /// - /// Looks up a localized string similar to Add a tab to perform a port scan.... + /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a port scan... ähnelt. /// public static string AddATabToPerformAPortScan { get { @@ -142,7 +142,7 @@ public static string AddATabToPerformAPortScan { } /// - /// Looks up a localized string similar to Add a tab to perform a trace.... + /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a trace... ähnelt. /// public static string AddATabToPerformATrace { get { @@ -151,7 +151,7 @@ public static string AddATabToPerformATrace { } /// - /// Looks up a localized string similar to Add a tab to query the HTTP headers.... + /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to query the HTTP headers... ähnelt. /// public static string AddATabToQueryTheHTTPHeaders { get { @@ -160,7 +160,7 @@ public static string AddATabToQueryTheHTTPHeaders { } /// - /// Looks up a localized string similar to Add credentials. + /// Sucht eine lokalisierte Zeichenfolge, die Add credentials ähnelt. /// public static string AddCredentials { get { @@ -169,7 +169,7 @@ public static string AddCredentials { } /// - /// Looks up a localized string similar to Add DNS suffix (primary) to hostname. + /// Sucht eine lokalisierte Zeichenfolge, die Add DNS suffix (primary) to hostname ähnelt. /// public static string AddDNSSuffixToHostname { get { @@ -178,7 +178,7 @@ public static string AddDNSSuffixToHostname { } /// - /// Looks up a localized string similar to Add.... + /// Sucht eine lokalisierte Zeichenfolge, die Add... ähnelt. /// public static string AddDots { get { @@ -187,7 +187,7 @@ public static string AddDots { } /// - /// Looks up a localized string similar to Add entry. + /// Sucht eine lokalisierte Zeichenfolge, die Add entry ähnelt. /// public static string AddEntry { get { @@ -196,7 +196,7 @@ public static string AddEntry { } /// - /// Looks up a localized string similar to Add entry.... + /// Sucht eine lokalisierte Zeichenfolge, die Add entry... ähnelt. /// public static string AddEntryDots { get { @@ -205,7 +205,7 @@ public static string AddEntryDots { } /// - /// Looks up a localized string similar to Additional command line. + /// Sucht eine lokalisierte Zeichenfolge, die Additional command line ähnelt. /// public static string AdditionalCommandLine { get { @@ -214,7 +214,7 @@ public static string AdditionalCommandLine { } /// - /// Looks up a localized string similar to Additionals. + /// Sucht eine lokalisierte Zeichenfolge, die Additionals ähnelt. /// public static string Additionals { get { @@ -223,7 +223,7 @@ public static string Additionals { } /// - /// Looks up a localized string similar to Add profile. + /// Sucht eine lokalisierte Zeichenfolge, die Add profile ähnelt. /// public static string AddProfile { get { @@ -232,7 +232,7 @@ public static string AddProfile { } /// - /// Looks up a localized string similar to Add profile.... + /// Sucht eine lokalisierte Zeichenfolge, die Add profile... ähnelt. /// public static string AddProfileDots { get { @@ -241,7 +241,7 @@ public static string AddProfileDots { } /// - /// Looks up a localized string similar to Adjust screen automatically. + /// Sucht eine lokalisierte Zeichenfolge, die Adjust screen automatically ähnelt. /// public static string AdjustScreenAutomatically { get { @@ -250,7 +250,7 @@ public static string AdjustScreenAutomatically { } /// - /// Looks up a localized string similar to Administrator. + /// Sucht eine lokalisierte Zeichenfolge, die Administrator ähnelt. /// public static string Administrator { get { @@ -259,7 +259,7 @@ public static string Administrator { } /// - /// Looks up a localized string similar to Always show icon in tray. + /// Sucht eine lokalisierte Zeichenfolge, die Always show icon in tray ähnelt. /// public static string AlwaysShowIconInTray { get { @@ -268,7 +268,7 @@ public static string AlwaysShowIconInTray { } /// - /// Looks up a localized string similar to Amber. + /// Sucht eine lokalisierte Zeichenfolge, die Amber ähnelt. /// public static string Amber { get { @@ -277,7 +277,7 @@ public static string Amber { } /// - /// Looks up a localized string similar to Answers. + /// Sucht eine lokalisierte Zeichenfolge, die Answers ähnelt. /// public static string Answers { get { @@ -286,7 +286,7 @@ public static string Answers { } /// - /// Looks up a localized string similar to Appearance. + /// Sucht eine lokalisierte Zeichenfolge, die Appearance ähnelt. /// public static string Appearance { get { @@ -295,7 +295,7 @@ public static string Appearance { } /// - /// Looks up a localized string similar to Application is restarted afterwards. + /// Sucht eine lokalisierte Zeichenfolge, die Application is restarted afterwards ähnelt. /// public static string ApplicationIsRestartedAfterwards { get { @@ -304,7 +304,7 @@ public static string ApplicationIsRestartedAfterwards { } /// - /// Looks up a localized string similar to Applications. + /// Sucht eine lokalisierte Zeichenfolge, die Applications ähnelt. /// public static string Applications { get { @@ -313,7 +313,7 @@ public static string Applications { } /// - /// Looks up a localized string similar to Apply. + /// Sucht eine lokalisierte Zeichenfolge, die Apply ähnelt. /// public static string Apply { get { @@ -322,7 +322,7 @@ public static string Apply { } /// - /// Looks up a localized string similar to Apply Windows key combinations (e.g. ALT+TAB):. + /// Sucht eine lokalisierte Zeichenfolge, die Apply Windows key combinations (e.g. ALT+TAB): ähnelt. /// public static string ApplyWindowsKeyCombinationsLikeAltTab { get { @@ -331,7 +331,7 @@ public static string ApplyWindowsKeyCombinationsLikeAltTab { } /// - /// Looks up a localized string similar to Are you sure?. + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure? ähnelt. /// public static string AreYouSure { get { @@ -340,7 +340,7 @@ public static string AreYouSure { } /// - /// Looks up a localized string similar to ARP. + /// Sucht eine lokalisierte Zeichenfolge, die ARP ähnelt. /// public static string ARP { get { @@ -349,7 +349,7 @@ public static string ARP { } /// - /// Looks up a localized string similar to ARP Table. + /// Sucht eine lokalisierte Zeichenfolge, die ARP Table ähnelt. /// public static string ARPTable { get { @@ -358,7 +358,7 @@ public static string ARPTable { } /// - /// Looks up a localized string similar to At least one application must be visible!. + /// Sucht eine lokalisierte Zeichenfolge, die At least one application must be visible! ähnelt. /// public static string AtLeastOneApplicationMustBeVisible { get { @@ -367,7 +367,7 @@ public static string AtLeastOneApplicationMustBeVisible { } /// - /// Looks up a localized string similar to Attempts. + /// Sucht eine lokalisierte Zeichenfolge, die Attempts ähnelt. /// public static string Attempts { get { @@ -376,7 +376,7 @@ public static string Attempts { } /// - /// Looks up a localized string similar to Auth. + /// Sucht eine lokalisierte Zeichenfolge, die Auth ähnelt. /// public static string Auth { get { @@ -385,7 +385,7 @@ public static string Auth { } /// - /// Looks up a localized string similar to Authentication. + /// Sucht eine lokalisierte Zeichenfolge, die Authentication ähnelt. /// public static string Authentication { get { @@ -394,7 +394,7 @@ public static string Authentication { } /// - /// Looks up a localized string similar to Authentication level. + /// Sucht eine lokalisierte Zeichenfolge, die Authentication level ähnelt. /// public static string AuthenticationLevel { get { @@ -403,7 +403,7 @@ public static string AuthenticationLevel { } /// - /// Looks up a localized string similar to Authorities. + /// Sucht eine lokalisierte Zeichenfolge, die Authorities ähnelt. /// public static string Authorities { get { @@ -412,7 +412,7 @@ public static string Authorities { } /// - /// Looks up a localized string similar to Automatically update every. + /// Sucht eine lokalisierte Zeichenfolge, die Automatically update every ähnelt. /// public static string AutomaticallyUpdateEvery { get { @@ -421,7 +421,7 @@ public static string AutomaticallyUpdateEvery { } /// - /// Looks up a localized string similar to Autostart. + /// Sucht eine lokalisierte Zeichenfolge, die Autostart ähnelt. /// public static string Autostart { get { @@ -430,7 +430,7 @@ public static string Autostart { } /// - /// Looks up a localized string similar to Average time. + /// Sucht eine lokalisierte Zeichenfolge, die Average time ähnelt. /// public static string AverageTime { get { @@ -439,7 +439,7 @@ public static string AverageTime { } /// - /// Looks up a localized string similar to back. + /// Sucht eine lokalisierte Zeichenfolge, die back ähnelt. /// public static string Back { get { @@ -448,7 +448,7 @@ public static string Back { } /// - /// Looks up a localized string similar to Backup. + /// Sucht eine lokalisierte Zeichenfolge, die Backup ähnelt. /// public static string Backup { get { @@ -457,7 +457,7 @@ public static string Backup { } /// - /// Looks up a localized string similar to Dark. + /// Sucht eine lokalisierte Zeichenfolge, die Dark ähnelt. /// public static string BaseDark { get { @@ -466,7 +466,7 @@ public static string BaseDark { } /// - /// Looks up a localized string similar to Light. + /// Sucht eine lokalisierte Zeichenfolge, die Light ähnelt. /// public static string BaseLight { get { @@ -475,7 +475,7 @@ public static string BaseLight { } /// - /// Looks up a localized string similar to Baud. + /// Sucht eine lokalisierte Zeichenfolge, die Baud ähnelt. /// public static string Baud { get { @@ -484,7 +484,7 @@ public static string Baud { } /// - /// Looks up a localized string similar to Black. + /// Sucht eine lokalisierte Zeichenfolge, die Black ähnelt. /// public static string Black { get { @@ -493,7 +493,7 @@ public static string Black { } /// - /// Looks up a localized string similar to Blue. + /// Sucht eine lokalisierte Zeichenfolge, die Blue ähnelt. /// public static string Blue { get { @@ -502,7 +502,7 @@ public static string Blue { } /// - /// Looks up a localized string similar to Broadcast. + /// Sucht eine lokalisierte Zeichenfolge, die Broadcast ähnelt. /// public static string Broadcast { get { @@ -511,7 +511,7 @@ public static string Broadcast { } /// - /// Looks up a localized string similar to Brown. + /// Sucht eine lokalisierte Zeichenfolge, die Brown ähnelt. /// public static string Brown { get { @@ -520,7 +520,7 @@ public static string Brown { } /// - /// Looks up a localized string similar to Buffer. + /// Sucht eine lokalisierte Zeichenfolge, die Buffer ähnelt. /// public static string Buffer { get { @@ -529,7 +529,7 @@ public static string Buffer { } /// - /// Looks up a localized string similar to Bytes. + /// Sucht eine lokalisierte Zeichenfolge, die Bytes ähnelt. /// public static string Bytes { get { @@ -538,7 +538,7 @@ public static string Bytes { } /// - /// Looks up a localized string similar to Calculate. + /// Sucht eine lokalisierte Zeichenfolge, die Calculate ähnelt. /// public static string Calculate { get { @@ -547,7 +547,7 @@ public static string Calculate { } /// - /// Looks up a localized string similar to Calculator. + /// Sucht eine lokalisierte Zeichenfolge, die Calculator ähnelt. /// public static string Calculator { get { @@ -556,7 +556,7 @@ public static string Calculator { } /// - /// Looks up a localized string similar to Cancel. + /// Sucht eine lokalisierte Zeichenfolge, die Cancel ähnelt. /// public static string Cancel { get { @@ -565,7 +565,7 @@ public static string Cancel { } /// - /// Looks up a localized string similar to The operation has been canceled by the user!. + /// Sucht eine lokalisierte Zeichenfolge, die The operation has been canceled by the user! ähnelt. /// public static string CanceledByUserMessage { get { @@ -574,7 +574,7 @@ public static string CanceledByUserMessage { } /// - /// Looks up a localized string similar to Caps lock is enabled!. + /// Sucht eine lokalisierte Zeichenfolge, die Caps lock is enabled! ähnelt. /// public static string CapsLockIsEnabled { get { @@ -583,7 +583,7 @@ public static string CapsLockIsEnabled { } /// - /// Looks up a localized string similar to Change. + /// Sucht eine lokalisierte Zeichenfolge, die Change ähnelt. /// public static string Change { get { @@ -592,7 +592,7 @@ public static string Change { } /// - /// Looks up a localized string similar to Change Master Password.... + /// Sucht eine lokalisierte Zeichenfolge, die Change Master Password... ähnelt. /// public static string ChangeMasterPasswordDots { get { @@ -601,7 +601,7 @@ public static string ChangeMasterPasswordDots { } /// - /// Looks up a localized string similar to Check. + /// Sucht eine lokalisierte Zeichenfolge, die Check ähnelt. /// public static string Check { get { @@ -610,7 +610,7 @@ public static string Check { } /// - /// Looks up a localized string similar to Check for updates. + /// Sucht eine lokalisierte Zeichenfolge, die Check for updates ähnelt. /// public static string CheckForUpdates { get { @@ -619,7 +619,7 @@ public static string CheckForUpdates { } /// - /// Looks up a localized string similar to Check for updates at startup. + /// Sucht eine lokalisierte Zeichenfolge, die Check for updates at startup ähnelt. /// public static string CheckForUpdatesAtStartup { get { @@ -628,7 +628,7 @@ public static string CheckForUpdatesAtStartup { } /// - /// Looks up a localized string similar to CIDR. + /// Sucht eine lokalisierte Zeichenfolge, die CIDR ähnelt. /// public static string CIDR { get { @@ -637,7 +637,7 @@ public static string CIDR { } /// - /// Looks up a localized string similar to Class. + /// Sucht eine lokalisierte Zeichenfolge, die Class ähnelt. /// public static string Class { get { @@ -646,7 +646,7 @@ public static string Class { } /// - /// Looks up a localized string similar to Clear filter. + /// Sucht eine lokalisierte Zeichenfolge, die Clear filter ähnelt. /// public static string ClearFilter { get { @@ -655,7 +655,7 @@ public static string ClearFilter { } /// - /// Looks up a localized string similar to Client. + /// Sucht eine lokalisierte Zeichenfolge, die Client ähnelt. /// public static string Client { get { @@ -664,7 +664,7 @@ public static string Client { } /// - /// Looks up a localized string similar to Close. + /// Sucht eine lokalisierte Zeichenfolge, die Close ähnelt. /// public static string Close { get { @@ -673,7 +673,7 @@ public static string Close { } /// - /// Looks up a localized string similar to Closed. + /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. /// public static string Closed { get { @@ -682,7 +682,7 @@ public static string Closed { } /// - /// Looks up a localized string similar to Cobalt. + /// Sucht eine lokalisierte Zeichenfolge, die Cobalt ähnelt. /// public static string Cobalt { get { @@ -691,7 +691,7 @@ public static string Cobalt { } /// - /// Looks up a localized string similar to Color depth (bit). + /// Sucht eine lokalisierte Zeichenfolge, die Color depth (bit) ähnelt. /// public static string ColorDepthBit { get { @@ -700,7 +700,7 @@ public static string ColorDepthBit { } /// - /// Looks up a localized string similar to Command Line Arguments. + /// Sucht eine lokalisierte Zeichenfolge, die Command Line Arguments ähnelt. /// public static string CommandLineArguments { get { @@ -709,7 +709,7 @@ public static string CommandLineArguments { } /// - /// Looks up a localized string similar to Community. + /// Sucht eine lokalisierte Zeichenfolge, die Community ähnelt. /// public static string Community { get { @@ -718,7 +718,7 @@ public static string Community { } /// - /// Looks up a localized string similar to Configure. + /// Sucht eine lokalisierte Zeichenfolge, die Configure ähnelt. /// public static string Configure { get { @@ -727,7 +727,7 @@ public static string Configure { } /// - /// Looks up a localized string similar to Configure PuTTY. + /// Sucht eine lokalisierte Zeichenfolge, die Configure PuTTY ähnelt. /// public static string ConfigurePuTTY { get { @@ -736,7 +736,7 @@ public static string ConfigurePuTTY { } /// - /// Looks up a localized string similar to Configure the path to PuTTY in the settings.... + /// Sucht eine lokalisierte Zeichenfolge, die Configure the path to PuTTY in the settings... ähnelt. /// public static string ConfigureThePathToPuTTYInTheSettingsDots { get { @@ -745,7 +745,7 @@ public static string ConfigureThePathToPuTTYInTheSettingsDots { } /// - /// Looks up a localized string similar to Confirm. + /// Sucht eine lokalisierte Zeichenfolge, die Confirm ähnelt. /// public static string Confirm { get { @@ -754,7 +754,7 @@ public static string Confirm { } /// - /// Looks up a localized string similar to Confirm close. + /// Sucht eine lokalisierte Zeichenfolge, die Confirm close ähnelt. /// public static string ConfirmClose { get { @@ -763,7 +763,7 @@ public static string ConfirmClose { } /// - /// Looks up a localized string similar to Are you sure you want to close the application?. + /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to close the application? ähnelt. /// public static string ConfirmCloseMessage { get { @@ -772,7 +772,7 @@ public static string ConfirmCloseMessage { } /// - /// Looks up a localized string similar to Connect. + /// Sucht eine lokalisierte Zeichenfolge, die Connect ähnelt. /// public static string Connect { get { @@ -781,7 +781,7 @@ public static string Connect { } /// - /// Looks up a localized string similar to Connect as. + /// Sucht eine lokalisierte Zeichenfolge, die Connect as ähnelt. /// public static string ConnectAs { get { @@ -790,7 +790,7 @@ public static string ConnectAs { } /// - /// Looks up a localized string similar to Connect as.... + /// Sucht eine lokalisierte Zeichenfolge, die Connect as... ähnelt. /// public static string ConnectAsDots { get { @@ -799,7 +799,7 @@ public static string ConnectAsDots { } /// - /// Looks up a localized string similar to Connect external. + /// Sucht eine lokalisierte Zeichenfolge, die Connect external ähnelt. /// public static string ConnectExternal { get { @@ -808,7 +808,7 @@ public static string ConnectExternal { } /// - /// Looks up a localized string similar to Connections. + /// Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt. /// public static string Connections { get { @@ -817,7 +817,7 @@ public static string Connections { } /// - /// Looks up a localized string similar to Connect the network card to a network to configure it!. + /// Sucht eine lokalisierte Zeichenfolge, die Connect the network card to a network to configure it! ähnelt. /// public static string ConnectTheNetworkCardToConfigureIt { get { @@ -826,7 +826,7 @@ public static string ConnectTheNetworkCardToConfigureIt { } /// - /// Looks up a localized string similar to Continue. + /// Sucht eine lokalisierte Zeichenfolge, die Continue ähnelt. /// public static string Continue { get { @@ -835,7 +835,7 @@ public static string Continue { } /// - /// Looks up a localized string similar to Copy. + /// Sucht eine lokalisierte Zeichenfolge, die Copy ähnelt. /// public static string Copy { get { @@ -844,7 +844,7 @@ public static string Copy { } /// - /// Looks up a localized string similar to Copy as.... + /// Sucht eine lokalisierte Zeichenfolge, die Copy as... ähnelt. /// public static string CopyAsDots { get { @@ -853,7 +853,7 @@ public static string CopyAsDots { } /// - /// Looks up a localized string similar to Copy.... + /// Sucht eine lokalisierte Zeichenfolge, die Copy... ähnelt. /// public static string CopyDots { get { @@ -862,7 +862,7 @@ public static string CopyDots { } /// - /// Looks up a localized string similar to Copy profile. + /// Sucht eine lokalisierte Zeichenfolge, die Copy profile ähnelt. /// public static string CopyProfile { get { @@ -871,7 +871,7 @@ public static string CopyProfile { } /// - /// Looks up a localized string similar to Could not resolve hostname for: "{0}". + /// Sucht eine lokalisierte Zeichenfolge, die Could not resolve hostname for: "{0}" ähnelt. /// public static string CouldNotResolveHostnameFor { get { @@ -880,7 +880,7 @@ public static string CouldNotResolveHostnameFor { } /// - /// Looks up a localized string similar to Credential. + /// Sucht eine lokalisierte Zeichenfolge, die Credential ähnelt. /// public static string Credential { get { @@ -889,7 +889,7 @@ public static string Credential { } /// - /// Looks up a localized string similar to Credential not found!. + /// Sucht eine lokalisierte Zeichenfolge, die Credential not found! ähnelt. /// public static string CredentialNotFound { get { @@ -898,7 +898,7 @@ public static string CredentialNotFound { } /// - /// Looks up a localized string similar to Edit the Profile and select a different credential or delete the existing one. + /// Sucht eine lokalisierte Zeichenfolge, die Edit the Profile and select a different credential or delete the existing one ähnelt. /// public static string CredentialNotFoundMessage { get { @@ -907,7 +907,7 @@ public static string CredentialNotFoundMessage { } /// - /// Looks up a localized string similar to Credentials. + /// Sucht eine lokalisierte Zeichenfolge, die Credentials ähnelt. /// public static string Credentials { get { @@ -916,7 +916,7 @@ public static string Credentials { } /// - /// Looks up a localized string similar to The credentials are stored encrypted with AES-256 (Rijndael) in a file. The key for the encryption results from a master password (Rfc2898DeriveBytes). The application uses a SecureString for passwords. For some functions, passwords must be converted from a SecureString to plain text, or vice versa.. + /// Sucht eine lokalisierte Zeichenfolge, die The credentials are stored encrypted with AES-256 (Rijndael) in a file. The key for the encryption results from a master password (Rfc2898DeriveBytes). The application uses a SecureString for passwords. For some functions, passwords must be converted from a SecureString to plain text, or vice versa. ähnelt. /// public static string CredentialsEncryptionDisclaimer { get { @@ -925,7 +925,7 @@ public static string CredentialsEncryptionDisclaimer { } /// - /// Looks up a localized string similar to A Credential with this name already exists!. + /// Sucht eine lokalisierte Zeichenfolge, die A Credential with this name already exists! ähnelt. /// public static string CredentialWithThisNameAlreadyExists { get { @@ -934,7 +934,7 @@ public static string CredentialWithThisNameAlreadyExists { } /// - /// Looks up a localized string similar to Crimson. + /// Sucht eine lokalisierte Zeichenfolge, die Crimson ähnelt. /// public static string Crimson { get { @@ -943,7 +943,7 @@ public static string Crimson { } /// - /// Looks up a localized string similar to Custom. + /// Sucht eine lokalisierte Zeichenfolge, die Custom ähnelt. /// public static string Custom { get { @@ -952,7 +952,7 @@ public static string Custom { } /// - /// Looks up a localized string similar to Custom:. + /// Sucht eine lokalisierte Zeichenfolge, die Custom: ähnelt. /// public static string CustomColon { get { @@ -961,7 +961,7 @@ public static string CustomColon { } /// - /// Looks up a localized string similar to Custom screen size:. + /// Sucht eine lokalisierte Zeichenfolge, die Custom screen size: ähnelt. /// public static string CustomScreenSize { get { @@ -970,7 +970,7 @@ public static string CustomScreenSize { } /// - /// Looks up a localized string similar to Cut. + /// Sucht eine lokalisierte Zeichenfolge, die Cut ähnelt. /// public static string Cut { get { @@ -979,7 +979,7 @@ public static string Cut { } /// - /// Looks up a localized string similar to Cyan. + /// Sucht eine lokalisierte Zeichenfolge, die Cyan ähnelt. /// public static string Cyan { get { @@ -988,7 +988,7 @@ public static string Cyan { } /// - /// Looks up a localized string similar to Data. + /// Sucht eine lokalisierte Zeichenfolge, die Data ähnelt. /// public static string Data { get { @@ -997,7 +997,7 @@ public static string Data { } /// - /// Looks up a localized string similar to Data has been updated!. + /// Sucht eine lokalisierte Zeichenfolge, die Data has been updated! ähnelt. /// public static string DataHasBeenUpdated { get { @@ -1006,7 +1006,7 @@ public static string DataHasBeenUpdated { } /// - /// Looks up a localized string similar to Credentials must be decrypted and loaded to manage them.. + /// Sucht eine lokalisierte Zeichenfolge, die Credentials must be decrypted and loaded to manage them. ähnelt. /// public static string DecryptAndLoadCredentialsMessage { get { @@ -1015,7 +1015,7 @@ public static string DecryptAndLoadCredentialsMessage { } /// - /// Looks up a localized string similar to Decrypt and load.... + /// Sucht eine lokalisierte Zeichenfolge, die Decrypt and load... ähnelt. /// public static string DecryptAndLoadDots { get { @@ -1024,7 +1024,7 @@ public static string DecryptAndLoadDots { } /// - /// Looks up a localized string similar to Default. + /// Sucht eine lokalisierte Zeichenfolge, die Default ähnelt. /// public static string Default { get { @@ -1033,7 +1033,7 @@ public static string Default { } /// - /// Looks up a localized string similar to Default application. + /// Sucht eine lokalisierte Zeichenfolge, die Default application ähnelt. /// public static string DefaultApplication { get { @@ -1042,7 +1042,7 @@ public static string DefaultApplication { } /// - /// Looks up a localized string similar to Default baud rate. + /// Sucht eine lokalisierte Zeichenfolge, die Default baud rate ähnelt. /// public static string DefaultBaudRate { get { @@ -1051,7 +1051,7 @@ public static string DefaultBaudRate { } /// - /// Looks up a localized string similar to Default-Gateway. + /// Sucht eine lokalisierte Zeichenfolge, die Default-Gateway ähnelt. /// public static string DefaultGateway { get { @@ -1060,7 +1060,7 @@ public static string DefaultGateway { } /// - /// Looks up a localized string similar to Default port:. + /// Sucht eine lokalisierte Zeichenfolge, die Default port: ähnelt. /// public static string DefaultPort { get { @@ -1069,7 +1069,7 @@ public static string DefaultPort { } /// - /// Looks up a localized string similar to Default Rlogin port. + /// Sucht eine lokalisierte Zeichenfolge, die Default Rlogin port ähnelt. /// public static string DefaultRloginPort { get { @@ -1078,7 +1078,7 @@ public static string DefaultRloginPort { } /// - /// Looks up a localized string similar to Default SSH port. + /// Sucht eine lokalisierte Zeichenfolge, die Default SSH port ähnelt. /// public static string DefaultSSHPort { get { @@ -1087,7 +1087,7 @@ public static string DefaultSSHPort { } /// - /// Looks up a localized string similar to Default Telnet port. + /// Sucht eine lokalisierte Zeichenfolge, die Default Telnet port ähnelt. /// public static string DefaultTelnetPort { get { @@ -1096,7 +1096,7 @@ public static string DefaultTelnetPort { } /// - /// Looks up a localized string similar to Delete. + /// Sucht eine lokalisierte Zeichenfolge, die Delete ähnelt. /// public static string Delete { get { @@ -1105,7 +1105,7 @@ public static string Delete { } /// - /// Looks up a localized string similar to The selected credential will be deleted permanently.. + /// Sucht eine lokalisierte Zeichenfolge, die The selected credential will be deleted permanently. ähnelt. /// public static string DeleteCredentialMessage { get { @@ -1114,7 +1114,7 @@ public static string DeleteCredentialMessage { } /// - /// Looks up a localized string similar to Delete credentials. + /// Sucht eine lokalisierte Zeichenfolge, die Delete credentials ähnelt. /// public static string DeleteCredentials { get { @@ -1123,7 +1123,7 @@ public static string DeleteCredentials { } /// - /// Looks up a localized string similar to Delete.... + /// Sucht eine lokalisierte Zeichenfolge, die Delete... ähnelt. /// public static string DeleteDots { get { @@ -1132,7 +1132,7 @@ public static string DeleteDots { } /// - /// Looks up a localized string similar to Delete entry. + /// Sucht eine lokalisierte Zeichenfolge, die Delete entry ähnelt. /// public static string DeleteEntry { get { @@ -1141,7 +1141,7 @@ public static string DeleteEntry { } /// - /// Looks up a localized string similar to Delete profile. + /// Sucht eine lokalisierte Zeichenfolge, die Delete profile ähnelt. /// public static string DeleteProfile { get { @@ -1150,7 +1150,7 @@ public static string DeleteProfile { } /// - /// Looks up a localized string similar to Selected profiles will be deleted permanently.. + /// Sucht eine lokalisierte Zeichenfolge, die Selected profiles will be deleted permanently. ähnelt. /// public static string DeleteProfileMessage { get { @@ -1159,7 +1159,7 @@ public static string DeleteProfileMessage { } /// - /// Looks up a localized string similar to Delete table. + /// Sucht eine lokalisierte Zeichenfolge, die Delete table ähnelt. /// public static string DeleteTable { get { @@ -1168,7 +1168,7 @@ public static string DeleteTable { } /// - /// Looks up a localized string similar to Description. + /// Sucht eine lokalisierte Zeichenfolge, die Description ähnelt. /// public static string Description { get { @@ -1177,7 +1177,7 @@ public static string Description { } /// - /// Looks up a localized string similar to Destination. + /// Sucht eine lokalisierte Zeichenfolge, die Destination ähnelt. /// public static string Destination { get { @@ -1186,7 +1186,7 @@ public static string Destination { } /// - /// Looks up a localized string similar to Details. + /// Sucht eine lokalisierte Zeichenfolge, die Details ähnelt. /// public static string Details { get { @@ -1195,7 +1195,7 @@ public static string Details { } /// - /// Looks up a localized string similar to DHCP enabled. + /// Sucht eine lokalisierte Zeichenfolge, die DHCP enabled ähnelt. /// public static string DHCPEnabled { get { @@ -1204,7 +1204,7 @@ public static string DHCPEnabled { } /// - /// Looks up a localized string similar to DHCP lease expires. + /// Sucht eine lokalisierte Zeichenfolge, die DHCP lease expires ähnelt. /// public static string DHCPLeaseExpires { get { @@ -1213,7 +1213,7 @@ public static string DHCPLeaseExpires { } /// - /// Looks up a localized string similar to DHCP lease obtained. + /// Sucht eine lokalisierte Zeichenfolge, die DHCP lease obtained ähnelt. /// public static string DHCPLeaseObtained { get { @@ -1222,7 +1222,7 @@ public static string DHCPLeaseObtained { } /// - /// Looks up a localized string similar to DHCP server. + /// Sucht eine lokalisierte Zeichenfolge, die DHCP server ähnelt. /// public static string DHCPServer { get { @@ -1231,7 +1231,7 @@ public static string DHCPServer { } /// - /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PuTTY.. + /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PuTTY. ähnelt. /// public static string DisableTransparencyInTheSettingsToUsePuTTY { get { @@ -1240,7 +1240,7 @@ public static string DisableTransparencyInTheSettingsToUsePuTTY { } /// - /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use Remote Desktop.. + /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use Remote Desktop. ähnelt. /// public static string DisableTransparencyInTheSettingsToUseRemoteDesktop { get { @@ -1249,7 +1249,7 @@ public static string DisableTransparencyInTheSettingsToUseRemoteDesktop { } /// - /// Looks up a localized string similar to Disconnected. + /// Sucht eine lokalisierte Zeichenfolge, die Disconnected ähnelt. /// public static string Disconnected { get { @@ -1258,7 +1258,7 @@ public static string Disconnected { } /// - /// Looks up a localized string similar to Display. + /// Sucht eine lokalisierte Zeichenfolge, die Display ähnelt. /// public static string Display { get { @@ -1267,7 +1267,7 @@ public static string Display { } /// - /// Looks up a localized string similar to DNS. + /// Sucht eine lokalisierte Zeichenfolge, die DNS ähnelt. /// public static string DNS { get { @@ -1276,7 +1276,7 @@ public static string DNS { } /// - /// Looks up a localized string similar to DNS autconfiguration. + /// Sucht eine lokalisierte Zeichenfolge, die DNS autconfiguration ähnelt. /// public static string DNSAutoconfiguration { get { @@ -1285,7 +1285,7 @@ public static string DNSAutoconfiguration { } /// - /// Looks up a localized string similar to DNS Lookup. + /// Sucht eine lokalisierte Zeichenfolge, die DNS Lookup ähnelt. /// public static string DNSLookup { get { @@ -1294,7 +1294,7 @@ public static string DNSLookup { } /// - /// Looks up a localized string similar to DNS Lookup.... + /// Sucht eine lokalisierte Zeichenfolge, die DNS Lookup... ähnelt. /// public static string DNSLookupDots { get { @@ -1303,7 +1303,7 @@ public static string DNSLookupDots { } /// - /// Looks up a localized string similar to DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die DNS server ähnelt. /// public static string DNSServer { get { @@ -1312,7 +1312,7 @@ public static string DNSServer { } /// - /// Looks up a localized string similar to DNS server(s). + /// Sucht eine lokalisierte Zeichenfolge, die DNS server(s) ähnelt. /// public static string DNSServers { get { @@ -1321,7 +1321,7 @@ public static string DNSServers { } /// - /// Looks up a localized string similar to DNS suffix. + /// Sucht eine lokalisierte Zeichenfolge, die DNS suffix ähnelt. /// public static string DNSSuffix { get { @@ -1330,7 +1330,7 @@ public static string DNSSuffix { } /// - /// Looks up a localized string similar to Documentation. + /// Sucht eine lokalisierte Zeichenfolge, die Documentation ähnelt. /// public static string Documentation { get { @@ -1339,7 +1339,7 @@ public static string Documentation { } /// - /// Looks up a localized string similar to How to install RDP 8.1 on Windows 7/Server 2008 R2. + /// Sucht eine lokalisierte Zeichenfolge, die How to install RDP 8.1 on Windows 7/Server 2008 R2 ähnelt. /// public static string DocumentationTitle_00001 { get { @@ -1348,7 +1348,7 @@ public static string DocumentationTitle_00001 { } /// - /// Looks up a localized string similar to How to create a custom theme and accent?. + /// Sucht eine lokalisierte Zeichenfolge, die How to create a custom theme and accent? ähnelt. /// public static string DocumentationTitle_00002 { get { @@ -1357,7 +1357,7 @@ public static string DocumentationTitle_00002 { } /// - /// Looks up a localized string similar to Domain. + /// Sucht eine lokalisierte Zeichenfolge, die Domain ähnelt. /// public static string Domain { get { @@ -1366,7 +1366,7 @@ public static string Domain { } /// - /// Looks up a localized string similar to Don't fragment. + /// Sucht eine lokalisierte Zeichenfolge, die Don't fragment ähnelt. /// public static string DontFragment { get { @@ -1375,7 +1375,7 @@ public static string DontFragment { } /// - /// Looks up a localized string similar to Duration. + /// Sucht eine lokalisierte Zeichenfolge, die Duration ähnelt. /// public static string Duration { get { @@ -1384,7 +1384,7 @@ public static string Duration { } /// - /// Looks up a localized string similar to Dynamic IPv4 address. + /// Sucht eine lokalisierte Zeichenfolge, die Dynamic IPv4 address ähnelt. /// public static string DynamicIPv4Address { get { @@ -1393,7 +1393,7 @@ public static string DynamicIPv4Address { } /// - /// Looks up a localized string similar to Dynamic IPv4 DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die Dynamic IPv4 DNS server ähnelt. /// public static string DynamicIPv4DNSServer { get { @@ -1402,7 +1402,7 @@ public static string DynamicIPv4DNSServer { } /// - /// Looks up a localized string similar to Edit credentials. + /// Sucht eine lokalisierte Zeichenfolge, die Edit credentials ähnelt. /// public static string EditCredentials { get { @@ -1411,7 +1411,7 @@ public static string EditCredentials { } /// - /// Looks up a localized string similar to Edit.... + /// Sucht eine lokalisierte Zeichenfolge, die Edit... ähnelt. /// public static string EditDots { get { @@ -1420,7 +1420,7 @@ public static string EditDots { } /// - /// Looks up a localized string similar to Edit group. + /// Sucht eine lokalisierte Zeichenfolge, die Edit group ähnelt. /// public static string EditGroup { get { @@ -1429,7 +1429,7 @@ public static string EditGroup { } /// - /// Looks up a localized string similar to Edit profile. + /// Sucht eine lokalisierte Zeichenfolge, die Edit profile ähnelt. /// public static string EditProfile { get { @@ -1438,7 +1438,7 @@ public static string EditProfile { } /// - /// Looks up a localized string similar to Emerald. + /// Sucht eine lokalisierte Zeichenfolge, die Emerald ähnelt. /// public static string Emerald { get { @@ -1447,7 +1447,7 @@ public static string Emerald { } /// - /// Looks up a localized string similar to Enable. + /// Sucht eine lokalisierte Zeichenfolge, die Enable ähnelt. /// public static string Enable { get { @@ -1456,7 +1456,7 @@ public static string Enable { } /// - /// Looks up a localized string similar to Enable Credential Security Support Provider. + /// Sucht eine lokalisierte Zeichenfolge, die Enable Credential Security Support Provider ähnelt. /// public static string EnableCredentialSecuritySupportProvider { get { @@ -1465,7 +1465,7 @@ public static string EnableCredentialSecuritySupportProvider { } /// - /// Looks up a localized string similar to Enable the profile in at least one tool! Click on a tab and select "Enable".... + /// Sucht eine lokalisierte Zeichenfolge, die Enable the profile in at least one tool! Click on a tab and select "Enable"... ähnelt. /// public static string EnableTheProfileInAtLeastOneTool { get { @@ -1474,7 +1474,7 @@ public static string EnableTheProfileInAtLeastOneTool { } /// - /// Looks up a localized string similar to Enable transparency. + /// Sucht eine lokalisierte Zeichenfolge, die Enable transparency ähnelt. /// public static string EnableTransparency { get { @@ -1483,7 +1483,7 @@ public static string EnableTransparency { } /// - /// Looks up a localized string similar to End time. + /// Sucht eine lokalisierte Zeichenfolge, die End time ähnelt. /// public static string EndTime { get { @@ -1492,7 +1492,7 @@ public static string EndTime { } /// - /// Looks up a localized string similar to Enter a subnet to calculate it.... + /// Sucht eine lokalisierte Zeichenfolge, die Enter a subnet to calculate it... ähnelt. /// public static string EnterASubnetToCalculateIt { get { @@ -1501,7 +1501,7 @@ public static string EnterASubnetToCalculateIt { } /// - /// Looks up a localized string similar to Enter location.... + /// Sucht eine lokalisierte Zeichenfolge, die Enter location... ähnelt. /// public static string EnterLocationDots { get { @@ -1510,7 +1510,7 @@ public static string EnterLocationDots { } /// - /// Looks up a localized string similar to Enter one or more valid IP addresses!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter one or more valid IP addresses! ähnelt. /// public static string EnterOneOrMoreValidIPAddresses { get { @@ -1519,7 +1519,7 @@ public static string EnterOneOrMoreValidIPAddresses { } /// - /// Looks up a localized string similar to Enter subnet and a new subnet mask to create subnets.... + /// Sucht eine lokalisierte Zeichenfolge, die Enter subnet and a new subnet mask to create subnets... ähnelt. /// public static string EnterSubnetAndANewSubnetmaskToCreateSubnets { get { @@ -1528,7 +1528,7 @@ public static string EnterSubnetAndANewSubnetmaskToCreateSubnets { } /// - /// Looks up a localized string similar to Enter subnets to create a supernet.... + /// Sucht eine lokalisierte Zeichenfolge, die Enter subnets to create a supernet... ähnelt. /// public static string EnterSubnetsToCreateASupernet { get { @@ -1537,7 +1537,7 @@ public static string EnterSubnetsToCreateASupernet { } /// - /// Looks up a localized string similar to Enter a valid baud!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid baud! ähnelt. /// public static string EnterValidBaud { get { @@ -1546,7 +1546,7 @@ public static string EnterValidBaud { } /// - /// Looks up a localized string similar to Enter valid hosts (multiple hosts can not end with ";")!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter valid hosts (multiple hosts can not end with ";")! ähnelt. /// public static string EnterValidHosts { get { @@ -1555,7 +1555,7 @@ public static string EnterValidHosts { } /// - /// Looks up a localized string similar to Enter a valid IP address!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid IP address! ähnelt. /// public static string EnterValidIPAddress { get { @@ -1564,7 +1564,7 @@ public static string EnterValidIPAddress { } /// - /// Looks up a localized string similar to Enter a valid ip range!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid ip range! ähnelt. /// public static string EnterValidIPScanRange { get { @@ -1573,7 +1573,7 @@ public static string EnterValidIPScanRange { } /// - /// Looks up a localized string similar to Enter a valid IPv4 address!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid IPv4 address! ähnelt. /// public static string EnterValidIPv4Address { get { @@ -1582,7 +1582,7 @@ public static string EnterValidIPv4Address { } /// - /// Looks up a localized string similar to Enter a valid MAC address (like 00:F1:23:AB:F2:35)!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid MAC address (like 00:F1:23:AB:F2:35)! ähnelt. /// public static string EnterValidMACAddress { get { @@ -1591,7 +1591,7 @@ public static string EnterValidMACAddress { } /// - /// Looks up a localized string similar to Enter a valid number!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid number! ähnelt. /// public static string EnterValidNumber { get { @@ -1600,7 +1600,7 @@ public static string EnterValidNumber { } /// - /// Looks up a localized string similar to Enter a valid OID!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid OID! ähnelt. /// public static string EnterValidOID { get { @@ -1609,7 +1609,7 @@ public static string EnterValidOID { } /// - /// Looks up a localized string similar to Enter a valid port (1 - 65535)!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid port (1 - 65535)! ähnelt. /// public static string EnterValidPort { get { @@ -1618,7 +1618,7 @@ public static string EnterValidPort { } /// - /// Looks up a localized string similar to Enter a valid port and/or port range (1 - 65535)!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid port and/or port range (1 - 65535)! ähnelt. /// public static string EnterValidPortOrPortRange { get { @@ -1627,7 +1627,7 @@ public static string EnterValidPortOrPortRange { } /// - /// Looks up a localized string similar to Enter a valid subnet (like 192.168.178.133/26)!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid subnet (like 192.168.178.133/26)! ähnelt. /// public static string EnterValidSubnet { get { @@ -1636,7 +1636,7 @@ public static string EnterValidSubnet { } /// - /// Looks up a localized string similar to Enter a valid subnetmask (like 255.255.255.0)!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid subnetmask (like 255.255.255.0)! ähnelt. /// public static string EnterValidSubnetmask { get { @@ -1645,7 +1645,7 @@ public static string EnterValidSubnetmask { } /// - /// Looks up a localized string similar to Enter a valid subnetmask or CIDR (like 255.255.255.0 or /24)!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid subnetmask or CIDR (like 255.255.255.0 or /24)! ähnelt. /// public static string EnterValidSubnetmaskOrCIDR { get { @@ -1654,7 +1654,7 @@ public static string EnterValidSubnetmaskOrCIDR { } /// - /// Looks up a localized string similar to Enter a valid value between 25 and 100!. + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid value between 25 and 100! ähnelt. /// public static string EnterValidValueBetween25and100 { get { @@ -1663,7 +1663,7 @@ public static string EnterValidValueBetween25and100 { } /// - /// Looks up a localized string similar to Enter a valid website (like https://example.com/index.html). + /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid website (like https://example.com/index.html) ähnelt. /// public static string EnterValidWebsiteUri { get { @@ -1672,7 +1672,7 @@ public static string EnterValidWebsiteUri { } /// - /// Looks up a localized string similar to Error. + /// Sucht eine lokalisierte Zeichenfolge, die Error ähnelt. /// public static string Error { get { @@ -1681,7 +1681,7 @@ public static string Error { } /// - /// Looks up a localized string similar to Error checking 'api.github.com', check your network connection!. + /// Sucht eine lokalisierte Zeichenfolge, die Error checking 'api.github.com', check your network connection! ähnelt. /// public static string ErrorCheckingApiGithubComVerifyYourNetworkConnection { get { @@ -1690,7 +1690,7 @@ public static string ErrorCheckingApiGithubComVerifyYourNetworkConnection { } /// - /// Looks up a localized string similar to Error in response!. + /// Sucht eine lokalisierte Zeichenfolge, die Error in response! ähnelt. /// public static string ErrorInResponse { get { @@ -1699,7 +1699,7 @@ public static string ErrorInResponse { } /// - /// Looks up a localized string similar to Error in response! Check if you have write permissions.. + /// Sucht eine lokalisierte Zeichenfolge, die Error in response! Check if you have write permissions. ähnelt. /// public static string ErrorInResponseCheckIfYouHaveWritePermissions { get { @@ -1708,7 +1708,7 @@ public static string ErrorInResponseCheckIfYouHaveWritePermissions { } /// - /// Looks up a localized string similar to Everything. + /// Sucht eine lokalisierte Zeichenfolge, die Everything ähnelt. /// public static string Everything { get { @@ -1717,7 +1717,7 @@ public static string Everything { } /// - /// Looks up a localized string similar to 9600. + /// Sucht eine lokalisierte Zeichenfolge, die 9600 ähnelt. /// public static string ExampleBaud9600 { get { @@ -1726,7 +1726,7 @@ public static string ExampleBaud9600 { } /// - /// Looks up a localized string similar to Windows-Testuser. + /// Sucht eine lokalisierte Zeichenfolge, die Windows-Testuser ähnelt. /// public static string ExampleCredentialName { get { @@ -1735,7 +1735,7 @@ public static string ExampleCredentialName { } /// - /// Looks up a localized string similar to Servers. + /// Sucht eine lokalisierte Zeichenfolge, die Servers ähnelt. /// public static string ExampleGroupServers { get { @@ -1744,7 +1744,7 @@ public static string ExampleGroupServers { } /// - /// Looks up a localized string similar to Switche. + /// Sucht eine lokalisierte Zeichenfolge, die Switche ähnelt. /// public static string ExampleGroupSwitche { get { @@ -1753,7 +1753,7 @@ public static string ExampleGroupSwitche { } /// - /// Looks up a localized string similar to SERVER-01. + /// Sucht eine lokalisierte Zeichenfolge, die SERVER-01 ähnelt. /// public static string ExampleHostname { get { @@ -1762,7 +1762,7 @@ public static string ExampleHostname { } /// - /// Looks up a localized string similar to 192.168.178.1; fritz.box. + /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.1; fritz.box ähnelt. /// public static string ExampleHostnameAndOrIPAddress { get { @@ -1771,7 +1771,7 @@ public static string ExampleHostnameAndOrIPAddress { } /// - /// Looks up a localized string similar to SERVER-01 or 172.16.0.100. + /// Sucht eine lokalisierte Zeichenfolge, die SERVER-01 or 172.16.0.100 ähnelt. /// public static string ExampleHostnameOrIPAddress { get { @@ -1780,7 +1780,7 @@ public static string ExampleHostnameOrIPAddress { } /// - /// Looks up a localized string similar to 192.168.1.0/24; 192.168.178.1 - 192.168.178.128; 192.168.[178-179].[1,100,150-200]; 192.168.178.150; server-01/24. + /// Sucht eine lokalisierte Zeichenfolge, die 192.168.1.0/24; 192.168.178.1 - 192.168.178.128; 192.168.[178-179].[1,100,150-200]; 192.168.178.150; server-01/24 ähnelt. /// public static string ExampleIPScanRange { get { @@ -1789,7 +1789,7 @@ public static string ExampleIPScanRange { } /// - /// Looks up a localized string similar to 192.168.178.55. + /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.55 ähnelt. /// public static string ExampleIPv4Address { get { @@ -1798,7 +1798,7 @@ public static string ExampleIPv4Address { } /// - /// Looks up a localized string similar to 192.168.178.255. + /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.255 ähnelt. /// public static string ExampleIPv4Broadcast { get { @@ -1807,7 +1807,7 @@ public static string ExampleIPv4Broadcast { } /// - /// Looks up a localized string similar to 8.8.8.8. + /// Sucht eine lokalisierte Zeichenfolge, die 8.8.8.8 ähnelt. /// public static string ExampleIPv4DNSServer { get { @@ -1816,7 +1816,7 @@ public static string ExampleIPv4DNSServer { } /// - /// Looks up a localized string similar to 192.168.178.1; 8.8.8.8; 8.8.4.4. + /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.1; 8.8.8.8; 8.8.4.4 ähnelt. /// public static string ExampleIPv4DNSServers { get { @@ -1825,7 +1825,7 @@ public static string ExampleIPv4DNSServers { } /// - /// Looks up a localized string similar to 192.168.178.1. + /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.1 ähnelt. /// public static string ExampleIPv4Gateway { get { @@ -1834,7 +1834,7 @@ public static string ExampleIPv4Gateway { } /// - /// Looks up a localized string similar to 192.168.178.133/255.255.255.0 or 2001:0db8::/64. + /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.133/255.255.255.0 or 2001:0db8::/64 ähnelt. /// public static string ExampleIPv4IPv6Subnet { get { @@ -1843,7 +1843,7 @@ public static string ExampleIPv4IPv6Subnet { } /// - /// Looks up a localized string similar to 192.168.178.134/255.255.255.0 or 2001:0db9::/64. + /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.134/255.255.255.0 or 2001:0db9::/64 ähnelt. /// public static string ExampleIPv4IPv6Subnet2 { get { @@ -1852,7 +1852,7 @@ public static string ExampleIPv4IPv6Subnet2 { } /// - /// Looks up a localized string similar to 192.168.178.133/22 or 192.168.178.133/255.255.252.0. + /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.133/22 or 192.168.178.133/255.255.252.0 ähnelt. /// public static string ExampleIPv4Subnet { get { @@ -1861,7 +1861,7 @@ public static string ExampleIPv4Subnet { } /// - /// Looks up a localized string similar to 255.255.255.0. + /// Sucht eine lokalisierte Zeichenfolge, die 255.255.255.0 ähnelt. /// public static string ExampleIPv4Subnetmask { get { @@ -1870,7 +1870,7 @@ public static string ExampleIPv4Subnetmask { } /// - /// Looks up a localized string similar to /24 or 255.255.255.0. + /// Sucht eine lokalisierte Zeichenfolge, die /24 or 255.255.255.0 ähnelt. /// public static string ExampleIPv4SubnetmaskIPv4CIDR { get { @@ -1879,7 +1879,7 @@ public static string ExampleIPv4SubnetmaskIPv4CIDR { } /// - /// Looks up a localized string similar to 255.255.255.0 or /64. + /// Sucht eine lokalisierte Zeichenfolge, die 255.255.255.0 or /64 ähnelt. /// public static string ExampleIPv4SubnetmaskIPv6CIDR { get { @@ -1888,7 +1888,7 @@ public static string ExampleIPv4SubnetmaskIPv6CIDR { } /// - /// Looks up a localized string similar to 192.168.100.0/24. + /// Sucht eine lokalisierte Zeichenfolge, die 192.168.100.0/24 ähnelt. /// public static string ExampleIPv4SubnetWithCIDR { get { @@ -1897,7 +1897,7 @@ public static string ExampleIPv4SubnetWithCIDR { } /// - /// Looks up a localized string similar to 00:F1:21:AB:0B:35. + /// Sucht eine lokalisierte Zeichenfolge, die 00:F1:21:AB:0B:35 ähnelt. /// public static string ExampleMACAddress { get { @@ -1906,7 +1906,7 @@ public static string ExampleMACAddress { } /// - /// Looks up a localized string similar to 01:23:45:67:89:AB; 01-23-45; AA11BB; 00F1A2C3D4E5; Intel Corp; Asus. + /// Sucht eine lokalisierte Zeichenfolge, die 01:23:45:67:89:AB; 01-23-45; AA11BB; 00F1A2C3D4E5; Intel Corp; Asus ähnelt. /// public static string ExampleMACAddressesOrVendor { get { @@ -1915,7 +1915,7 @@ public static string ExampleMACAddressesOrVendor { } /// - /// Looks up a localized string similar to 161. + /// Sucht eine lokalisierte Zeichenfolge, die 161 ähnelt. /// public static string ExamplePort161 { get { @@ -1924,7 +1924,7 @@ public static string ExamplePort161 { } /// - /// Looks up a localized string similar to 22. + /// Sucht eine lokalisierte Zeichenfolge, die 22 ähnelt. /// public static string ExamplePort22 { get { @@ -1933,7 +1933,7 @@ public static string ExamplePort22 { } /// - /// Looks up a localized string similar to 23. + /// Sucht eine lokalisierte Zeichenfolge, die 23 ähnelt. /// public static string ExamplePort23 { get { @@ -1942,7 +1942,7 @@ public static string ExamplePort23 { } /// - /// Looks up a localized string similar to 3389. + /// Sucht eine lokalisierte Zeichenfolge, die 3389 ähnelt. /// public static string ExamplePort3389 { get { @@ -1951,7 +1951,7 @@ public static string ExamplePort3389 { } /// - /// Looks up a localized string similar to 513. + /// Sucht eine lokalisierte Zeichenfolge, die 513 ähnelt. /// public static string ExamplePort513 { get { @@ -1960,7 +1960,7 @@ public static string ExamplePort513 { } /// - /// Looks up a localized string similar to 53. + /// Sucht eine lokalisierte Zeichenfolge, die 53 ähnelt. /// public static string ExamplePort53 { get { @@ -1969,7 +1969,7 @@ public static string ExamplePort53 { } /// - /// Looks up a localized string similar to 7. + /// Sucht eine lokalisierte Zeichenfolge, die 7 ähnelt. /// public static string ExamplePort7 { get { @@ -1978,7 +1978,7 @@ public static string ExamplePort7 { } /// - /// Looks up a localized string similar to 22; 80; https; ldaps; 777 - 999; 8080. + /// Sucht eine lokalisierte Zeichenfolge, die 22; 80; https; ldaps; 777 - 999; 8080 ähnelt. /// public static string ExamplePortPortRangeOrService { get { @@ -1987,7 +1987,7 @@ public static string ExamplePortPortRangeOrService { } /// - /// Looks up a localized string similar to 22; 80; 443; 500 - 999; 8080. + /// Sucht eine lokalisierte Zeichenfolge, die 22; 80; 443; 500 - 999; 8080 ähnelt. /// public static string ExamplePortScanRange { get { @@ -1996,7 +1996,7 @@ public static string ExamplePortScanRange { } /// - /// Looks up a localized string similar to Webserver. + /// Sucht eine lokalisierte Zeichenfolge, die Webserver ähnelt. /// public static string ExampleRemoteDesktopProfileName { get { @@ -2005,7 +2005,7 @@ public static string ExampleRemoteDesktopProfileName { } /// - /// Looks up a localized string similar to COM5. + /// Sucht eine lokalisierte Zeichenfolge, die COM5 ähnelt. /// public static string ExampleSerialLine { get { @@ -2014,7 +2014,7 @@ public static string ExampleSerialLine { } /// - /// Looks up a localized string similar to public. + /// Sucht eine lokalisierte Zeichenfolge, die public ähnelt. /// public static string ExampleSNMPCommunity { get { @@ -2023,7 +2023,7 @@ public static string ExampleSNMPCommunity { } /// - /// Looks up a localized string similar to 1.3.6.1.2.1.1. + /// Sucht eine lokalisierte Zeichenfolge, die 1.3.6.1.2.1.1 ähnelt. /// public static string ExampleSNMPOID { get { @@ -2032,7 +2032,7 @@ public static string ExampleSNMPOID { } /// - /// Looks up a localized string similar to snmp-user. + /// Sucht eine lokalisierte Zeichenfolge, die snmp-user ähnelt. /// public static string ExampleSNMPUsername { get { @@ -2041,7 +2041,7 @@ public static string ExampleSNMPUsername { } /// - /// Looks up a localized string similar to fritz.box. + /// Sucht eine lokalisierte Zeichenfolge, die fritz.box ähnelt. /// public static string ExampleSuffix { get { @@ -2050,7 +2050,7 @@ public static string ExampleSuffix { } /// - /// Looks up a localized string similar to server; dmz. + /// Sucht eine lokalisierte Zeichenfolge, die server; dmz ähnelt. /// public static string ExampleTags { get { @@ -2059,7 +2059,7 @@ public static string ExampleTags { } /// - /// Looks up a localized string similar to Admin. + /// Sucht eine lokalisierte Zeichenfolge, die Admin ähnelt. /// public static string ExampleUsername { get { @@ -2068,7 +2068,7 @@ public static string ExampleUsername { } /// - /// Looks up a localized string similar to 80; 443; 8080; 8443. + /// Sucht eine lokalisierte Zeichenfolge, die 80; 443; 8080; 8443 ähnelt. /// public static string ExampleWebserverPorts { get { @@ -2077,7 +2077,7 @@ public static string ExampleWebserverPorts { } /// - /// Looks up a localized string similar to http(s)://example.com/index.html. + /// Sucht eine lokalisierte Zeichenfolge, die http(s)://example.com/index.html ähnelt. /// public static string ExampleWebsiteUri { get { @@ -2086,7 +2086,7 @@ public static string ExampleWebsiteUri { } /// - /// Looks up a localized string similar to Expand. + /// Sucht eine lokalisierte Zeichenfolge, die Expand ähnelt. /// public static string Expand { get { @@ -2095,7 +2095,7 @@ public static string Expand { } /// - /// Looks up a localized string similar to Export. + /// Sucht eine lokalisierte Zeichenfolge, die Export ähnelt. /// public static string Export { get { @@ -2104,7 +2104,7 @@ public static string Export { } /// - /// Looks up a localized string similar to Field cannot be empty!. + /// Sucht eine lokalisierte Zeichenfolge, die Field cannot be empty! ähnelt. /// public static string FieldCannotBeEmpty { get { @@ -2113,7 +2113,7 @@ public static string FieldCannotBeEmpty { } /// - /// Looks up a localized string similar to File does not exists!. + /// Sucht eine lokalisierte Zeichenfolge, die File does not exists! ähnelt. /// public static string FileDoesNotExist { get { @@ -2122,7 +2122,7 @@ public static string FileDoesNotExist { } /// - /// Looks up a localized string similar to Filter. + /// Sucht eine lokalisierte Zeichenfolge, die Filter ähnelt. /// public static string Filter { get { @@ -2131,7 +2131,7 @@ public static string Filter { } /// - /// Looks up a localized string similar to Filter.... + /// Sucht eine lokalisierte Zeichenfolge, die Filter... ähnelt. /// public static string FilterDots { get { @@ -2140,7 +2140,7 @@ public static string FilterDots { } /// - /// Looks up a localized string similar to First usable IP address. + /// Sucht eine lokalisierte Zeichenfolge, die First usable IP address ähnelt. /// public static string FirstUsableIPAddress { get { @@ -2149,7 +2149,7 @@ public static string FirstUsableIPAddress { } /// - /// Looks up a localized string similar to Fixed screen size:. + /// Sucht eine lokalisierte Zeichenfolge, die Fixed screen size: ähnelt. /// public static string FixedScreenSize { get { @@ -2158,7 +2158,7 @@ public static string FixedScreenSize { } /// - /// Looks up a localized string similar to Flush DNS cache. + /// Sucht eine lokalisierte Zeichenfolge, die Flush DNS cache ähnelt. /// public static string FlushDNSCache { get { @@ -2167,7 +2167,7 @@ public static string FlushDNSCache { } /// - /// Looks up a localized string similar to Folder does not exists!. + /// Sucht eine lokalisierte Zeichenfolge, die Folder does not exists! ähnelt. /// public static string FolderDoesNotExist { get { @@ -2176,7 +2176,7 @@ public static string FolderDoesNotExist { } /// - /// Looks up a localized string similar to Fork me on Github!. + /// Sucht eine lokalisierte Zeichenfolge, die Fork me on Github! ähnelt. /// public static string ForkMeOnGitHub { get { @@ -2185,7 +2185,7 @@ public static string ForkMeOnGitHub { } /// - /// Looks up a localized string similar to Found. + /// Sucht eine lokalisierte Zeichenfolge, die Found ähnelt. /// public static string Found { get { @@ -2194,7 +2194,7 @@ public static string Found { } /// - /// Looks up a localized string similar to General. + /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt. /// public static string General { get { @@ -2203,7 +2203,7 @@ public static string General { } /// - /// Looks up a localized string similar to Green. + /// Sucht eine lokalisierte Zeichenfolge, die Green ähnelt. /// public static string Green { get { @@ -2212,7 +2212,7 @@ public static string Green { } /// - /// Looks up a localized string similar to Group. + /// Sucht eine lokalisierte Zeichenfolge, die Group ähnelt. /// public static string Group { get { @@ -2221,7 +2221,7 @@ public static string Group { } /// - /// Looks up a localized string similar to Headers. + /// Sucht eine lokalisierte Zeichenfolge, die Headers ähnelt. /// public static string Headers { get { @@ -2230,7 +2230,7 @@ public static string Headers { } /// - /// Looks up a localized string similar to Height. + /// Sucht eine lokalisierte Zeichenfolge, die Height ähnelt. /// public static string Height { get { @@ -2239,7 +2239,7 @@ public static string Height { } /// - /// Looks up a localized string similar to Decrypt and load your credentials to select them.. + /// Sucht eine lokalisierte Zeichenfolge, die Decrypt and load your credentials to select them. ähnelt. /// public static string HelpMessage_Credentials { get { @@ -2248,7 +2248,7 @@ public static string HelpMessage_Credentials { } /// - /// Looks up a localized string similar to Displays this dialog.. + /// Sucht eine lokalisierte Zeichenfolge, die Displays this dialog. ähnelt. /// public static string HelpMessage_ParameterHelp { get { @@ -2257,7 +2257,7 @@ public static string HelpMessage_ParameterHelp { } /// - /// Looks up a localized string similar to Reset all settings.. + /// Sucht eine lokalisierte Zeichenfolge, die Reset all settings. ähnelt. /// public static string HelpMessage_ParameterResetSettings { get { @@ -2266,7 +2266,7 @@ public static string HelpMessage_ParameterResetSettings { } /// - /// Looks up a localized string similar to The password is not displayed when editing, but can be overwritten.. + /// Sucht eine lokalisierte Zeichenfolge, die The password is not displayed when editing, but can be overwritten. ähnelt. /// public static string HelpMessage_PasswordNotDisplayedCanBeOverwritten { get { @@ -2275,7 +2275,7 @@ public static string HelpMessage_PasswordNotDisplayedCanBeOverwritten { } /// - /// Looks up a localized string similar to [0] If server authentication fails, connect to the computer without warning.\n[1] If server authentication fails, do not establish a connection.\n[2] If server authentication fails, show a warning and allow me to connect or refuse the connection.\n[3] No authentication requirement is specified.. + /// Sucht eine lokalisierte Zeichenfolge, die [0] If server authentication fails, connect to the computer without warning.\n[1] If server authentication fails, do not establish a connection.\n[2] If server authentication fails, show a warning and allow me to connect or refuse the connection.\n[3] No authentication requirement is specified. ähnelt. /// public static string HelpMessage_RDPAuthenticationLevel { get { @@ -2284,7 +2284,7 @@ public static string HelpMessage_RDPAuthenticationLevel { } /// - /// Looks up a localized string similar to Tags help you organize profiles/Profiles by topics/projects. Multiple tags can be used with ";" be separated. Search by tags with "tag=xxx".. + /// Sucht eine lokalisierte Zeichenfolge, die Tags help you organize profiles/Profiles by topics/projects. Multiple tags can be used with ";" be separated. Search by tags with "tag=xxx". ähnelt. /// public static string HelpMessage_Tags { get { @@ -2293,7 +2293,7 @@ public static string HelpMessage_Tags { } /// - /// Looks up a localized string similar to Hidden applications. + /// Sucht eine lokalisierte Zeichenfolge, die Hidden applications ähnelt. /// public static string HiddenApplications { get { @@ -2302,7 +2302,7 @@ public static string HiddenApplications { } /// - /// Looks up a localized string similar to History. + /// Sucht eine lokalisierte Zeichenfolge, die History ähnelt. /// public static string History { get { @@ -2311,7 +2311,7 @@ public static string History { } /// - /// Looks up a localized string similar to Hop. + /// Sucht eine lokalisierte Zeichenfolge, die Hop ähnelt. /// public static string Hop { get { @@ -2320,7 +2320,7 @@ public static string Hop { } /// - /// Looks up a localized string similar to Hops. + /// Sucht eine lokalisierte Zeichenfolge, die Hops ähnelt. /// public static string Hops { get { @@ -2329,7 +2329,7 @@ public static string Hops { } /// - /// Looks up a localized string similar to Host. + /// Sucht eine lokalisierte Zeichenfolge, die Host ähnelt. /// public static string Host { get { @@ -2338,7 +2338,7 @@ public static string Host { } /// - /// Looks up a localized string similar to Hostname. + /// Sucht eine lokalisierte Zeichenfolge, die Hostname ähnelt. /// public static string Hostname { get { @@ -2347,7 +2347,7 @@ public static string Hostname { } /// - /// Looks up a localized string similar to Hostname or IP address. + /// Sucht eine lokalisierte Zeichenfolge, die Hostname or IP address ähnelt. /// public static string HostnameOrIPAddress { get { @@ -2356,7 +2356,7 @@ public static string HostnameOrIPAddress { } /// - /// Looks up a localized string similar to Hosts. + /// Sucht eine lokalisierte Zeichenfolge, die Hosts ähnelt. /// public static string Hosts { get { @@ -2365,7 +2365,7 @@ public static string Hosts { } /// - /// Looks up a localized string similar to HotKeys. + /// Sucht eine lokalisierte Zeichenfolge, die HotKeys ähnelt. /// public static string HotKeys { get { @@ -2374,7 +2374,7 @@ public static string HotKeys { } /// - /// Looks up a localized string similar to HTTP Headers. + /// Sucht eine lokalisierte Zeichenfolge, die HTTP Headers ähnelt. /// public static string HTTPHeaders { get { @@ -2383,7 +2383,7 @@ public static string HTTPHeaders { } /// - /// Looks up a localized string similar to ID. + /// Sucht eine lokalisierte Zeichenfolge, die ID ähnelt. /// public static string ID { get { @@ -2392,7 +2392,7 @@ public static string ID { } /// - /// Looks up a localized string similar to Import. + /// Sucht eine lokalisierte Zeichenfolge, die Import ähnelt. /// public static string Import { get { @@ -2401,7 +2401,7 @@ public static string Import { } /// - /// Looks up a localized string similar to Import / Export. + /// Sucht eine lokalisierte Zeichenfolge, die Import / Export ähnelt. /// public static string ImportExport { get { @@ -2410,7 +2410,7 @@ public static string ImportExport { } /// - /// Looks up a localized string similar to Indigo. + /// Sucht eine lokalisierte Zeichenfolge, die Indigo ähnelt. /// public static string Indigo { get { @@ -2419,7 +2419,7 @@ public static string Indigo { } /// - /// Looks up a localized string similar to Information. + /// Sucht eine lokalisierte Zeichenfolge, die Information ähnelt. /// public static string Information { get { @@ -2428,7 +2428,7 @@ public static string Information { } /// - /// Looks up a localized string similar to Inherit host from default. + /// Sucht eine lokalisierte Zeichenfolge, die Inherit host from default ähnelt. /// public static string InheritHostFromDefault { get { @@ -2437,7 +2437,7 @@ public static string InheritHostFromDefault { } /// - /// Looks up a localized string similar to You must install the Remote Desktop Protocol (RDP) version 8.1 on your system to use the Remote Desktop functionality!. + /// Sucht eine lokalisierte Zeichenfolge, die You must install the Remote Desktop Protocol (RDP) version 8.1 on your system to use the Remote Desktop functionality! ähnelt. /// public static string InstallRDP8dot1Message { get { @@ -2446,7 +2446,7 @@ public static string InstallRDP8dot1Message { } /// - /// Looks up a localized string similar to Interface. + /// Sucht eine lokalisierte Zeichenfolge, die Interface ähnelt. /// public static string Interface { get { @@ -2455,7 +2455,7 @@ public static string Interface { } /// - /// Looks up a localized string similar to IP address. + /// Sucht eine lokalisierte Zeichenfolge, die IP address ähnelt. /// public static string IPAddress { get { @@ -2464,7 +2464,7 @@ public static string IPAddress { } /// - /// Looks up a localized string similar to IP addresses. + /// Sucht eine lokalisierte Zeichenfolge, die IP addresses ähnelt. /// public static string IPAddresses { get { @@ -2473,7 +2473,7 @@ public static string IPAddresses { } /// - /// Looks up a localized string similar to IP range. + /// Sucht eine lokalisierte Zeichenfolge, die IP range ähnelt. /// public static string IPRange { get { @@ -2482,7 +2482,7 @@ public static string IPRange { } /// - /// Looks up a localized string similar to IP Scanner. + /// Sucht eine lokalisierte Zeichenfolge, die IP Scanner ähnelt. /// public static string IPScanner { get { @@ -2491,7 +2491,7 @@ public static string IPScanner { } /// - /// Looks up a localized string similar to Destination host unreachable.. + /// Sucht eine lokalisierte Zeichenfolge, die Destination host unreachable. ähnelt. /// public static string IPStatus_DestinationHostUnreachable { get { @@ -2500,7 +2500,7 @@ public static string IPStatus_DestinationHostUnreachable { } /// - /// Looks up a localized string similar to Destination network unreachable.. + /// Sucht eine lokalisierte Zeichenfolge, die Destination network unreachable. ähnelt. /// public static string IPStatus_DestinationNetworkUnreachable { get { @@ -2509,7 +2509,7 @@ public static string IPStatus_DestinationNetworkUnreachable { } /// - /// Looks up a localized string similar to Destination port unreachable.. + /// Sucht eine lokalisierte Zeichenfolge, die Destination port unreachable. ähnelt. /// public static string IPStatus_DestinationPortUnreachable { get { @@ -2518,7 +2518,7 @@ public static string IPStatus_DestinationPortUnreachable { } /// - /// Looks up a localized string similar to Success. + /// Sucht eine lokalisierte Zeichenfolge, die Success ähnelt. /// public static string IPStatus_Success { get { @@ -2527,7 +2527,7 @@ public static string IPStatus_Success { } /// - /// Looks up a localized string similar to Request timed out.. + /// Sucht eine lokalisierte Zeichenfolge, die Request timed out. ähnelt. /// public static string IPStatus_TimedOut { get { @@ -2536,7 +2536,7 @@ public static string IPStatus_TimedOut { } /// - /// Looks up a localized string similar to TTL expired in transit.. + /// Sucht eine lokalisierte Zeichenfolge, die TTL expired in transit. ähnelt. /// public static string IPStatus_TtlExpired { get { @@ -2545,7 +2545,7 @@ public static string IPStatus_TtlExpired { } /// - /// Looks up a localized string similar to IPv4. + /// Sucht eine lokalisierte Zeichenfolge, die IPv4 ähnelt. /// public static string IPv4 { get { @@ -2554,7 +2554,7 @@ public static string IPv4 { } /// - /// Looks up a localized string similar to IPv4 address. + /// Sucht eine lokalisierte Zeichenfolge, die IPv4 address ähnelt. /// public static string IPv4Address { get { @@ -2563,7 +2563,7 @@ public static string IPv4Address { } /// - /// Looks up a localized string similar to IPv4-Default-Gateway. + /// Sucht eine lokalisierte Zeichenfolge, die IPv4-Default-Gateway ähnelt. /// public static string IPv4DefaultGateway { get { @@ -2572,7 +2572,7 @@ public static string IPv4DefaultGateway { } /// - /// Looks up a localized string similar to IPv6. + /// Sucht eine lokalisierte Zeichenfolge, die IPv6 ähnelt. /// public static string IPv6 { get { @@ -2581,7 +2581,7 @@ public static string IPv6 { } /// - /// Looks up a localized string similar to IPv6 address. + /// Sucht eine lokalisierte Zeichenfolge, die IPv6 address ähnelt. /// public static string IPv6Address { get { @@ -2590,7 +2590,7 @@ public static string IPv6Address { } /// - /// Looks up a localized string similar to Link-local IPv6 address. + /// Sucht eine lokalisierte Zeichenfolge, die Link-local IPv6 address ähnelt. /// public static string IPv6AddressLinkLocal { get { @@ -2599,7 +2599,7 @@ public static string IPv6AddressLinkLocal { } /// - /// Looks up a localized string similar to IPv6-Default-Gateway. + /// Sucht eine lokalisierte Zeichenfolge, die IPv6-Default-Gateway ähnelt. /// public static string IPv6DefaultGateway { get { @@ -2608,7 +2608,7 @@ public static string IPv6DefaultGateway { } /// - /// Looks up a localized string similar to Keyboard. + /// Sucht eine lokalisierte Zeichenfolge, die Keyboard ähnelt. /// public static string Keyboard { get { @@ -2617,7 +2617,7 @@ public static string Keyboard { } /// - /// Looks up a localized string similar to Key must have 8 characters or more!. + /// Sucht eine lokalisierte Zeichenfolge, die Key must have 8 characters or more! ähnelt. /// public static string KeyMustHave8CharactersOrMore { get { @@ -2626,7 +2626,7 @@ public static string KeyMustHave8CharactersOrMore { } /// - /// Looks up a localized string similar to Language. + /// Sucht eine lokalisierte Zeichenfolge, die Language ähnelt. /// public static string Language { get { @@ -2635,7 +2635,7 @@ public static string Language { } /// - /// Looks up a localized string similar to Last usable IP address. + /// Sucht eine lokalisierte Zeichenfolge, die Last usable IP address ähnelt. /// public static string LastUsableIPAddress { get { @@ -2644,7 +2644,7 @@ public static string LastUsableIPAddress { } /// - /// Looks up a localized string similar to Libraries. + /// Sucht eine lokalisierte Zeichenfolge, die Libraries ähnelt. /// public static string Libraries { get { @@ -2653,7 +2653,7 @@ public static string Libraries { } /// - /// Looks up a localized string similar to License. + /// Sucht eine lokalisierte Zeichenfolge, die License ähnelt. /// public static string License { get { @@ -2662,7 +2662,7 @@ public static string License { } /// - /// Looks up a localized string similar to Lime. + /// Sucht eine lokalisierte Zeichenfolge, die Lime ähnelt. /// public static string Lime { get { @@ -2671,7 +2671,7 @@ public static string Lime { } /// - /// Looks up a localized string similar to Listeners. + /// Sucht eine lokalisierte Zeichenfolge, die Listeners ähnelt. /// public static string Listeners { get { @@ -2680,7 +2680,7 @@ public static string Listeners { } /// - /// Looks up a localized string similar to Local devices and resources. + /// Sucht eine lokalisierte Zeichenfolge, die Local devices and resources ähnelt. /// public static string LocalDevicesAndResources { get { @@ -2689,7 +2689,7 @@ public static string LocalDevicesAndResources { } /// - /// Looks up a localized string similar to Local IP address. + /// Sucht eine lokalisierte Zeichenfolge, die Local IP address ähnelt. /// public static string LocalIPAddress { get { @@ -2698,7 +2698,7 @@ public static string LocalIPAddress { } /// - /// Looks up a localized string similar to Local port. + /// Sucht eine lokalisierte Zeichenfolge, die Local port ähnelt. /// public static string LocalPort { get { @@ -2707,7 +2707,7 @@ public static string LocalPort { } /// - /// Looks up a localized string similar to Location. + /// Sucht eine lokalisierte Zeichenfolge, die Location ähnelt. /// public static string Location { get { @@ -2716,7 +2716,7 @@ public static string Location { } /// - /// Looks up a localized string similar to Location of the import file.... + /// Sucht eine lokalisierte Zeichenfolge, die Location of the import file... ähnelt. /// public static string LocationOfTheImport { get { @@ -2725,7 +2725,7 @@ public static string LocationOfTheImport { } /// - /// Looks up a localized string similar to Lookup. + /// Sucht eine lokalisierte Zeichenfolge, die Lookup ähnelt. /// public static string Lookup { get { @@ -2734,7 +2734,7 @@ public static string Lookup { } /// - /// Looks up a localized string similar to MAC Address. + /// Sucht eine lokalisierte Zeichenfolge, die MAC Address ähnelt. /// public static string MACAddress { get { @@ -2743,7 +2743,7 @@ public static string MACAddress { } /// - /// Looks up a localized string similar to MAC address or vendor. + /// Sucht eine lokalisierte Zeichenfolge, die MAC address or vendor ähnelt. /// public static string MACAddressOrVendor { get { @@ -2752,7 +2752,7 @@ public static string MACAddressOrVendor { } /// - /// Looks up a localized string similar to Magenta. + /// Sucht eine lokalisierte Zeichenfolge, die Magenta ähnelt. /// public static string Magenta { get { @@ -2761,7 +2761,7 @@ public static string Magenta { } /// - /// Looks up a localized string similar to Magic packet successfully sent!. + /// Sucht eine lokalisierte Zeichenfolge, die Magic packet successfully sent! ähnelt. /// public static string MagicPacketSentMessage { get { @@ -2770,7 +2770,7 @@ public static string MagicPacketSentMessage { } /// - /// Looks up a localized string similar to Master Password. + /// Sucht eine lokalisierte Zeichenfolge, die Master Password ähnelt. /// public static string MasterPassword { get { @@ -2779,7 +2779,7 @@ public static string MasterPassword { } /// - /// Looks up a localized string similar to Mauve. + /// Sucht eine lokalisierte Zeichenfolge, die Mauve ähnelt. /// public static string Mauve { get { @@ -2788,7 +2788,7 @@ public static string Mauve { } /// - /// Looks up a localized string similar to Maximum. + /// Sucht eine lokalisierte Zeichenfolge, die Maximum ähnelt. /// public static string Maximum { get { @@ -2797,7 +2797,7 @@ public static string Maximum { } /// - /// Looks up a localized string similar to Maximum hops/router. + /// Sucht eine lokalisierte Zeichenfolge, die Maximum hops/router ähnelt. /// public static string MaximumHopsRouter { get { @@ -2806,7 +2806,7 @@ public static string MaximumHopsRouter { } /// - /// Looks up a localized string similar to Maximum number ({0}) of hops/router reached!. + /// Sucht eine lokalisierte Zeichenfolge, die Maximum number ({0}) of hops/router reached! ähnelt. /// public static string MaximumNumberOfHopsReached { get { @@ -2815,7 +2815,7 @@ public static string MaximumNumberOfHopsReached { } /// - /// Looks up a localized string similar to Message size. + /// Sucht eine lokalisierte Zeichenfolge, die Message size ähnelt. /// public static string MessageSize { get { @@ -2824,7 +2824,7 @@ public static string MessageSize { } /// - /// Looks up a localized string similar to Minimize main window instead of terminating the application. + /// Sucht eine lokalisierte Zeichenfolge, die Minimize main window instead of terminating the application ähnelt. /// public static string MinimizeInsteadOfTerminating { get { @@ -2833,7 +2833,7 @@ public static string MinimizeInsteadOfTerminating { } /// - /// Looks up a localized string similar to Minimize to tray instead of taskbar. + /// Sucht eine lokalisierte Zeichenfolge, die Minimize to tray instead of taskbar ähnelt. /// public static string MinimizeToTrayInsteadOfTaskbar { get { @@ -2842,7 +2842,7 @@ public static string MinimizeToTrayInsteadOfTaskbar { } /// - /// Looks up a localized string similar to Minimum. + /// Sucht eine lokalisierte Zeichenfolge, die Minimum ähnelt. /// public static string Minimum { get { @@ -2851,7 +2851,7 @@ public static string Minimum { } /// - /// Looks up a localized string similar to Mode. + /// Sucht eine lokalisierte Zeichenfolge, die Mode ähnelt. /// public static string Mode { get { @@ -2860,7 +2860,7 @@ public static string Mode { } /// - /// Looks up a localized string similar to Move & Restart. + /// Sucht eine lokalisierte Zeichenfolge, die Move & Restart ähnelt. /// public static string MoveAndRestart { get { @@ -2869,7 +2869,7 @@ public static string MoveAndRestart { } /// - /// Looks up a localized string similar to Multicast. + /// Sucht eine lokalisierte Zeichenfolge, die Multicast ähnelt. /// public static string Multicast { get { @@ -2878,7 +2878,7 @@ public static string Multicast { } /// - /// Looks up a localized string similar to Multiple instances. + /// Sucht eine lokalisierte Zeichenfolge, die Multiple instances ähnelt. /// public static string MultipleInstances { get { @@ -2887,7 +2887,7 @@ public static string MultipleInstances { } /// - /// Looks up a localized string similar to Multithreading. + /// Sucht eine lokalisierte Zeichenfolge, die Multithreading ähnelt. /// public static string Multithreading { get { @@ -2896,7 +2896,7 @@ public static string Multithreading { } /// - /// Looks up a localized string similar to Name. + /// Sucht eine lokalisierte Zeichenfolge, die Name ähnelt. /// public static string Name { get { @@ -2905,7 +2905,7 @@ public static string Name { } /// - /// Looks up a localized string similar to Network. + /// Sucht eine lokalisierte Zeichenfolge, die Network ähnelt. /// public static string Network { get { @@ -2914,7 +2914,7 @@ public static string Network { } /// - /// Looks up a localized string similar to Network address. + /// Sucht eine lokalisierte Zeichenfolge, die Network address ähnelt. /// public static string NetworkAddress { get { @@ -2923,7 +2923,7 @@ public static string NetworkAddress { } /// - /// Looks up a localized string similar to Network connections..... + /// Sucht eine lokalisierte Zeichenfolge, die Network connections.... ähnelt. /// public static string NetworkConnectionsDots { get { @@ -2932,7 +2932,7 @@ public static string NetworkConnectionsDots { } /// - /// Looks up a localized string similar to Network Interface. + /// Sucht eine lokalisierte Zeichenfolge, die Network Interface ähnelt. /// public static string NetworkInterface { get { @@ -2941,7 +2941,7 @@ public static string NetworkInterface { } /// - /// Looks up a localized string similar to The network address cannot be reached. Check if your computer is connected to the network. For information about network troubleshooting, see Windows Help.. + /// Sucht eine lokalisierte Zeichenfolge, die The network address cannot be reached. Check if your computer is connected to the network. For information about network troubleshooting, see Windows Help. ähnelt. /// public static string NetworkLocationCannotBeReachedMessage { get { @@ -2950,7 +2950,7 @@ public static string NetworkLocationCannotBeReachedMessage { } /// - /// Looks up a localized string similar to New connection.... + /// Sucht eine lokalisierte Zeichenfolge, die New connection... ähnelt. /// public static string NewConnectionDots { get { @@ -2959,7 +2959,7 @@ public static string NewConnectionDots { } /// - /// Looks up a localized string similar to New subnetmask or CIDR. + /// Sucht eine lokalisierte Zeichenfolge, die New subnetmask or CIDR ähnelt. /// public static string NewSubnetmaskOrCIDR { get { @@ -2968,7 +2968,7 @@ public static string NewSubnetmaskOrCIDR { } /// - /// Looks up a localized string similar to New tab. + /// Sucht eine lokalisierte Zeichenfolge, die New tab ähnelt. /// public static string NewTab { get { @@ -2977,7 +2977,7 @@ public static string NewTab { } /// - /// Looks up a localized string similar to No. + /// Sucht eine lokalisierte Zeichenfolge, die No ähnelt. /// public static string No { get { @@ -2986,7 +2986,7 @@ public static string No { } /// - /// Looks up a localized string similar to No DNS record found for "{0}"! Check your input and the settings.. + /// Sucht eine lokalisierte Zeichenfolge, die No DNS record found for "{0}"! Check your input and the settings. ähnelt. /// public static string NoDNSRecordFoundCheckYourInputAndSettings { get { @@ -2995,7 +2995,7 @@ public static string NoDNSRecordFoundCheckYourInputAndSettings { } /// - /// Looks up a localized string similar to No enabled network adapters found!. + /// Sucht eine lokalisierte Zeichenfolge, die No enabled network adapters found! ähnelt. /// public static string NoEnabledNetworkAdaptersFound { get { @@ -3004,7 +3004,7 @@ public static string NoEnabledNetworkAdaptersFound { } /// - /// Looks up a localized string similar to No ports found. Check your input!. + /// Sucht eine lokalisierte Zeichenfolge, die No ports found. Check your input! ähnelt. /// public static string NoPortsFoundCheckYourInput { get { @@ -3013,7 +3013,7 @@ public static string NoPortsFoundCheckYourInput { } /// - /// Looks up a localized string similar to No profiles found! Create one.... + /// Sucht eine lokalisierte Zeichenfolge, die No profiles found! Create one... ähnelt. /// public static string NoProfilesFoundCreateOne { get { @@ -3022,7 +3022,7 @@ public static string NoProfilesFoundCreateOne { } /// - /// Looks up a localized string similar to (not changed). + /// Sucht eine lokalisierte Zeichenfolge, die (not changed) ähnelt. /// public static string NotChanged { get { @@ -3031,7 +3031,7 @@ public static string NotChanged { } /// - /// Looks up a localized string similar to Nothing found!. + /// Sucht eine lokalisierte Zeichenfolge, die Nothing found! ähnelt. /// public static string NothingFound { get { @@ -3040,7 +3040,7 @@ public static string NothingFound { } /// - /// Looks up a localized string similar to Nothing to do. Check your input!. + /// Sucht eine lokalisierte Zeichenfolge, die Nothing to do. Check your input! ähnelt. /// public static string NothingToDoCheckYourInput { get { @@ -3049,7 +3049,7 @@ public static string NothingToDoCheckYourInput { } /// - /// Looks up a localized string similar to No update available!. + /// Sucht eine lokalisierte Zeichenfolge, die No update available! ähnelt. /// public static string NoUpdateAvailable { get { @@ -3058,7 +3058,7 @@ public static string NoUpdateAvailable { } /// - /// Looks up a localized string similar to No valid file found to import.. + /// Sucht eine lokalisierte Zeichenfolge, die No valid file found to import. ähnelt. /// public static string NoValidFileFoundToImport { get { @@ -3067,7 +3067,7 @@ public static string NoValidFileFoundToImport { } /// - /// Looks up a localized string similar to No vendor found. Check your input!. + /// Sucht eine lokalisierte Zeichenfolge, die No vendor found. Check your input! ähnelt. /// public static string NoVendorFoundCheckYourInput { get { @@ -3076,7 +3076,7 @@ public static string NoVendorFoundCheckYourInput { } /// - /// Looks up a localized string similar to Number of errors after which is canceled:. + /// Sucht eine lokalisierte Zeichenfolge, die Number of errors after which is canceled: ähnelt. /// public static string NumberOfErrorsAfterWhichIsCanceled { get { @@ -3085,7 +3085,7 @@ public static string NumberOfErrorsAfterWhichIsCanceled { } /// - /// Looks up a localized string similar to Number of stored entries. + /// Sucht eine lokalisierte Zeichenfolge, die Number of stored entries ähnelt. /// public static string NumberOfStoredEntries { get { @@ -3094,7 +3094,7 @@ public static string NumberOfStoredEntries { } /// - /// Looks up a localized string similar to Obtain an IP address automatically. + /// Sucht eine lokalisierte Zeichenfolge, die Obtain an IP address automatically ähnelt. /// public static string ObtainAnIPAddressAutomatically { get { @@ -3103,7 +3103,7 @@ public static string ObtainAnIPAddressAutomatically { } /// - /// Looks up a localized string similar to Obtain DNS server address automatically. + /// Sucht eine lokalisierte Zeichenfolge, die Obtain DNS server address automatically ähnelt. /// public static string ObtainDNSServerAddressAutomatically { get { @@ -3112,7 +3112,7 @@ public static string ObtainDNSServerAddressAutomatically { } /// - /// Looks up a localized string similar to Off. + /// Sucht eine lokalisierte Zeichenfolge, die Off ähnelt. /// public static string Off { get { @@ -3121,7 +3121,7 @@ public static string Off { } /// - /// Looks up a localized string similar to OID. + /// Sucht eine lokalisierte Zeichenfolge, die OID ähnelt. /// public static string OID { get { @@ -3130,7 +3130,7 @@ public static string OID { } /// - /// Looks up a localized string similar to OK. + /// Sucht eine lokalisierte Zeichenfolge, die OK ähnelt. /// public static string OK { get { @@ -3139,7 +3139,7 @@ public static string OK { } /// - /// Looks up a localized string similar to Olive. + /// Sucht eine lokalisierte Zeichenfolge, die Olive ähnelt. /// public static string Olive { get { @@ -3148,7 +3148,7 @@ public static string Olive { } /// - /// Looks up a localized string similar to On. + /// Sucht eine lokalisierte Zeichenfolge, die On ähnelt. /// public static string On { get { @@ -3157,7 +3157,7 @@ public static string On { } /// - /// Looks up a localized string similar to Only numbers can be entered!. + /// Sucht eine lokalisierte Zeichenfolge, die Only numbers can be entered! ähnelt. /// public static string OnlyNumbersCanBeEntered { get { @@ -3166,7 +3166,7 @@ public static string OnlyNumbersCanBeEntered { } /// - /// Looks up a localized string similar to Only when using the full screen. + /// Sucht eine lokalisierte Zeichenfolge, die Only when using the full screen ähnelt. /// public static string OnlyWhenUsingTheFullScreen { get { @@ -3175,7 +3175,7 @@ public static string OnlyWhenUsingTheFullScreen { } /// - /// Looks up a localized string similar to On the remote computer. + /// Sucht eine lokalisierte Zeichenfolge, die On the remote computer ähnelt. /// public static string OnTheRemoteComputer { get { @@ -3184,7 +3184,7 @@ public static string OnTheRemoteComputer { } /// - /// Looks up a localized string similar to On this computer. + /// Sucht eine lokalisierte Zeichenfolge, die On this computer ähnelt. /// public static string OnThisComputer { get { @@ -3193,7 +3193,7 @@ public static string OnThisComputer { } /// - /// Looks up a localized string similar to Open. + /// Sucht eine lokalisierte Zeichenfolge, die Open ähnelt. /// public static string Open { get { @@ -3202,7 +3202,7 @@ public static string Open { } /// - /// Looks up a localized string similar to Open license. + /// Sucht eine lokalisierte Zeichenfolge, die Open license ähnelt. /// public static string OpenLicense { get { @@ -3211,7 +3211,7 @@ public static string OpenLicense { } /// - /// Looks up a localized string similar to Open location. + /// Sucht eine lokalisierte Zeichenfolge, die Open location ähnelt. /// public static string OpenLocation { get { @@ -3220,7 +3220,7 @@ public static string OpenLocation { } /// - /// Looks up a localized string similar to Open project. + /// Sucht eine lokalisierte Zeichenfolge, die Open project ähnelt. /// public static string OpenProject { get { @@ -3229,7 +3229,7 @@ public static string OpenProject { } /// - /// Looks up a localized string similar to Open settings. + /// Sucht eine lokalisierte Zeichenfolge, die Open settings ähnelt. /// public static string OpenSettings { get { @@ -3238,7 +3238,7 @@ public static string OpenSettings { } /// - /// Looks up a localized string similar to Open website. + /// Sucht eine lokalisierte Zeichenfolge, die Open website ähnelt. /// public static string OpenWebsite { get { @@ -3247,7 +3247,7 @@ public static string OpenWebsite { } /// - /// Looks up a localized string similar to Orange. + /// Sucht eine lokalisierte Zeichenfolge, die Orange ähnelt. /// public static string Orange { get { @@ -3256,7 +3256,7 @@ public static string Orange { } /// - /// Looks up a localized string similar to OUI. + /// Sucht eine lokalisierte Zeichenfolge, die OUI ähnelt. /// public static string OUI { get { @@ -3265,7 +3265,7 @@ public static string OUI { } /// - /// Looks up a localized string similar to override. + /// Sucht eine lokalisierte Zeichenfolge, die override ähnelt. /// public static string Override { get { @@ -3274,7 +3274,7 @@ public static string Override { } /// - /// Looks up a localized string similar to Overwrite. + /// Sucht eine lokalisierte Zeichenfolge, die Overwrite ähnelt. /// public static string Overwrite { get { @@ -3283,7 +3283,7 @@ public static string Overwrite { } /// - /// Looks up a localized string similar to Overwrite?. + /// Sucht eine lokalisierte Zeichenfolge, die Overwrite? ähnelt. /// public static string OverwriteQuestion { get { @@ -3292,9 +3292,9 @@ public static string OverwriteQuestion { } /// - /// Looks up a localized string similar to Overwrite settings in the destination folder? + /// Sucht eine lokalisierte Zeichenfolge, die Overwrite settings in the destination folder? /// - ///If you click "Move & Restart", the remaining files will be copied and the application will be restarted with the new settings!. + ///If you click "Move & Restart", the remaining files will be copied and the application will be restarted with the new settings! ähnelt. /// public static string OverwriteSettingsInTheDestinationFolder { get { @@ -3303,7 +3303,7 @@ public static string OverwriteSettingsInTheDestinationFolder { } /// - /// Looks up a localized string similar to Packet loss. + /// Sucht eine lokalisierte Zeichenfolge, die Packet loss ähnelt. /// public static string PacketLoss { get { @@ -3312,7 +3312,7 @@ public static string PacketLoss { } /// - /// Looks up a localized string similar to Packets transmitted. + /// Sucht eine lokalisierte Zeichenfolge, die Packets transmitted ähnelt. /// public static string PacketsTransmitted { get { @@ -3321,7 +3321,7 @@ public static string PacketsTransmitted { } /// - /// Looks up a localized string similar to Password. + /// Sucht eine lokalisierte Zeichenfolge, die Password ähnelt. /// public static string Password { get { @@ -3330,7 +3330,7 @@ public static string Password { } /// - /// Looks up a localized string similar to Passwords do not match!. + /// Sucht eine lokalisierte Zeichenfolge, die Passwords do not match! ähnelt. /// public static string PasswordsDoNotMatch { get { @@ -3339,7 +3339,7 @@ public static string PasswordsDoNotMatch { } /// - /// Looks up a localized string similar to Paste. + /// Sucht eine lokalisierte Zeichenfolge, die Paste ähnelt. /// public static string Paste { get { @@ -3348,7 +3348,7 @@ public static string Paste { } /// - /// Looks up a localized string similar to Path. + /// Sucht eine lokalisierte Zeichenfolge, die Path ähnelt. /// public static string Path { get { @@ -3357,7 +3357,7 @@ public static string Path { } /// - /// Looks up a localized string similar to PhysicalAddress. + /// Sucht eine lokalisierte Zeichenfolge, die PhysicalAddress ähnelt. /// public static string PhysicalAddress { get { @@ -3366,7 +3366,7 @@ public static string PhysicalAddress { } /// - /// Looks up a localized string similar to Ping. + /// Sucht eine lokalisierte Zeichenfolge, die Ping ähnelt. /// public static string Ping { get { @@ -3375,7 +3375,7 @@ public static string Ping { } /// - /// Looks up a localized string similar to Pink. + /// Sucht eine lokalisierte Zeichenfolge, die Pink ähnelt. /// public static string Pink { get { @@ -3384,7 +3384,7 @@ public static string Pink { } /// - /// Looks up a localized string similar to Port. + /// Sucht eine lokalisierte Zeichenfolge, die Port ähnelt. /// public static string Port { get { @@ -3393,7 +3393,7 @@ public static string Port { } /// - /// Looks up a localized string similar to Portable. + /// Sucht eine lokalisierte Zeichenfolge, die Portable ähnelt. /// public static string Portable { get { @@ -3402,7 +3402,7 @@ public static string Portable { } /// - /// Looks up a localized string similar to Port or service. + /// Sucht eine lokalisierte Zeichenfolge, die Port or service ähnelt. /// public static string PortOrService { get { @@ -3411,7 +3411,7 @@ public static string PortOrService { } /// - /// Looks up a localized string similar to Port(s). + /// Sucht eine lokalisierte Zeichenfolge, die Port(s) ähnelt. /// public static string Ports { get { @@ -3420,7 +3420,7 @@ public static string Ports { } /// - /// Looks up a localized string similar to Port Scanner. + /// Sucht eine lokalisierte Zeichenfolge, die Port Scanner ähnelt. /// public static string PortScanner { get { @@ -3429,7 +3429,7 @@ public static string PortScanner { } /// - /// Looks up a localized string similar to Closed. + /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. /// public static string PortState_Closed { get { @@ -3438,7 +3438,7 @@ public static string PortState_Closed { } /// - /// Looks up a localized string similar to Open. + /// Sucht eine lokalisierte Zeichenfolge, die Open ähnelt. /// public static string PortState_Open { get { @@ -3447,7 +3447,7 @@ public static string PortState_Open { } /// - /// Looks up a localized string similar to Preferred protocol when resolving hostname:. + /// Sucht eine lokalisierte Zeichenfolge, die Preferred protocol when resolving hostname: ähnelt. /// public static string PreferredProtocolWhenResolvingHostname { get { @@ -3456,7 +3456,7 @@ public static string PreferredProtocolWhenResolvingHostname { } /// - /// Looks up a localized string similar to Primary DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die Primary DNS server ähnelt. /// public static string PrimaryDNSServer { get { @@ -3465,7 +3465,7 @@ public static string PrimaryDNSServer { } /// - /// Looks up a localized string similar to Priv. + /// Sucht eine lokalisierte Zeichenfolge, die Priv ähnelt. /// public static string Priv { get { @@ -3474,7 +3474,7 @@ public static string Priv { } /// - /// Looks up a localized string similar to Profile. + /// Sucht eine lokalisierte Zeichenfolge, die Profile ähnelt. /// public static string Profile { get { @@ -3483,7 +3483,7 @@ public static string Profile { } /// - /// Looks up a localized string similar to Profiles. + /// Sucht eine lokalisierte Zeichenfolge, die Profiles ähnelt. /// public static string Profiles { get { @@ -3492,7 +3492,7 @@ public static string Profiles { } /// - /// Looks up a localized string similar to Profiles reloaded. + /// Sucht eine lokalisierte Zeichenfolge, die Profiles reloaded ähnelt. /// public static string ProfilesReloaded { get { @@ -3501,7 +3501,7 @@ public static string ProfilesReloaded { } /// - /// Looks up a localized string similar to A profile with this name already exists!. + /// Sucht eine lokalisierte Zeichenfolge, die A profile with this name already exists! ähnelt. /// public static string ProfileWithThisNameAlreadyExists { get { @@ -3510,7 +3510,7 @@ public static string ProfileWithThisNameAlreadyExists { } /// - /// Looks up a localized string similar to Protocol. + /// Sucht eine lokalisierte Zeichenfolge, die Protocol ähnelt. /// public static string Protocol { get { @@ -3519,7 +3519,7 @@ public static string Protocol { } /// - /// Looks up a localized string similar to Purple. + /// Sucht eine lokalisierte Zeichenfolge, die Purple ähnelt. /// public static string Purple { get { @@ -3528,7 +3528,7 @@ public static string Purple { } /// - /// Looks up a localized string similar to PuTTY. + /// Sucht eine lokalisierte Zeichenfolge, die PuTTY ähnelt. /// public static string PuTTY { get { @@ -3537,7 +3537,7 @@ public static string PuTTY { } /// - /// Looks up a localized string similar to PuTTY location.... + /// Sucht eine lokalisierte Zeichenfolge, die PuTTY location... ähnelt. /// public static string PuTTYLocationDots { get { @@ -3546,7 +3546,7 @@ public static string PuTTYLocationDots { } /// - /// Looks up a localized string similar to PuTTY process has ended!. + /// Sucht eine lokalisierte Zeichenfolge, die PuTTY process has ended! ähnelt. /// public static string PuTTYProcessHasEnded { get { @@ -3555,7 +3555,7 @@ public static string PuTTYProcessHasEnded { } /// - /// Looks up a localized string similar to PuTTY profile. + /// Sucht eine lokalisierte Zeichenfolge, die PuTTY profile ähnelt. /// public static string PuTTYProfile { get { @@ -3564,7 +3564,7 @@ public static string PuTTYProfile { } /// - /// Looks up a localized string similar to Query. + /// Sucht eine lokalisierte Zeichenfolge, die Query ähnelt. /// public static string Query { get { @@ -3573,7 +3573,7 @@ public static string Query { } /// - /// Looks up a localized string similar to Questions. + /// Sucht eine lokalisierte Zeichenfolge, die Questions ähnelt. /// public static string Questions { get { @@ -3582,7 +3582,7 @@ public static string Questions { } /// - /// Looks up a localized string similar to RAW. + /// Sucht eine lokalisierte Zeichenfolge, die RAW ähnelt. /// public static string RAW { get { @@ -3591,7 +3591,7 @@ public static string RAW { } /// - /// Looks up a localized string similar to Read the MAC address from the ARP cache. + /// Sucht eine lokalisierte Zeichenfolge, die Read the MAC address from the ARP cache ähnelt. /// public static string ReadTheMACAddressFromTheArpCache { get { @@ -3600,7 +3600,7 @@ public static string ReadTheMACAddressFromTheArpCache { } /// - /// Looks up a localized string similar to Received / Lost. + /// Sucht eine lokalisierte Zeichenfolge, die Received / Lost ähnelt. /// public static string ReceivedLost { get { @@ -3609,7 +3609,7 @@ public static string ReceivedLost { } /// - /// Looks up a localized string similar to Reconnect. + /// Sucht eine lokalisierte Zeichenfolge, die Reconnect ähnelt. /// public static string Reconnect { get { @@ -3618,7 +3618,7 @@ public static string Reconnect { } /// - /// Looks up a localized string similar to Recursion. + /// Sucht eine lokalisierte Zeichenfolge, die Recursion ähnelt. /// public static string Recursion { get { @@ -3627,7 +3627,7 @@ public static string Recursion { } /// - /// Looks up a localized string similar to Red. + /// Sucht eine lokalisierte Zeichenfolge, die Red ähnelt. /// public static string Red { get { @@ -3636,7 +3636,7 @@ public static string Red { } /// - /// Looks up a localized string similar to Redirect clipboard. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect clipboard ähnelt. /// public static string RedirectClipboard { get { @@ -3645,7 +3645,7 @@ public static string RedirectClipboard { } /// - /// Looks up a localized string similar to Redirect devices. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect devices ähnelt. /// public static string RedirectDevices { get { @@ -3654,7 +3654,7 @@ public static string RedirectDevices { } /// - /// Looks up a localized string similar to Redirect drives. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect drives ähnelt. /// public static string RedirectDrives { get { @@ -3663,7 +3663,7 @@ public static string RedirectDrives { } /// - /// Looks up a localized string similar to Redirect ports. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect ports ähnelt. /// public static string RedirectPorts { get { @@ -3672,7 +3672,7 @@ public static string RedirectPorts { } /// - /// Looks up a localized string similar to Redirect printers. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect printers ähnelt. /// public static string RedirectPrinters { get { @@ -3681,7 +3681,7 @@ public static string RedirectPrinters { } /// - /// Looks up a localized string similar to Redirect smartcards. + /// Sucht eine lokalisierte Zeichenfolge, die Redirect smartcards ähnelt. /// public static string RedirectSmartcards { get { @@ -3690,7 +3690,7 @@ public static string RedirectSmartcards { } /// - /// Looks up a localized string similar to Refresh. + /// Sucht eine lokalisierte Zeichenfolge, die Refresh ähnelt. /// public static string Refresh { get { @@ -3699,7 +3699,7 @@ public static string Refresh { } /// - /// Looks up a localized string similar to Remaining time. + /// Sucht eine lokalisierte Zeichenfolge, die Remaining time ähnelt. /// public static string RemainingTime { get { @@ -3708,7 +3708,7 @@ public static string RemainingTime { } /// - /// Looks up a localized string similar to Remote Desktop. + /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop ähnelt. /// public static string RemoteDesktop { get { @@ -3717,7 +3717,7 @@ public static string RemoteDesktop { } /// - /// Looks up a localized string similar to Socket closed.. + /// Sucht eine lokalisierte Zeichenfolge, die Socket closed. ähnelt. /// public static string RemoteDesktopDisconnectReason_AtClientWinsockFDCLOSE { get { @@ -3726,7 +3726,7 @@ public static string RemoteDesktopDisconnectReason_AtClientWinsockFDCLOSE { } /// - /// Looks up a localized string similar to Remote disconnect by server.. + /// Sucht eine lokalisierte Zeichenfolge, die Remote disconnect by server. ähnelt. /// public static string RemoteDesktopDisconnectReason_ByServer { get { @@ -3735,7 +3735,7 @@ public static string RemoteDesktopDisconnectReason_ByServer { } /// - /// Looks up a localized string similar to Decompression error.. + /// Sucht eine lokalisierte Zeichenfolge, die Decompression error. ähnelt. /// public static string RemoteDesktopDisconnectReason_ClientDecompressionError { get { @@ -3744,7 +3744,7 @@ public static string RemoteDesktopDisconnectReason_ClientDecompressionError { } /// - /// Looks up a localized string similar to Connection timed out.. + /// Sucht eine lokalisierte Zeichenfolge, die Connection timed out. ähnelt. /// public static string RemoteDesktopDisconnectReason_ConnectionTimedOut { get { @@ -3753,7 +3753,7 @@ public static string RemoteDesktopDisconnectReason_ConnectionTimedOut { } /// - /// Looks up a localized string similar to Decryption error.. + /// Sucht eine lokalisierte Zeichenfolge, die Decryption error. ähnelt. /// public static string RemoteDesktopDisconnectReason_DecryptionError { get { @@ -3762,7 +3762,7 @@ public static string RemoteDesktopDisconnectReason_DecryptionError { } /// - /// Looks up a localized string similar to DNS name lookup failure.. + /// Sucht eine lokalisierte Zeichenfolge, die DNS name lookup failure. ähnelt. /// public static string RemoteDesktopDisconnectReason_DNSLookupFailed { get { @@ -3771,7 +3771,7 @@ public static string RemoteDesktopDisconnectReason_DNSLookupFailed { } /// - /// Looks up a localized string similar to DNS lookup failed.. + /// Sucht eine lokalisierte Zeichenfolge, die DNS lookup failed. ähnelt. /// public static string RemoteDesktopDisconnectReason_DNSLookupFailed2 { get { @@ -3780,7 +3780,7 @@ public static string RemoteDesktopDisconnectReason_DNSLookupFailed2 { } /// - /// Looks up a localized string similar to Encryption error.. + /// Sucht eine lokalisierte Zeichenfolge, die Encryption error. ähnelt. /// public static string RemoteDesktopDisconnectReason_EncryptionError { get { @@ -3789,7 +3789,7 @@ public static string RemoteDesktopDisconnectReason_EncryptionError { } /// - /// Looks up a localized string similar to Windows Sockets gethostbyname call failed.. + /// Sucht eine lokalisierte Zeichenfolge, die Windows Sockets gethostbyname call failed. ähnelt. /// public static string RemoteDesktopDisconnectReason_GetHostByNameFailed { get { @@ -3798,7 +3798,7 @@ public static string RemoteDesktopDisconnectReason_GetHostByNameFailed { } /// - /// Looks up a localized string similar to Host not found.. + /// Sucht eine lokalisierte Zeichenfolge, die Host not found. ähnelt. /// public static string RemoteDesktopDisconnectReason_HostNotFound { get { @@ -3807,7 +3807,7 @@ public static string RemoteDesktopDisconnectReason_HostNotFound { } /// - /// Looks up a localized string similar to Internal error.. + /// Sucht eine lokalisierte Zeichenfolge, die Internal error. ähnelt. /// public static string RemoteDesktopDisconnectReason_InternalError { get { @@ -3816,7 +3816,7 @@ public static string RemoteDesktopDisconnectReason_InternalError { } /// - /// Looks up a localized string similar to Internal security error.. + /// Sucht eine lokalisierte Zeichenfolge, die Internal security error. ähnelt. /// public static string RemoteDesktopDisconnectReason_InternalSecurityError { get { @@ -3825,7 +3825,7 @@ public static string RemoteDesktopDisconnectReason_InternalSecurityError { } /// - /// Looks up a localized string similar to Internal security error.. + /// Sucht eine lokalisierte Zeichenfolge, die Internal security error. ähnelt. /// public static string RemoteDesktopDisconnectReason_InternalSecurityError2 { get { @@ -3834,7 +3834,7 @@ public static string RemoteDesktopDisconnectReason_InternalSecurityError2 { } /// - /// Looks up a localized string similar to The encryption method specified is not valid.. + /// Sucht eine lokalisierte Zeichenfolge, die The encryption method specified is not valid. ähnelt. /// public static string RemoteDesktopDisconnectReason_InvalidEncryption { get { @@ -3843,7 +3843,7 @@ public static string RemoteDesktopDisconnectReason_InvalidEncryption { } /// - /// Looks up a localized string similar to Bad IP address specified.. + /// Sucht eine lokalisierte Zeichenfolge, die Bad IP address specified. ähnelt. /// public static string RemoteDesktopDisconnectReason_InvalidIP { get { @@ -3852,7 +3852,7 @@ public static string RemoteDesktopDisconnectReason_InvalidIP { } /// - /// Looks up a localized string similar to The IP address specified is not valid.. + /// Sucht eine lokalisierte Zeichenfolge, die The IP address specified is not valid. ähnelt. /// public static string RemoteDesktopDisconnectReason_InvalidIPAddr { get { @@ -3861,7 +3861,7 @@ public static string RemoteDesktopDisconnectReason_InvalidIPAddr { } /// - /// Looks up a localized string similar to Security data is not valid.. + /// Sucht eine lokalisierte Zeichenfolge, die Security data is not valid. ähnelt. /// public static string RemoteDesktopDisconnectReason_InvalidSecurityData { get { @@ -3870,7 +3870,7 @@ public static string RemoteDesktopDisconnectReason_InvalidSecurityData { } /// - /// Looks up a localized string similar to Server security data is not valid.. + /// Sucht eine lokalisierte Zeichenfolge, die Server security data is not valid. ähnelt. /// public static string RemoteDesktopDisconnectReason_InvalidServerSecurityInfo { get { @@ -3879,7 +3879,7 @@ public static string RemoteDesktopDisconnectReason_InvalidServerSecurityInfo { } /// - /// Looks up a localized string similar to License negotiation failed.. + /// Sucht eine lokalisierte Zeichenfolge, die License negotiation failed. ähnelt. /// public static string RemoteDesktopDisconnectReason_LicensingFailed { get { @@ -3888,7 +3888,7 @@ public static string RemoteDesktopDisconnectReason_LicensingFailed { } /// - /// Looks up a localized string similar to Licensing time-out.. + /// Sucht eine lokalisierte Zeichenfolge, die Licensing time-out. ähnelt. /// public static string RemoteDesktopDisconnectReason_LicensingTimeout { get { @@ -3897,7 +3897,7 @@ public static string RemoteDesktopDisconnectReason_LicensingTimeout { } /// - /// Looks up a localized string similar to Local disconnection.. + /// Sucht eine lokalisierte Zeichenfolge, die Local disconnection. ähnelt. /// public static string RemoteDesktopDisconnectReason_LocalNotError { get { @@ -3906,7 +3906,7 @@ public static string RemoteDesktopDisconnectReason_LocalNotError { } /// - /// Looks up a localized string similar to No information is available.. + /// Sucht eine lokalisierte Zeichenfolge, die No information is available. ähnelt. /// public static string RemoteDesktopDisconnectReason_NoInfo { get { @@ -3915,7 +3915,7 @@ public static string RemoteDesktopDisconnectReason_NoInfo { } /// - /// Looks up a localized string similar to Out of memory.. + /// Sucht eine lokalisierte Zeichenfolge, die Out of memory. ähnelt. /// public static string RemoteDesktopDisconnectReason_OutOfMemory { get { @@ -3924,7 +3924,7 @@ public static string RemoteDesktopDisconnectReason_OutOfMemory { } /// - /// Looks up a localized string similar to Out of memory.. + /// Sucht eine lokalisierte Zeichenfolge, die Out of memory. ähnelt. /// public static string RemoteDesktopDisconnectReason_OutOfMemory2 { get { @@ -3933,7 +3933,7 @@ public static string RemoteDesktopDisconnectReason_OutOfMemory2 { } /// - /// Looks up a localized string similar to Out of memory.. + /// Sucht eine lokalisierte Zeichenfolge, die Out of memory. ähnelt. /// public static string RemoteDesktopDisconnectReason_OutOfMemory3 { get { @@ -3942,7 +3942,7 @@ public static string RemoteDesktopDisconnectReason_OutOfMemory3 { } /// - /// Looks up a localized string similar to Remote disconnect by user.. + /// Sucht eine lokalisierte Zeichenfolge, die Remote disconnect by user. ähnelt. /// public static string RemoteDesktopDisconnectReason_RemoteByUser { get { @@ -3951,7 +3951,7 @@ public static string RemoteDesktopDisconnectReason_RemoteByUser { } /// - /// Looks up a localized string similar to Failed to unpack server certificate.. + /// Sucht eine lokalisierte Zeichenfolge, die Failed to unpack server certificate. ähnelt. /// public static string RemoteDesktopDisconnectReason_ServerCertificateUnpackErr { get { @@ -3960,7 +3960,7 @@ public static string RemoteDesktopDisconnectReason_ServerCertificateUnpackErr { } /// - /// Looks up a localized string similar to Windows Sockets connect failed.. + /// Sucht eine lokalisierte Zeichenfolge, die Windows Sockets connect failed. ähnelt. /// public static string RemoteDesktopDisconnectReason_SocketConnectFailed { get { @@ -3969,7 +3969,7 @@ public static string RemoteDesktopDisconnectReason_SocketConnectFailed { } /// - /// Looks up a localized string similar to Windows Sockets recv call failed.. + /// Sucht eine lokalisierte Zeichenfolge, die Windows Sockets recv call failed. ähnelt. /// public static string RemoteDesktopDisconnectReason_SocketRecvFailed { get { @@ -3978,7 +3978,7 @@ public static string RemoteDesktopDisconnectReason_SocketRecvFailed { } /// - /// Looks up a localized string similar to The account is disabled.. + /// Sucht eine lokalisierte Zeichenfolge, die The account is disabled. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrAccountDisabled { get { @@ -3987,7 +3987,7 @@ public static string RemoteDesktopDisconnectReason_SslErrAccountDisabled { } /// - /// Looks up a localized string similar to The account is expired.. + /// Sucht eine lokalisierte Zeichenfolge, die The account is expired. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrAccountExpired { get { @@ -3996,7 +3996,7 @@ public static string RemoteDesktopDisconnectReason_SslErrAccountExpired { } /// - /// Looks up a localized string similar to The account is locked out.. + /// Sucht eine lokalisierte Zeichenfolge, die The account is locked out. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrAccountLockedOut { get { @@ -4005,7 +4005,7 @@ public static string RemoteDesktopDisconnectReason_SslErrAccountLockedOut { } /// - /// Looks up a localized string similar to The account is restricted.. + /// Sucht eine lokalisierte Zeichenfolge, die The account is restricted. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrAccountRestriction { get { @@ -4014,7 +4014,7 @@ public static string RemoteDesktopDisconnectReason_SslErrAccountRestriction { } /// - /// Looks up a localized string similar to The received certificate is expired.. + /// Sucht eine lokalisierte Zeichenfolge, die The received certificate is expired. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrCertExpired { get { @@ -4023,7 +4023,7 @@ public static string RemoteDesktopDisconnectReason_SslErrCertExpired { } /// - /// Looks up a localized string similar to The policy does not support delegation of credentials to the target server.. + /// Sucht eine lokalisierte Zeichenfolge, die The policy does not support delegation of credentials to the target server. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrDelegationPolicy { get { @@ -4032,7 +4032,7 @@ public static string RemoteDesktopDisconnectReason_SslErrDelegationPolicy { } /// - /// Looks up a localized string similar to The server authentication policy does not allow connection requests using saved credentials. The user must enter new credentials.. + /// Sucht eine lokalisierte Zeichenfolge, die The server authentication policy does not allow connection requests using saved credentials. The user must enter new credentials. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrFreshCredRequiredByServer { get { @@ -4041,7 +4041,7 @@ public static string RemoteDesktopDisconnectReason_SslErrFreshCredRequiredByServ } /// - /// Looks up a localized string similar to Login failed.. + /// Sucht eine lokalisierte Zeichenfolge, die Login failed. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrLogonFailure { get { @@ -4050,7 +4050,7 @@ public static string RemoteDesktopDisconnectReason_SslErrLogonFailure { } /// - /// Looks up a localized string similar to No authority could be contacted for authentication. The domain name of the authenticating party could be wrong, the domain could be unreachable, or there might have been a trust relationship failure.. + /// Sucht eine lokalisierte Zeichenfolge, die No authority could be contacted for authentication. The domain name of the authenticating party could be wrong, the domain could be unreachable, or there might have been a trust relationship failure. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrNoAuthenticatingAuthority { get { @@ -4059,7 +4059,7 @@ public static string RemoteDesktopDisconnectReason_SslErrNoAuthenticatingAuthori } /// - /// Looks up a localized string similar to The specified user has no account.. + /// Sucht eine lokalisierte Zeichenfolge, die The specified user has no account. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrNoSuchUser { get { @@ -4068,7 +4068,7 @@ public static string RemoteDesktopDisconnectReason_SslErrNoSuchUser { } /// - /// Looks up a localized string similar to The password is expired.. + /// Sucht eine lokalisierte Zeichenfolge, die The password is expired. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrPasswordExpired { get { @@ -4077,7 +4077,7 @@ public static string RemoteDesktopDisconnectReason_SslErrPasswordExpired { } /// - /// Looks up a localized string similar to The user password must be changed before logging on for the first time.. + /// Sucht eine lokalisierte Zeichenfolge, die The user password must be changed before logging on for the first time. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrPasswordMustChange { get { @@ -4086,7 +4086,7 @@ public static string RemoteDesktopDisconnectReason_SslErrPasswordMustChange { } /// - /// Looks up a localized string similar to Delegation of credentials to the target server is not allowed unless mutual authentication has been achieved.. + /// Sucht eine lokalisierte Zeichenfolge, die Delegation of credentials to the target server is not allowed unless mutual authentication has been achieved. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrPolicyNTLMOnly { get { @@ -4095,7 +4095,7 @@ public static string RemoteDesktopDisconnectReason_SslErrPolicyNTLMOnly { } /// - /// Looks up a localized string similar to The smart card is blocked.. + /// Sucht eine lokalisierte Zeichenfolge, die The smart card is blocked. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrSmartcardCardBlocked { get { @@ -4104,7 +4104,7 @@ public static string RemoteDesktopDisconnectReason_SslErrSmartcardCardBlocked { } /// - /// Looks up a localized string similar to An incorrect PIN was presented to the smart card.. + /// Sucht eine lokalisierte Zeichenfolge, die An incorrect PIN was presented to the smart card. ähnelt. /// public static string RemoteDesktopDisconnectReason_SslErrSmartcardWrongPIN { get { @@ -4113,7 +4113,7 @@ public static string RemoteDesktopDisconnectReason_SslErrSmartcardWrongPIN { } /// - /// Looks up a localized string similar to Timeout occurred.. + /// Sucht eine lokalisierte Zeichenfolge, die Timeout occurred. ähnelt. /// public static string RemoteDesktopDisconnectReason_TimeoutOccurred { get { @@ -4122,7 +4122,7 @@ public static string RemoteDesktopDisconnectReason_TimeoutOccurred { } /// - /// Looks up a localized string similar to Internal timer error.. + /// Sucht eine lokalisierte Zeichenfolge, die Internal timer error. ähnelt. /// public static string RemoteDesktopDisconnectReason_TimerError { get { @@ -4131,7 +4131,7 @@ public static string RemoteDesktopDisconnectReason_TimerError { } /// - /// Looks up a localized string similar to Windows Sockets send call failed.. + /// Sucht eine lokalisierte Zeichenfolge, die Windows Sockets send call failed. ähnelt. /// public static string RemoteDesktopDisconnectReason_WinsockSendFailed { get { @@ -4140,7 +4140,7 @@ public static string RemoteDesktopDisconnectReason_WinsockSendFailed { } /// - /// Looks up a localized string similar to Remote IP address. + /// Sucht eine lokalisierte Zeichenfolge, die Remote IP address ähnelt. /// public static string RemoteIPAddress { get { @@ -4149,7 +4149,7 @@ public static string RemoteIPAddress { } /// - /// Looks up a localized string similar to Remote port. + /// Sucht eine lokalisierte Zeichenfolge, die Remote port ähnelt. /// public static string RemotePort { get { @@ -4158,7 +4158,7 @@ public static string RemotePort { } /// - /// Looks up a localized string similar to Repeat. + /// Sucht eine lokalisierte Zeichenfolge, die Repeat ähnelt. /// public static string Repeat { get { @@ -4167,7 +4167,7 @@ public static string Repeat { } /// - /// Looks up a localized string similar to Reset. + /// Sucht eine lokalisierte Zeichenfolge, die Reset ähnelt. /// public static string Reset { get { @@ -4176,7 +4176,7 @@ public static string Reset { } /// - /// Looks up a localized string similar to Resolve CNAME on ANY requests. + /// Sucht eine lokalisierte Zeichenfolge, die Resolve CNAME on ANY requests ähnelt. /// public static string ResolveCNAMEOnANYRequests { get { @@ -4185,7 +4185,7 @@ public static string ResolveCNAMEOnANYRequests { } /// - /// Looks up a localized string similar to Resolve hostname. + /// Sucht eine lokalisierte Zeichenfolge, die Resolve hostname ähnelt. /// public static string ResolveHostname { get { @@ -4194,7 +4194,7 @@ public static string ResolveHostname { } /// - /// Looks up a localized string similar to Resolve PTR. + /// Sucht eine lokalisierte Zeichenfolge, die Resolve PTR ähnelt. /// public static string ResolvePTR { get { @@ -4203,7 +4203,7 @@ public static string ResolvePTR { } /// - /// Looks up a localized string similar to Resources. + /// Sucht eine lokalisierte Zeichenfolge, die Resources ähnelt. /// public static string Resources { get { @@ -4212,7 +4212,7 @@ public static string Resources { } /// - /// Looks up a localized string similar to Responses. + /// Sucht eine lokalisierte Zeichenfolge, die Responses ähnelt. /// public static string Responses { get { @@ -4221,7 +4221,7 @@ public static string Responses { } /// - /// Looks up a localized string similar to Restart now. + /// Sucht eine lokalisierte Zeichenfolge, die Restart now ähnelt. /// public static string RestartNow { get { @@ -4230,7 +4230,7 @@ public static string RestartNow { } /// - /// Looks up a localized string similar to Restart required. + /// Sucht eine lokalisierte Zeichenfolge, die Restart required ähnelt. /// public static string RestartRequired { get { @@ -4239,7 +4239,7 @@ public static string RestartRequired { } /// - /// Looks up a localized string similar to Some settings are applied only after restarting the application!. + /// Sucht eine lokalisierte Zeichenfolge, die Some settings are applied only after restarting the application! ähnelt. /// public static string RestartRequiredSettingsChangedMessage { get { @@ -4248,7 +4248,7 @@ public static string RestartRequiredSettingsChangedMessage { } /// - /// Looks up a localized string similar to Restart the application so that all settings are applied!. + /// Sucht eine lokalisierte Zeichenfolge, die Restart the application so that all settings are applied! ähnelt. /// public static string RestartTheApplicationSoThatAllChangesAreApplied { get { @@ -4257,7 +4257,7 @@ public static string RestartTheApplicationSoThatAllChangesAreApplied { } /// - /// Looks up a localized string similar to Result. + /// Sucht eine lokalisierte Zeichenfolge, die Result ähnelt. /// public static string Result { get { @@ -4266,7 +4266,7 @@ public static string Result { } /// - /// Looks up a localized string similar to Rlogin. + /// Sucht eine lokalisierte Zeichenfolge, die Rlogin ähnelt. /// public static string Rlogin { get { @@ -4275,7 +4275,7 @@ public static string Rlogin { } /// - /// Looks up a localized string similar to Route. + /// Sucht eine lokalisierte Zeichenfolge, die Route ähnelt. /// public static string Route { get { @@ -4284,7 +4284,7 @@ public static string Route { } /// - /// Looks up a localized string similar to Save. + /// Sucht eine lokalisierte Zeichenfolge, die Save ähnelt. /// public static string Save { get { @@ -4293,7 +4293,7 @@ public static string Save { } /// - /// Looks up a localized string similar to Save settings in the application folder. + /// Sucht eine lokalisierte Zeichenfolge, die Save settings in the application folder ähnelt. /// public static string SaveSettingsInApplicationFolder { get { @@ -4302,7 +4302,7 @@ public static string SaveSettingsInApplicationFolder { } /// - /// Looks up a localized string similar to Scan. + /// Sucht eine lokalisierte Zeichenfolge, die Scan ähnelt. /// public static string Scan { get { @@ -4311,7 +4311,7 @@ public static string Scan { } /// - /// Looks up a localized string similar to Scanned. + /// Sucht eine lokalisierte Zeichenfolge, die Scanned ähnelt. /// public static string Scanned { get { @@ -4320,7 +4320,7 @@ public static string Scanned { } /// - /// Looks up a localized string similar to Search. + /// Sucht eine lokalisierte Zeichenfolge, die Search ähnelt. /// public static string Search { get { @@ -4329,7 +4329,7 @@ public static string Search { } /// - /// Looks up a localized string similar to Search.... + /// Sucht eine lokalisierte Zeichenfolge, die Search... ähnelt. /// public static string SearchDots { get { @@ -4338,7 +4338,7 @@ public static string SearchDots { } /// - /// Looks up a localized string similar to Searched application not found!. + /// Sucht eine lokalisierte Zeichenfolge, die Searched application not found! ähnelt. /// public static string SearchedApplicationNotFound { get { @@ -4347,7 +4347,7 @@ public static string SearchedApplicationNotFound { } /// - /// Looks up a localized string similar to Searched language not found!. + /// Sucht eine lokalisierte Zeichenfolge, die Searched language not found! ähnelt. /// public static string SearchedLanguageNotFound { get { @@ -4356,7 +4356,7 @@ public static string SearchedLanguageNotFound { } /// - /// Looks up a localized string similar to Searched setting not found!. + /// Sucht eine lokalisierte Zeichenfolge, die Searched setting not found! ähnelt. /// public static string SearchedSettingNotFound { get { @@ -4365,7 +4365,7 @@ public static string SearchedSettingNotFound { } /// - /// Looks up a localized string similar to Secondary DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die Secondary DNS server ähnelt. /// public static string SecondaryDNSServer { get { @@ -4374,7 +4374,7 @@ public static string SecondaryDNSServer { } /// - /// Looks up a localized string similar to Security. + /// Sucht eine lokalisierte Zeichenfolge, die Security ähnelt. /// public static string Security { get { @@ -4383,7 +4383,7 @@ public static string Security { } /// - /// Looks up a localized string similar to Select a profile.... + /// Sucht eine lokalisierte Zeichenfolge, die Select a profile... ähnelt. /// public static string SelectAProfileDots { get { @@ -4392,7 +4392,7 @@ public static string SelectAProfileDots { } /// - /// Looks up a localized string similar to Select a screen resolution. + /// Sucht eine lokalisierte Zeichenfolge, die Select a screen resolution ähnelt. /// public static string SelectAScreenResolution { get { @@ -4401,7 +4401,7 @@ public static string SelectAScreenResolution { } /// - /// Looks up a localized string similar to The selected settings are overwritten.. + /// Sucht eine lokalisierte Zeichenfolge, die The selected settings are overwritten. ähnelt. /// public static string SelectedSettingsAreOverwritten { get { @@ -4410,7 +4410,7 @@ public static string SelectedSettingsAreOverwritten { } /// - /// Looks up a localized string similar to The selected settings are reset.. + /// Sucht eine lokalisierte Zeichenfolge, die The selected settings are reset. ähnelt. /// public static string SelectedSettingsAreReset { get { @@ -4419,7 +4419,7 @@ public static string SelectedSettingsAreReset { } /// - /// Looks up a localized string similar to Select the settings you want to export:. + /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to export: ähnelt. /// public static string SelectTheSettingsYouWantToExport { get { @@ -4428,7 +4428,7 @@ public static string SelectTheSettingsYouWantToExport { } /// - /// Looks up a localized string similar to Select the settings you want to import:. + /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to import: ähnelt. /// public static string SelectTheSettingsYouWantToImport { get { @@ -4437,7 +4437,7 @@ public static string SelectTheSettingsYouWantToImport { } /// - /// Looks up a localized string similar to Select the settings you want to reset:. + /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to reset: ähnelt. /// public static string SelectTheSettingsYouWantToReset { get { @@ -4446,7 +4446,7 @@ public static string SelectTheSettingsYouWantToReset { } /// - /// Looks up a localized string similar to Send. + /// Sucht eine lokalisierte Zeichenfolge, die Send ähnelt. /// public static string Send { get { @@ -4455,7 +4455,7 @@ public static string Send { } /// - /// Looks up a localized string similar to Serial. + /// Sucht eine lokalisierte Zeichenfolge, die Serial ähnelt. /// public static string Serial { get { @@ -4464,7 +4464,7 @@ public static string Serial { } /// - /// Looks up a localized string similar to SerialLine. + /// Sucht eine lokalisierte Zeichenfolge, die SerialLine ähnelt. /// public static string SerialLine { get { @@ -4473,7 +4473,7 @@ public static string SerialLine { } /// - /// Looks up a localized string similar to Service. + /// Sucht eine lokalisierte Zeichenfolge, die Service ähnelt. /// public static string Service { get { @@ -4482,7 +4482,7 @@ public static string Service { } /// - /// Looks up a localized string similar to Set Master Password. + /// Sucht eine lokalisierte Zeichenfolge, die Set Master Password ähnelt. /// public static string SetMasterPassword { get { @@ -4491,7 +4491,7 @@ public static string SetMasterPassword { } /// - /// Looks up a localized string similar to Set Master Password.... + /// Sucht eine lokalisierte Zeichenfolge, die Set Master Password... ähnelt. /// public static string SetMasterPasswordDots { get { @@ -4500,7 +4500,7 @@ public static string SetMasterPasswordDots { } /// - /// Looks up a localized string similar to Settings. + /// Sucht eine lokalisierte Zeichenfolge, die Settings ähnelt. /// public static string Settings { get { @@ -4509,7 +4509,7 @@ public static string Settings { } /// - /// Looks up a localized string similar to The settings file found was corrupted or is not compatible with this version. All settings have been reset (profiles and credentials are not affected!). + /// Sucht eine lokalisierte Zeichenfolge, die The settings file found was corrupted or is not compatible with this version. All settings have been reset (profiles and credentials are not affected!) ähnelt. /// public static string SettingsFileFoundWasCorruptOrNotCompatibleMessage { get { @@ -4518,7 +4518,7 @@ public static string SettingsFileFoundWasCorruptOrNotCompatibleMessage { } /// - /// Looks up a localized string similar to Settings have been reset!. + /// Sucht eine lokalisierte Zeichenfolge, die Settings have been reset! ähnelt. /// public static string SettingsHaveBeenReset { get { @@ -4527,7 +4527,7 @@ public static string SettingsHaveBeenReset { } /// - /// Looks up a localized string similar to Settings successfully exported!. + /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully exported! ähnelt. /// public static string SettingsSuccessfullyExported { get { @@ -4536,7 +4536,7 @@ public static string SettingsSuccessfullyExported { } /// - /// Looks up a localized string similar to Settings successfully imported!. + /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully imported! ähnelt. /// public static string SettingsSuccessfullyImported { get { @@ -4545,7 +4545,7 @@ public static string SettingsSuccessfullyImported { } /// - /// Looks up a localized string similar to Settings successfully reset!. + /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully reset! ähnelt. /// public static string SettingsSuccessfullyReset { get { @@ -4554,7 +4554,7 @@ public static string SettingsSuccessfullyReset { } /// - /// Looks up a localized string similar to Show. + /// Sucht eine lokalisierte Zeichenfolge, die Show ähnelt. /// public static string Show { get { @@ -4563,7 +4563,7 @@ public static string Show { } /// - /// Looks up a localized string similar to Show closed ports. + /// Sucht eine lokalisierte Zeichenfolge, die Show closed ports ähnelt. /// public static string ShowClosedPorts { get { @@ -4572,7 +4572,7 @@ public static string ShowClosedPorts { } /// - /// Looks up a localized string similar to Show current application title. + /// Sucht eine lokalisierte Zeichenfolge, die Show current application title ähnelt. /// public static string ShowCurrentApplicationTitle { get { @@ -4581,7 +4581,7 @@ public static string ShowCurrentApplicationTitle { } /// - /// Looks up a localized string similar to Show local licenses. + /// Sucht eine lokalisierte Zeichenfolge, die Show local licenses ähnelt. /// public static string ShowLocalLicenses { get { @@ -4590,7 +4590,7 @@ public static string ShowLocalLicenses { } /// - /// Looks up a localized string similar to Show only most common query types. + /// Sucht eine lokalisierte Zeichenfolge, die Show only most common query types ähnelt. /// public static string ShowOnlyMostCommonQueryTypes { get { @@ -4599,7 +4599,7 @@ public static string ShowOnlyMostCommonQueryTypes { } /// - /// Looks up a localized string similar to Show scan result for all IP addresses. + /// Sucht eine lokalisierte Zeichenfolge, die Show scan result for all IP addresses ähnelt. /// public static string ShowScanResultForAllIPAddresses { get { @@ -4608,7 +4608,7 @@ public static string ShowScanResultForAllIPAddresses { } /// - /// Looks up a localized string similar to Show statistics. + /// Sucht eine lokalisierte Zeichenfolge, die Show statistics ähnelt. /// public static string ShowStatistics { get { @@ -4617,7 +4617,7 @@ public static string ShowStatistics { } /// - /// Looks up a localized string similar to Show the following application on startup:. + /// Sucht eine lokalisierte Zeichenfolge, die Show the following application on startup: ähnelt. /// public static string ShowTheFollowingApplicationOnStartup { get { @@ -4626,7 +4626,7 @@ public static string ShowTheFollowingApplicationOnStartup { } /// - /// Looks up a localized string similar to Sienna. + /// Sucht eine lokalisierte Zeichenfolge, die Sienna ähnelt. /// public static string Sienna { get { @@ -4635,7 +4635,7 @@ public static string Sienna { } /// - /// Looks up a localized string similar to A powerful tool for managing networks and troubleshoot network problems!. + /// Sucht eine lokalisierte Zeichenfolge, die A powerful tool for managing networks and troubleshoot network problems! ähnelt. /// public static string Slogan { get { @@ -4644,7 +4644,7 @@ public static string Slogan { } /// - /// Looks up a localized string similar to SNMP. + /// Sucht eine lokalisierte Zeichenfolge, die SNMP ähnelt. /// public static string SNMP { get { @@ -4653,7 +4653,7 @@ public static string SNMP { } /// - /// Looks up a localized string similar to Socket. + /// Sucht eine lokalisierte Zeichenfolge, die Socket ähnelt. /// public static string Socket { get { @@ -4662,7 +4662,7 @@ public static string Socket { } /// - /// Looks up a localized string similar to Spaces are not allowed!. + /// Sucht eine lokalisierte Zeichenfolge, die Spaces are not allowed! ähnelt. /// public static string SpacesAreNotAllowed { get { @@ -4671,7 +4671,7 @@ public static string SpacesAreNotAllowed { } /// - /// Looks up a localized string similar to Speed. + /// Sucht eine lokalisierte Zeichenfolge, die Speed ähnelt. /// public static string Speed { get { @@ -4680,7 +4680,7 @@ public static string Speed { } /// - /// Looks up a localized string similar to SSH. + /// Sucht eine lokalisierte Zeichenfolge, die SSH ähnelt. /// public static string SSH { get { @@ -4689,7 +4689,7 @@ public static string SSH { } /// - /// Looks up a localized string similar to Start minimized in tray. + /// Sucht eine lokalisierte Zeichenfolge, die Start minimized in tray ähnelt. /// public static string StartMinimizedInTray { get { @@ -4698,7 +4698,7 @@ public static string StartMinimizedInTray { } /// - /// Looks up a localized string similar to Start time. + /// Sucht eine lokalisierte Zeichenfolge, die Start time ähnelt. /// public static string StartTime { get { @@ -4707,7 +4707,7 @@ public static string StartTime { } /// - /// Looks up a localized string similar to Start with Windows (current user). + /// Sucht eine lokalisierte Zeichenfolge, die Start with Windows (current user) ähnelt. /// public static string StartWithWindows { get { @@ -4716,7 +4716,7 @@ public static string StartWithWindows { } /// - /// Looks up a localized string similar to State. + /// Sucht eine lokalisierte Zeichenfolge, die State ähnelt. /// public static string State { get { @@ -4725,7 +4725,7 @@ public static string State { } /// - /// Looks up a localized string similar to Static IPv4 address. + /// Sucht eine lokalisierte Zeichenfolge, die Static IPv4 address ähnelt. /// public static string StaticIPv4Address { get { @@ -4734,7 +4734,7 @@ public static string StaticIPv4Address { } /// - /// Looks up a localized string similar to Static IPv4 DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die Static IPv4 DNS server ähnelt. /// public static string StaticIPv4DNSServer { get { @@ -4743,7 +4743,7 @@ public static string StaticIPv4DNSServer { } /// - /// Looks up a localized string similar to Statistics. + /// Sucht eine lokalisierte Zeichenfolge, die Statistics ähnelt. /// public static string Statistics { get { @@ -4752,7 +4752,7 @@ public static string Statistics { } /// - /// Looks up a localized string similar to Status. + /// Sucht eine lokalisierte Zeichenfolge, die Status ähnelt. /// public static string Status { get { @@ -4761,7 +4761,7 @@ public static string Status { } /// - /// Looks up a localized string similar to Steel. + /// Sucht eine lokalisierte Zeichenfolge, die Steel ähnelt. /// public static string Steel { get { @@ -4770,7 +4770,7 @@ public static string Steel { } /// - /// Looks up a localized string similar to Subnet. + /// Sucht eine lokalisierte Zeichenfolge, die Subnet ähnelt. /// public static string Subnet { get { @@ -4779,7 +4779,7 @@ public static string Subnet { } /// - /// Looks up a localized string similar to Subnet 1. + /// Sucht eine lokalisierte Zeichenfolge, die Subnet 1 ähnelt. /// public static string Subnet1 { get { @@ -4788,7 +4788,7 @@ public static string Subnet1 { } /// - /// Looks up a localized string similar to Subnet 2. + /// Sucht eine lokalisierte Zeichenfolge, die Subnet 2 ähnelt. /// public static string Subnet2 { get { @@ -4797,7 +4797,7 @@ public static string Subnet2 { } /// - /// Looks up a localized string similar to Subnet Calculator. + /// Sucht eine lokalisierte Zeichenfolge, die Subnet Calculator ähnelt. /// public static string SubnetCalculator { get { @@ -4806,7 +4806,7 @@ public static string SubnetCalculator { } /// - /// Looks up a localized string similar to Subnetmask. + /// Sucht eine lokalisierte Zeichenfolge, die Subnetmask ähnelt. /// public static string Subnetmask { get { @@ -4815,7 +4815,7 @@ public static string Subnetmask { } /// - /// Looks up a localized string similar to Subnetmask or CIDR. + /// Sucht eine lokalisierte Zeichenfolge, die Subnetmask or CIDR ähnelt. /// public static string SubnetmaskOrCIDR { get { @@ -4824,7 +4824,7 @@ public static string SubnetmaskOrCIDR { } /// - /// Looks up a localized string similar to Subnetting. + /// Sucht eine lokalisierte Zeichenfolge, die Subnetting ähnelt. /// public static string Subnetting { get { @@ -4833,7 +4833,7 @@ public static string Subnetting { } /// - /// Looks up a localized string similar to Success!. + /// Sucht eine lokalisierte Zeichenfolge, die Success! ähnelt. /// public static string Success { get { @@ -4842,7 +4842,7 @@ public static string Success { } /// - /// Looks up a localized string similar to Supernetting. + /// Sucht eine lokalisierte Zeichenfolge, die Supernetting ähnelt. /// public static string Supernetting { get { @@ -4851,7 +4851,7 @@ public static string Supernetting { } /// - /// Looks up a localized string similar to Tags. + /// Sucht eine lokalisierte Zeichenfolge, die Tags ähnelt. /// public static string Tags { get { @@ -4860,7 +4860,7 @@ public static string Tags { } /// - /// Looks up a localized string similar to Taupe. + /// Sucht eine lokalisierte Zeichenfolge, die Taupe ähnelt. /// public static string Taupe { get { @@ -4869,7 +4869,7 @@ public static string Taupe { } /// - /// Looks up a localized string similar to Closed. + /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. /// public static string TcpState_Closed { get { @@ -4878,7 +4878,7 @@ public static string TcpState_Closed { } /// - /// Looks up a localized string similar to CloseWait. + /// Sucht eine lokalisierte Zeichenfolge, die CloseWait ähnelt. /// public static string TcpState_CloseWait { get { @@ -4887,7 +4887,7 @@ public static string TcpState_CloseWait { } /// - /// Looks up a localized string similar to Closing. + /// Sucht eine lokalisierte Zeichenfolge, die Closing ähnelt. /// public static string TcpState_Closing { get { @@ -4896,7 +4896,7 @@ public static string TcpState_Closing { } /// - /// Looks up a localized string similar to DeleteTcb. + /// Sucht eine lokalisierte Zeichenfolge, die DeleteTcb ähnelt. /// public static string TcpState_DeleteTcb { get { @@ -4905,7 +4905,7 @@ public static string TcpState_DeleteTcb { } /// - /// Looks up a localized string similar to Established. + /// Sucht eine lokalisierte Zeichenfolge, die Established ähnelt. /// public static string TcpState_Established { get { @@ -4914,7 +4914,7 @@ public static string TcpState_Established { } /// - /// Looks up a localized string similar to FinWait1. + /// Sucht eine lokalisierte Zeichenfolge, die FinWait1 ähnelt. /// public static string TcpState_FinWait1 { get { @@ -4923,7 +4923,7 @@ public static string TcpState_FinWait1 { } /// - /// Looks up a localized string similar to FinWait2. + /// Sucht eine lokalisierte Zeichenfolge, die FinWait2 ähnelt. /// public static string TcpState_FinWait2 { get { @@ -4932,7 +4932,7 @@ public static string TcpState_FinWait2 { } /// - /// Looks up a localized string similar to LastAck. + /// Sucht eine lokalisierte Zeichenfolge, die LastAck ähnelt. /// public static string TcpState_LastAck { get { @@ -4941,7 +4941,7 @@ public static string TcpState_LastAck { } /// - /// Looks up a localized string similar to Listen. + /// Sucht eine lokalisierte Zeichenfolge, die Listen ähnelt. /// public static string TcpState_Listen { get { @@ -4950,7 +4950,7 @@ public static string TcpState_Listen { } /// - /// Looks up a localized string similar to SynReceived. + /// Sucht eine lokalisierte Zeichenfolge, die SynReceived ähnelt. /// public static string TcpState_SynReceived { get { @@ -4959,7 +4959,7 @@ public static string TcpState_SynReceived { } /// - /// Looks up a localized string similar to SynSent. + /// Sucht eine lokalisierte Zeichenfolge, die SynSent ähnelt. /// public static string TcpState_SynSent { get { @@ -4968,7 +4968,7 @@ public static string TcpState_SynSent { } /// - /// Looks up a localized string similar to TimeWait. + /// Sucht eine lokalisierte Zeichenfolge, die TimeWait ähnelt. /// public static string TcpState_TimeWait { get { @@ -4977,7 +4977,7 @@ public static string TcpState_TimeWait { } /// - /// Looks up a localized string similar to Unkown. + /// Sucht eine lokalisierte Zeichenfolge, die Unkown ähnelt. /// public static string TcpState_Unknown { get { @@ -4986,7 +4986,7 @@ public static string TcpState_Unknown { } /// - /// Looks up a localized string similar to Teal. + /// Sucht eine lokalisierte Zeichenfolge, die Teal ähnelt. /// public static string Teal { get { @@ -4995,7 +4995,7 @@ public static string Teal { } /// - /// Looks up a localized string similar to Telnet. + /// Sucht eine lokalisierte Zeichenfolge, die Telnet ähnelt. /// public static string Telnet { get { @@ -5004,7 +5004,7 @@ public static string Telnet { } /// - /// Looks up a localized string similar to The application can be started without parameters!. + /// Sucht eine lokalisierte Zeichenfolge, die The application can be started without parameters! ähnelt. /// public static string TheApplicationCanBeStartedWithoutParameters { get { @@ -5013,7 +5013,7 @@ public static string TheApplicationCanBeStartedWithoutParameters { } /// - /// Looks up a localized string similar to The following hostnames could not be resolved:. + /// Sucht eine lokalisierte Zeichenfolge, die The following hostnames could not be resolved: ähnelt. /// public static string TheFollowingHostnamesCouldNotBeResolved { get { @@ -5022,7 +5022,7 @@ public static string TheFollowingHostnamesCouldNotBeResolved { } /// - /// Looks up a localized string similar to The following parameters are available:. + /// Sucht eine lokalisierte Zeichenfolge, die The following parameters are available: ähnelt. /// public static string TheFollowingParametersAreAvailable { get { @@ -5031,7 +5031,7 @@ public static string TheFollowingParametersAreAvailable { } /// - /// Looks up a localized string similar to The following parameters can not be processed:. + /// Sucht eine lokalisierte Zeichenfolge, die The following parameters can not be processed: ähnelt. /// public static string TheFollowingParametersCanNotBeProcesses { get { @@ -5040,7 +5040,7 @@ public static string TheFollowingParametersCanNotBeProcesses { } /// - /// Looks up a localized string similar to Theme. + /// Sucht eine lokalisierte Zeichenfolge, die Theme ähnelt. /// public static string Theme { get { @@ -5049,7 +5049,7 @@ public static string Theme { } /// - /// Looks up a localized string similar to The process can take up some time and resources (CPU / RAM).. + /// Sucht eine lokalisierte Zeichenfolge, die The process can take up some time and resources (CPU / RAM). ähnelt. /// public static string TheProcessCanTakeUpSomeTimeAndResources { get { @@ -5058,7 +5058,7 @@ public static string TheProcessCanTakeUpSomeTimeAndResources { } /// - /// Looks up a localized string similar to The settings location is not affected. + /// Sucht eine lokalisierte Zeichenfolge, die The settings location is not affected ähnelt. /// public static string TheSettingsLocationIsNotAffected { get { @@ -5067,7 +5067,7 @@ public static string TheSettingsLocationIsNotAffected { } /// - /// Looks up a localized string similar to Threads. + /// Sucht eine lokalisierte Zeichenfolge, die Threads ähnelt. /// public static string Threads { get { @@ -5076,7 +5076,7 @@ public static string Threads { } /// - /// Looks up a localized string similar to Time. + /// Sucht eine lokalisierte Zeichenfolge, die Time ähnelt. /// public static string Time { get { @@ -5085,7 +5085,7 @@ public static string Time { } /// - /// Looks up a localized string similar to Time 1. + /// Sucht eine lokalisierte Zeichenfolge, die Time 1 ähnelt. /// public static string Time1 { get { @@ -5094,7 +5094,7 @@ public static string Time1 { } /// - /// Looks up a localized string similar to Time 2. + /// Sucht eine lokalisierte Zeichenfolge, die Time 2 ähnelt. /// public static string Time2 { get { @@ -5103,7 +5103,7 @@ public static string Time2 { } /// - /// Looks up a localized string similar to Time 3. + /// Sucht eine lokalisierte Zeichenfolge, die Time 3 ähnelt. /// public static string Time3 { get { @@ -5112,7 +5112,7 @@ public static string Time3 { } /// - /// Looks up a localized string similar to Timeout. + /// Sucht eine lokalisierte Zeichenfolge, die Timeout ähnelt. /// public static string Timeout { get { @@ -5121,7 +5121,7 @@ public static string Timeout { } /// - /// Looks up a localized string similar to Timeout (ms). + /// Sucht eine lokalisierte Zeichenfolge, die Timeout (ms) ähnelt. /// public static string TimeoutMS { get { @@ -5130,7 +5130,7 @@ public static string TimeoutMS { } /// - /// Looks up a localized string similar to Timeout on SNMP query.. + /// Sucht eine lokalisierte Zeichenfolge, die Timeout on SNMP query. ähnelt. /// public static string TimeoutOnSNMPQuery { get { @@ -5139,7 +5139,7 @@ public static string TimeoutOnSNMPQuery { } /// - /// Looks up a localized string similar to Timeout when querying the DNS server with the IP address "{0}"!. + /// Sucht eine lokalisierte Zeichenfolge, die Timeout when querying the DNS server with the IP address "{0}"! ähnelt. /// public static string TimeoutWhenQueryingDNSServerMessage { get { @@ -5148,7 +5148,7 @@ public static string TimeoutWhenQueryingDNSServerMessage { } /// - /// Looks up a localized string similar to Timestamp. + /// Sucht eine lokalisierte Zeichenfolge, die Timestamp ähnelt. /// public static string Timestamp { get { @@ -5157,7 +5157,7 @@ public static string Timestamp { } /// - /// Looks up a localized string similar to Time to wait between each ping. + /// Sucht eine lokalisierte Zeichenfolge, die Time to wait between each ping ähnelt. /// public static string TimeToWaitBetweenEachPing { get { @@ -5166,7 +5166,7 @@ public static string TimeToWaitBetweenEachPing { } /// - /// Looks up a localized string similar to Hour(s). + /// Sucht eine lokalisierte Zeichenfolge, die Hour(s) ähnelt. /// public static string TimeUnit_Hour { get { @@ -5175,7 +5175,7 @@ public static string TimeUnit_Hour { } /// - /// Looks up a localized string similar to Minute(s). + /// Sucht eine lokalisierte Zeichenfolge, die Minute(s) ähnelt. /// public static string TimeUnit_Minute { get { @@ -5184,7 +5184,7 @@ public static string TimeUnit_Minute { } /// - /// Looks up a localized string similar to Second(s). + /// Sucht eine lokalisierte Zeichenfolge, die Second(s) ähnelt. /// public static string TimeUnit_Second { get { @@ -5193,7 +5193,7 @@ public static string TimeUnit_Second { } /// - /// Looks up a localized string similar to Trace. + /// Sucht eine lokalisierte Zeichenfolge, die Trace ähnelt. /// public static string Trace { get { @@ -5202,7 +5202,7 @@ public static string Trace { } /// - /// Looks up a localized string similar to Traceroute. + /// Sucht eine lokalisierte Zeichenfolge, die Traceroute ähnelt. /// public static string Traceroute { get { @@ -5211,7 +5211,7 @@ public static string Traceroute { } /// - /// Looks up a localized string similar to Transparency. + /// Sucht eine lokalisierte Zeichenfolge, die Transparency ähnelt. /// public static string Transparency { get { @@ -5220,7 +5220,7 @@ public static string Transparency { } /// - /// Looks up a localized string similar to Tray. + /// Sucht eine lokalisierte Zeichenfolge, die Tray ähnelt. /// public static string Tray { get { @@ -5229,7 +5229,7 @@ public static string Tray { } /// - /// Looks up a localized string similar to TTL. + /// Sucht eine lokalisierte Zeichenfolge, die TTL ähnelt. /// public static string TTL { get { @@ -5238,7 +5238,7 @@ public static string TTL { } /// - /// Looks up a localized string similar to Type. + /// Sucht eine lokalisierte Zeichenfolge, die Type ähnelt. /// public static string Type { get { @@ -5247,7 +5247,7 @@ public static string Type { } /// - /// Looks up a localized string similar to Unkown error!. + /// Sucht eine lokalisierte Zeichenfolge, die Unkown error! ähnelt. /// public static string UnkownError { get { @@ -5256,7 +5256,7 @@ public static string UnkownError { } /// - /// Looks up a localized string similar to Untray / Bring window to front. + /// Sucht eine lokalisierte Zeichenfolge, die Untray / Bring window to front ähnelt. /// public static string UntrayBringWindowToFront { get { @@ -5265,7 +5265,7 @@ public static string UntrayBringWindowToFront { } /// - /// Looks up a localized string similar to Update. + /// Sucht eine lokalisierte Zeichenfolge, die Update ähnelt. /// public static string Update { get { @@ -5274,7 +5274,7 @@ public static string Update { } /// - /// Looks up a localized string similar to URL. + /// Sucht eine lokalisierte Zeichenfolge, die URL ähnelt. /// public static string URL { get { @@ -5283,7 +5283,7 @@ public static string URL { } /// - /// Looks up a localized string similar to Use credentials. + /// Sucht eine lokalisierte Zeichenfolge, die Use credentials ähnelt. /// public static string UseCredentials { get { @@ -5292,7 +5292,7 @@ public static string UseCredentials { } /// - /// Looks up a localized string similar to Use the current view size as the screen size. + /// Sucht eine lokalisierte Zeichenfolge, die Use the current view size as the screen size ähnelt. /// public static string UseCurrentViewSize { get { @@ -5301,7 +5301,7 @@ public static string UseCurrentViewSize { } /// - /// Looks up a localized string similar to Use custom DNS server. + /// Sucht eine lokalisierte Zeichenfolge, die Use custom DNS server ähnelt. /// public static string UseCustomDNSServer { get { @@ -5310,7 +5310,7 @@ public static string UseCustomDNSServer { } /// - /// Looks up a localized string similar to Use custom DNS suffix. + /// Sucht eine lokalisierte Zeichenfolge, die Use custom DNS suffix ähnelt. /// public static string UseCustomDNSSuffix { get { @@ -5319,7 +5319,7 @@ public static string UseCustomDNSSuffix { } /// - /// Looks up a localized string similar to Use resolver cache. + /// Sucht eine lokalisierte Zeichenfolge, die Use resolver cache ähnelt. /// public static string UseResolverCache { get { @@ -5328,7 +5328,7 @@ public static string UseResolverCache { } /// - /// Looks up a localized string similar to User interface locked!. + /// Sucht eine lokalisierte Zeichenfolge, die User interface locked! ähnelt. /// public static string UserInterfaceLocked { get { @@ -5337,7 +5337,7 @@ public static string UserInterfaceLocked { } /// - /// Looks up a localized string similar to Username. + /// Sucht eine lokalisierte Zeichenfolge, die Username ähnelt. /// public static string Username { get { @@ -5346,7 +5346,7 @@ public static string Username { } /// - /// Looks up a localized string similar to Use the following DNS server addresses:. + /// Sucht eine lokalisierte Zeichenfolge, die Use the following DNS server addresses: ähnelt. /// public static string UseTheFollowingDNSServerAddresses { get { @@ -5355,7 +5355,7 @@ public static string UseTheFollowingDNSServerAddresses { } /// - /// Looks up a localized string similar to Use the following IP address:. + /// Sucht eine lokalisierte Zeichenfolge, die Use the following IP address: ähnelt. /// public static string UseTheFollowingIPAddress { get { @@ -5364,7 +5364,7 @@ public static string UseTheFollowingIPAddress { } /// - /// Looks up a localized string similar to v1/v2c. + /// Sucht eine lokalisierte Zeichenfolge, die v1/v2c ähnelt. /// public static string v1v2c { get { @@ -5373,7 +5373,7 @@ public static string v1v2c { } /// - /// Looks up a localized string similar to v3. + /// Sucht eine lokalisierte Zeichenfolge, die v3 ähnelt. /// public static string v3 { get { @@ -5382,7 +5382,7 @@ public static string v3 { } /// - /// Looks up a localized string similar to Validate. + /// Sucht eine lokalisierte Zeichenfolge, die Validate ähnelt. /// public static string Validate { get { @@ -5391,7 +5391,7 @@ public static string Validate { } /// - /// Looks up a localized string similar to Validation failed!. + /// Sucht eine lokalisierte Zeichenfolge, die Validation failed! ähnelt. /// public static string ValidationFailed { get { @@ -5400,7 +5400,7 @@ public static string ValidationFailed { } /// - /// Looks up a localized string similar to Vendor. + /// Sucht eine lokalisierte Zeichenfolge, die Vendor ähnelt. /// public static string Vendor { get { @@ -5409,7 +5409,7 @@ public static string Vendor { } /// - /// Looks up a localized string similar to Version. + /// Sucht eine lokalisierte Zeichenfolge, die Version ähnelt. /// public static string Version { get { @@ -5418,7 +5418,7 @@ public static string Version { } /// - /// Looks up a localized string similar to Version {0} is available!. + /// Sucht eine lokalisierte Zeichenfolge, die Version {0} is available! ähnelt. /// public static string VersionxxIsAvailable { get { @@ -5427,7 +5427,7 @@ public static string VersionxxIsAvailable { } /// - /// Looks up a localized string similar to Violet. + /// Sucht eine lokalisierte Zeichenfolge, die Violet ähnelt. /// public static string Violet { get { @@ -5436,7 +5436,7 @@ public static string Violet { } /// - /// Looks up a localized string similar to Visible applications. + /// Sucht eine lokalisierte Zeichenfolge, die Visible applications ähnelt. /// public static string VisibleApplications { get { @@ -5445,7 +5445,7 @@ public static string VisibleApplications { } /// - /// Looks up a localized string similar to Visible applications in the bar:. + /// Sucht eine lokalisierte Zeichenfolge, die Visible applications in the bar: ähnelt. /// public static string VisibleApplicationsInTheBar { get { @@ -5454,7 +5454,7 @@ public static string VisibleApplicationsInTheBar { } /// - /// Looks up a localized string similar to Wake on LAN. + /// Sucht eine lokalisierte Zeichenfolge, die Wake on LAN ähnelt. /// public static string WakeOnLAN { get { @@ -5463,7 +5463,7 @@ public static string WakeOnLAN { } /// - /// Looks up a localized string similar to Wake up. + /// Sucht eine lokalisierte Zeichenfolge, die Wake up ähnelt. /// public static string WakeUp { get { @@ -5472,7 +5472,7 @@ public static string WakeUp { } /// - /// Looks up a localized string similar to Walk mode. + /// Sucht eine lokalisierte Zeichenfolge, die Walk mode ähnelt. /// public static string WalkMode { get { @@ -5481,7 +5481,7 @@ public static string WalkMode { } /// - /// Looks up a localized string similar to Some graphics cards / drivers have problems maximizing the application when transparency is enabled. The function must be disabled for using "Remote Desktop"! Enabling or disabling this feature requires a restart of the application.. + /// Sucht eine lokalisierte Zeichenfolge, die Some graphics cards / drivers have problems maximizing the application when transparency is enabled. The function must be disabled for using "Remote Desktop"! Enabling or disabling this feature requires a restart of the application. ähnelt. /// public static string WarningMessage_SettingsGeneralAppearanceTransparency { get { @@ -5490,7 +5490,7 @@ public static string WarningMessage_SettingsGeneralAppearanceTransparency { } /// - /// Looks up a localized string similar to Website. + /// Sucht eine lokalisierte Zeichenfolge, die Website ähnelt. /// public static string Website { get { @@ -5499,7 +5499,7 @@ public static string Website { } /// - /// Looks up a localized string similar to White. + /// Sucht eine lokalisierte Zeichenfolge, die White ähnelt. /// public static string White { get { @@ -5508,7 +5508,16 @@ public static string White { } /// - /// Looks up a localized string similar to Width. + /// Sucht eine lokalisierte Zeichenfolge, die Whois ähnelt. + /// + public static string Whois { + get { + return ResourceManager.GetString("Whois", resourceCulture); + } + } + + /// + /// Sucht eine lokalisierte Zeichenfolge, die Width ähnelt. /// public static string Width { get { @@ -5517,7 +5526,7 @@ public static string Width { } /// - /// Looks up a localized string similar to Window. + /// Sucht eine lokalisierte Zeichenfolge, die Window ähnelt. /// public static string Window { get { @@ -5526,7 +5535,7 @@ public static string Window { } /// - /// Looks up a localized string similar to Wrong password!. + /// Sucht eine lokalisierte Zeichenfolge, die Wrong password! ähnelt. /// public static string WrongPassword { get { @@ -5535,7 +5544,7 @@ public static string WrongPassword { } /// - /// Looks up a localized string similar to Credentials could not be decrypted with the given password.. + /// Sucht eine lokalisierte Zeichenfolge, die Credentials could not be decrypted with the given password. ähnelt. /// public static string WrongPasswordDecryptionFailedMessage { get { @@ -5544,7 +5553,7 @@ public static string WrongPasswordDecryptionFailedMessage { } /// - /// Looks up a localized string similar to The entered password is wrong.. + /// Sucht eine lokalisierte Zeichenfolge, die The entered password is wrong. ähnelt. /// public static string WrongPasswordMessage { get { @@ -5553,7 +5562,7 @@ public static string WrongPasswordMessage { } /// - /// Looks up a localized string similar to Yellow. + /// Sucht eine lokalisierte Zeichenfolge, die Yellow ähnelt. /// public static string Yellow { get { @@ -5562,7 +5571,7 @@ public static string Yellow { } /// - /// Looks up a localized string similar to Yes. + /// Sucht eine lokalisierte Zeichenfolge, die Yes ähnelt. /// public static string Yes { get { diff --git a/Source/NETworkManager/Resources/Localization/Strings.resx b/Source/NETworkManager/Resources/Localization/Strings.resx index 6e6d664912..6c499a7c7e 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.resx +++ b/Source/NETworkManager/Resources/Localization/Strings.resx @@ -1955,4 +1955,7 @@ If you click "Move & Restart", the remaining files will be copied and the ap Visible applications in the bar: + + Whois + \ No newline at end of file From 7bb522dfbafb7ad1de5b6a386090cde04f84b0a1 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Thu, 20 Sep 2018 21:06:29 +0200 Subject: [PATCH 2/9] working whois --- Source/NETworkManager/MainWindow.xaml.cs | 13 +++++++ Source/NETworkManager/Models/Network/Whois.cs | 36 +++++++++++++++++++ Source/NETworkManager/NETworkManager.csproj | 1 + 3 files changed, 50 insertions(+) create mode 100644 Source/NETworkManager/Models/Network/Whois.cs diff --git a/Source/NETworkManager/MainWindow.xaml.cs b/Source/NETworkManager/MainWindow.xaml.cs index 0ccaabea36..343b2ff3fe 100644 --- a/Source/NETworkManager/MainWindow.xaml.cs +++ b/Source/NETworkManager/MainWindow.xaml.cs @@ -20,6 +20,7 @@ using System.Windows.Markup; using NETworkManager.Models.Update; using NETworkManager.Models.Documentation; +using NETworkManager.Models.Network; using ContextMenu = System.Windows.Controls.ContextMenu; namespace NETworkManager @@ -313,6 +314,18 @@ protected override async void OnContentRendered(EventArgs e) // Search for updates... if (SettingsManager.Current.Update_CheckForUpdatesAtStartup) CheckForUpdates(); + + + // ----------------------------------------------------- + // Test below!! + + var whois = new Whois(); + + var result = whois.Query("google.de", "whois.internic.com"); + + Debug.WriteLine(result); + + // End test } private void LoadApplicationList() diff --git a/Source/NETworkManager/Models/Network/Whois.cs b/Source/NETworkManager/Models/Network/Whois.cs new file mode 100644 index 0000000000..3b92a4f974 --- /dev/null +++ b/Source/NETworkManager/Models/Network/Whois.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Net.Sockets; +using System.Text; +using System.Threading.Tasks; + +namespace NETworkManager.Models.Network +{ + public class Whois + { + public string Query(string domain, string whoisServer) + { + var tcpClient = new TcpClient(whoisServer, 43); + + var networkStream = tcpClient.GetStream(); + + var bufferedStream = new BufferedStream(networkStream); + + var streamWriter = new StreamWriter(bufferedStream); + + streamWriter.WriteLine(domain); + streamWriter.Flush(); + + var streamReader = new StreamReader(bufferedStream); + + var stringBuilder = new StringBuilder(); + + while (!streamReader.EndOfStream) + stringBuilder.AppendLine(streamReader.ReadLine()); + + return stringBuilder.ToString(); + } + } +} diff --git a/Source/NETworkManager/NETworkManager.csproj b/Source/NETworkManager/NETworkManager.csproj index ae5e82b36b..629090cb6f 100644 --- a/Source/NETworkManager/NETworkManager.csproj +++ b/Source/NETworkManager/NETworkManager.csproj @@ -244,6 +244,7 @@ + From 4abdebb23df7ad148969715c1c9eb67b8016e439 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sat, 22 Sep 2018 13:21:38 +0200 Subject: [PATCH 3/9] Update settings fixed, whois server script --- Scripts/Create-WhoisServerListFromWhois.ps1 | 23 ++++++++++++++++ Source/NETworkManager/MainWindow.xaml.cs | 6 ++++- Source/NETworkManager/Models/Network/Whois.cs | 27 ++++++++++++++++--- .../Models/Settings/SettingsInfo.cs | 2 +- .../Models/Settings/SettingsManager.cs | 25 ++++++++++------- 5 files changed, 68 insertions(+), 15 deletions(-) create mode 100644 Scripts/Create-WhoisServerListFromWhois.ps1 diff --git a/Scripts/Create-WhoisServerListFromWhois.ps1 b/Scripts/Create-WhoisServerListFromWhois.ps1 new file mode 100644 index 0000000000..771c562171 --- /dev/null +++ b/Scripts/Create-WhoisServerListFromWhois.ps1 @@ -0,0 +1,23 @@ +$tcpClient = New-Object System.Net.Sockets.TcpClient("whois.iana.org", 43) + +$networkStream= $tcpClient.GetStream() + +$bufferedStream = New-Object System.IO.BufferedStream($networkStream) + +$streamWriter = New-Object System.IO.StreamWriter($bufferedStream) + +$streamWriter.WriteLine(".de") +$streamWriter.Flush() + +$streamReader = New-Object System.IO.StreamReader($bufferedStream) + +$stringBuilder = New-Object System.Text.StringBuilder + +while(!$streamReader.EndOfStream) +{ + $stringBuilder.Append($streamReader.ReadLine()) +} + +$stringBuilder.ToString() + + diff --git a/Source/NETworkManager/MainWindow.xaml.cs b/Source/NETworkManager/MainWindow.xaml.cs index 343b2ff3fe..04408c3120 100644 --- a/Source/NETworkManager/MainWindow.xaml.cs +++ b/Source/NETworkManager/MainWindow.xaml.cs @@ -319,12 +319,16 @@ protected override async void OnContentRendered(EventArgs e) // ----------------------------------------------------- // Test below!! + Debug.WriteLine( Whois.GetWhoisServer("test.de")); + + /* var whois = new Whois(); var result = whois.Query("google.de", "whois.internic.com"); Debug.WriteLine(result); - + */ + // End test } diff --git a/Source/NETworkManager/Models/Network/Whois.cs b/Source/NETworkManager/Models/Network/Whois.cs index 3b92a4f974..5ad2ddf315 100644 --- a/Source/NETworkManager/Models/Network/Whois.cs +++ b/Source/NETworkManager/Models/Network/Whois.cs @@ -1,7 +1,4 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; +using System.IO; using System.Net.Sockets; using System.Text; using System.Threading.Tasks; @@ -10,6 +7,11 @@ namespace NETworkManager.Models.Network { public class Whois { + public Task QueryAsync(string domain, string whoisServer) + { + return Task.Run(() => Query(domain, whoisServer)); + } + public string Query(string domain, string whoisServer) { var tcpClient = new TcpClient(whoisServer, 43); @@ -32,5 +34,22 @@ public string Query(string domain, string whoisServer) return stringBuilder.ToString(); } + + public static string GetWhoisServer(string domain) + { + var domainParts = domain.Split('.'); + + var server = string.Empty; + + switch (domainParts[domainParts.Length - 1]) + { + case "de": + server = "de"; + + break; + } + + return server; + } } } diff --git a/Source/NETworkManager/Models/Settings/SettingsInfo.cs b/Source/NETworkManager/Models/Settings/SettingsInfo.cs index acb84d8a80..fb79eaf78e 100644 --- a/Source/NETworkManager/Models/Settings/SettingsInfo.cs +++ b/Source/NETworkManager/Models/Settings/SettingsInfo.cs @@ -28,7 +28,7 @@ protected virtual void OnPropertyChanged([CallerMemberName] string propertyName #region Variables [XmlIgnore] public bool SettingsChanged { get; set; } - private string _settingsVersion = "1.7.2.0"; + private string _settingsVersion = "0.0.0.0"; public string SettingsVersion { get => _settingsVersion; diff --git a/Source/NETworkManager/Models/Settings/SettingsManager.cs b/Source/NETworkManager/Models/Settings/SettingsManager.cs index 7978c1c37b..e0188a9ef1 100644 --- a/Source/NETworkManager/Models/Settings/SettingsManager.cs +++ b/Source/NETworkManager/Models/Settings/SettingsManager.cs @@ -204,18 +204,25 @@ public static void Reset() public static void Update(Version programmVersion, Version settingsVersion) { - var reorderApplications = false; - // Features added in 1.7.3.0 - if (settingsVersion < new Version("1.7.3.0")) + Debug.WriteLine(settingsVersion); + + // Version is 0.0.0.0 on first run or settings reset --> skip updates + if (settingsVersion > new Version("0.0.0.0")) { - Current.General_ApplicationList.Add(new ApplicationViewInfo(ApplicationViewManager.Name.Whois)); + var reorderApplications = false; - reorderApplications = true; - } + // Features added in 1.7.3.0 + if (settingsVersion < new Version("1.7.3.0")) + { + Current.General_ApplicationList.Add(new ApplicationViewInfo(ApplicationViewManager.Name.Whois)); - // Reorder application view - if(reorderApplications) - Current.General_ApplicationList = new ObservableCollection(Current.General_ApplicationList.OrderBy(info => info.Name)); + reorderApplications = true; + } + + // Reorder application view + if (reorderApplications) + Current.General_ApplicationList = new ObservableCollection(Current.General_ApplicationList.OrderBy(info => info.Name)); + } // Update settings version Current.SettingsVersion = programmVersion.ToString(); From bec62b28c9054925d3d1c49612f6bd487a83be6c Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sun, 23 Sep 2018 23:17:45 +0200 Subject: [PATCH 4/9] Update --- .../Create-WhoisServerListFromWebAndWhois.ps1 | 68 +++++++++++++++++++ Scripts/Create-WhoisServerListFromWhois.ps1 | 23 ------- .../NETworkManager/Resources/WhoisServers.xml | 9 +++ 3 files changed, 77 insertions(+), 23 deletions(-) create mode 100644 Scripts/Create-WhoisServerListFromWebAndWhois.ps1 delete mode 100644 Scripts/Create-WhoisServerListFromWhois.ps1 create mode 100644 Source/NETworkManager/Resources/WhoisServers.xml diff --git a/Scripts/Create-WhoisServerListFromWebAndWhois.ps1 b/Scripts/Create-WhoisServerListFromWebAndWhois.ps1 new file mode 100644 index 0000000000..780cd267c6 --- /dev/null +++ b/Scripts/Create-WhoisServerListFromWebAndWhois.ps1 @@ -0,0 +1,68 @@ +# Filepath in the resources +[string]$OutFilePath = Join-Path -Path (Split-Path $PSScriptRoot -Parent) -ChildPath "Source\NETworkManager\Resources\WhoisServers.xml" + +$IANA_TLDs = (Invoke-WebRequest -Uri "https://data.iana.org/TLD/tlds-alpha-by-domain.txt").Content + +# Create xml document +[xml]$Document = New-Object System.Xml.XmlDocument +$Declaration = $Document.CreateXmlDeclaration("1.0", "UTF-8", $null) + +[void]$Document.AppendChild($Declaration) + +# Description +$Description = @" +Whois servers by domain from IANA +Generated $(Get-Date) +"@ + +[void]$Document.AppendChild($Document.CreateComment($Description)) + +# Root node +$RootNode = $Document.CreateNode("element", "Ports", $null) + +foreach($Tld in ($IANA_TLDs -split "[`r|`n]")) +{ + $trimTld = $Tld.Trim() + + if($trimTld.StartsWith('#') -or [String]::IsNullOrEmpty($trimTld)) + { + continue + } + + $tcpClient = New-Object System.Net.Sockets.TcpClient("whois.iana.org", 43) + + $networkStream= $tcpClient.GetStream() + + $bufferedStream = New-Object System.IO.BufferedStream($networkStream) + + $streamWriter = New-Object System.IO.StreamWriter($bufferedStream) + + $streamWriter.WriteLine("de") + $streamWriter.Flush() + + $streamReader = New-Object System.IO.StreamReader($bufferedStream) + + $stringBuilder = New-Object System.Text.StringBuilder + + while(!$streamReader.EndOfStream) + { + $stringBuilder.Append($streamReader.ReadLine()) + } + + $WhoisServer = (($stringBuilder.ToString() -split "whois:")[1] -split "status:")[0].Trim() + + $WhoisServerNode = $Document.CreateNode("element", "WhoisServer", $null) + + $TldElement = $Document.CreateElement("TLD") + $TldElement.InnerText = $tld + [void]$WhoisServerNode.AppendChild($TldElement) + + $ServerElement = $Document.CreateElement("Server") + $ServerElement.InnerText = $WhoisServer + [void]$WhoisServerNode.AppendChild($ServerElement) + + [void]$RootNode.AppendChild($WhoisServerNode) +} + +[void]$Document.AppendChild($RootNode) +$Document.Save($OutFilePath) \ No newline at end of file diff --git a/Scripts/Create-WhoisServerListFromWhois.ps1 b/Scripts/Create-WhoisServerListFromWhois.ps1 deleted file mode 100644 index 771c562171..0000000000 --- a/Scripts/Create-WhoisServerListFromWhois.ps1 +++ /dev/null @@ -1,23 +0,0 @@ -$tcpClient = New-Object System.Net.Sockets.TcpClient("whois.iana.org", 43) - -$networkStream= $tcpClient.GetStream() - -$bufferedStream = New-Object System.IO.BufferedStream($networkStream) - -$streamWriter = New-Object System.IO.StreamWriter($bufferedStream) - -$streamWriter.WriteLine(".de") -$streamWriter.Flush() - -$streamReader = New-Object System.IO.StreamReader($bufferedStream) - -$stringBuilder = New-Object System.Text.StringBuilder - -while(!$streamReader.EndOfStream) -{ - $stringBuilder.Append($streamReader.ReadLine()) -} - -$stringBuilder.ToString() - - diff --git a/Source/NETworkManager/Resources/WhoisServers.xml b/Source/NETworkManager/Resources/WhoisServers.xml new file mode 100644 index 0000000000..aca8985277 --- /dev/null +++ b/Source/NETworkManager/Resources/WhoisServers.xml @@ -0,0 +1,9 @@ + + + + + AAA + whois.denic.de + + \ No newline at end of file From 2436bb6d2eefce28db6d437330d07dc95e669797 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sun, 23 Sep 2018 23:28:09 +0200 Subject: [PATCH 5/9] Script improved --- .../Create-WhoisServerListFromWebAndWhois.ps1 | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Scripts/Create-WhoisServerListFromWebAndWhois.ps1 b/Scripts/Create-WhoisServerListFromWebAndWhois.ps1 index 780cd267c6..e28598cb49 100644 --- a/Scripts/Create-WhoisServerListFromWebAndWhois.ps1 +++ b/Scripts/Create-WhoisServerListFromWebAndWhois.ps1 @@ -1,7 +1,7 @@ # Filepath in the resources [string]$OutFilePath = Join-Path -Path (Split-Path $PSScriptRoot -Parent) -ChildPath "Source\NETworkManager\Resources\WhoisServers.xml" -$IANA_TLDs = (Invoke-WebRequest -Uri "https://data.iana.org/TLD/tlds-alpha-by-domain.txt").Content +$IANA_TLDs = (Invoke-WebRequest -Uri "https://data.iana.org/TLD/tlds-alpha-by-domain.txt").Content -split "[`r|`n]" | Where-Object -FilterScript {-not($_.StartsWith('#')) -or -not([String]::IsNullOrEmpty($_))} # Create xml document [xml]$Document = New-Object System.Xml.XmlDocument @@ -18,17 +18,14 @@ Generated $(Get-Date) [void]$Document.AppendChild($Document.CreateComment($Description)) # Root node -$RootNode = $Document.CreateNode("element", "Ports", $null) +$RootNode = $Document.CreateNode("element", "WhoisServers", $null) -foreach($Tld in ($IANA_TLDs -split "[`r|`n]")) +$ProgressCount = 0 + +foreach($Tld in $IANA_TLDs) { - $trimTld = $Tld.Trim() + $currentTld = $Tld.Trim() - if($trimTld.StartsWith('#') -or [String]::IsNullOrEmpty($trimTld)) - { - continue - } - $tcpClient = New-Object System.Net.Sockets.TcpClient("whois.iana.org", 43) $networkStream= $tcpClient.GetStream() @@ -37,7 +34,7 @@ foreach($Tld in ($IANA_TLDs -split "[`r|`n]")) $streamWriter = New-Object System.IO.StreamWriter($bufferedStream) - $streamWriter.WriteLine("de") + $streamWriter.WriteLine($currentTld) $streamWriter.Flush() $streamReader = New-Object System.IO.StreamReader($bufferedStream) @@ -54,7 +51,7 @@ foreach($Tld in ($IANA_TLDs -split "[`r|`n]")) $WhoisServerNode = $Document.CreateNode("element", "WhoisServer", $null) $TldElement = $Document.CreateElement("TLD") - $TldElement.InnerText = $tld + $TldElement.InnerText = $currentTld [void]$WhoisServerNode.AppendChild($TldElement) $ServerElement = $Document.CreateElement("Server") @@ -62,6 +59,9 @@ foreach($Tld in ($IANA_TLDs -split "[`r|`n]")) [void]$WhoisServerNode.AppendChild($ServerElement) [void]$RootNode.AppendChild($WhoisServerNode) + + Write-Host -Object "Progress: $ProgressCount from $($IANA_TLDs.Count)" + $ProgressCount ++ } [void]$Document.AppendChild($RootNode) From 9c16018987623294654b62466a29ddabcb367398 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sat, 29 Sep 2018 00:49:23 +0200 Subject: [PATCH 6/9] Update --- .../Create-WhoisServerListFromWebAndWhois.ps1 | 7 +- .../NETworkManager/Resources/WhoisServers.xml | 6493 ++++++++++++++++- 2 files changed, 6496 insertions(+), 4 deletions(-) diff --git a/Scripts/Create-WhoisServerListFromWebAndWhois.ps1 b/Scripts/Create-WhoisServerListFromWebAndWhois.ps1 index e28598cb49..bc716f0566 100644 --- a/Scripts/Create-WhoisServerListFromWebAndWhois.ps1 +++ b/Scripts/Create-WhoisServerListFromWebAndWhois.ps1 @@ -1,7 +1,7 @@ # Filepath in the resources [string]$OutFilePath = Join-Path -Path (Split-Path $PSScriptRoot -Parent) -ChildPath "Source\NETworkManager\Resources\WhoisServers.xml" -$IANA_TLDs = (Invoke-WebRequest -Uri "https://data.iana.org/TLD/tlds-alpha-by-domain.txt").Content -split "[`r|`n]" | Where-Object -FilterScript {-not($_.StartsWith('#')) -or -not([String]::IsNullOrEmpty($_))} +$IANA_TLDs = (Invoke-WebRequest -Uri "https://data.iana.org/TLD/tlds-alpha-by-domain.txt").Content -split "[`r|`n]" # Create xml document [xml]$Document = New-Object System.Xml.XmlDocument @@ -24,6 +24,11 @@ $ProgressCount = 0 foreach($Tld in $IANA_TLDs) { + if($Tld.StartsWith("#")) + { + continue + } + $currentTld = $Tld.Trim() $tcpClient = New-Object System.Net.Sockets.TcpClient("whois.iana.org", 43) diff --git a/Source/NETworkManager/Resources/WhoisServers.xml b/Source/NETworkManager/Resources/WhoisServers.xml index aca8985277..93c4cb2995 100644 --- a/Source/NETworkManager/Resources/WhoisServers.xml +++ b/Source/NETworkManager/Resources/WhoisServers.xml @@ -1,9 +1,6496 @@  - +Generated 09/28/2018 23:24:14--> + AAA + + + + + AARP + whois.nic.aarp + + + ABARTH + whois.afilias-srs.net + + + ABB + + + + + ABBOTT + whois.afilias-srs.net + + + ABBVIE + whois.afilias-srs.net + + + ABC + whois.nic.abc + + + ABLE + + + + + ABOGADO + whois.nic.abogado + + + ABUDHABI + whois.nic.abudhabi + + + AC + whois.nic.ac + + + ACADEMY + whois.nic.academy + + + ACCENTURE + + + + + ACCOUNTANT + whois.nic.accountant + + + ACCOUNTANTS + whois.nic.accountants + + + ACO + whois.afilias-srs.net + + + ACTIVE + whois.afilias-srs.net + + + ACTOR + whois.nic.actor + + + AD + + + + + ADAC + whois.nic.adac + + + ADS + whois.nic.google + + + ADULT + whois.afilias-srs.net + + + AE + whois.aeda.net.ae + + + AEG + whois.nic.aeg + + + AERO + whois.aero + + + AETNA + + + + + AF + whois.nic.af + + + AFAMILYCOMPANY + whois.nic.afamilycompany + + + AFL + whois.nic.afl + + + AFRICA + africa-whois.registry.net.za + + + AG + whois.nic.ag + + + AGAKHAN + whois.afilias-srs.net + + + AGENCY + whois.nic.agency + + + AI + whois.nic.ai + + + AIG + + + + + AIGO + whois.afilias-srs.net + + + AIRBUS + whois.nic.airbus + + + AIRFORCE + whois.nic.airforce + + + AIRTEL + whois.nic.airtel + + + AKDN + whois.afilias-srs.net + + + AL + + + + + ALFAROMEO + whois.afilias-srs.net + + + ALIBABA + whois.nic.alibaba + + + ALIPAY + whois.nic.alipay + + + ALLFINANZ + whois.ksregistry.net + + + ALLSTATE + whois.afilias-srs.net + + + ALLY + whois.nic.ally + + + ALSACE + whois-alsace.nic.fr + + + ALSTOM + whois.nic.alstom + + + AM + whois.amnic.net + + + AMERICANEXPRESS + + + + + AMERICANFAMILY + whois.nic.americanfamily + + + AMEX + + + + + AMFAM + whois.nic.amfam + + + AMICA + + + + + AMSTERDAM + + + + + ANALYTICS + + + + + ANDROID + whois.nic.google + + + ANQUAN + whois.teleinfo.cn + + + ANZ + whois.nic.anz + + + AO + + + + + AOL + whois.nic.aol + + + APARTMENTS + whois.nic.apartments + + + APP + whois.nic.google + + + APPLE + whois.afilias-srs.net + + + AQ + + + + + AQUARELLE + whois-aquarelle.nic.fr + + + AR + whois.nic.ar + + + ARAB + whois.nic.arab + + + ARAMCO + + + + + ARCHI + whois.afilias.net + + + ARMY + whois.nic.army + + + ARPA + whois.iana.org + + + ART + whois.nic.art + + + ARTE + whois.nic.arte + + + AS + whois.nic.as + + + ASDA + whois.nic.asda + + + ASIA + whois.nic.asia + + + ASSOCIATES + whois.nic.associates + + + AT + whois.nic.at + + + ATHLETA + + + + + ATTORNEY + whois.nic.attorney + + + AU + whois.auda.org.au + + + AUCTION + whois.nic.auction + + + AUDI + whois.afilias-srs.net + + + AUDIBLE + + + + + AUDIO + whois.uniregistry.net + + + AUSPOST + whois.nic.auspost + + + AUTHOR + + + + + AUTO + whois.uniregistry.net + + + AUTOS + whois.afilias-srs.net + + + AVIANCA + whois.afilias-srs.net + + + AW + whois.nic.aw + + + AWS + + + + + AX + whois.ax + + + AXA + + + + + AZ + + + + + AZURE + + + + + BA + + + + + BABY + + + + + BAIDU + whois.gtld.knet.cn + + + BANAMEX + + + + + BANANAREPUBLIC + + + + + BAND + whois.nic.band + + + BANK + whois.nic.bank + + + BAR + whois.nic.bar + + + BARCELONA + whois.nic.barcelona + + + BARCLAYCARD + whois.nic.barclaycard + + + BARCLAYS + whois.nic.barclays + + + BAREFOOT + whois.nic.barefoot + + + BARGAINS + whois.nic.bargains + + + BASEBALL + + + + + BASKETBALL + whois.nic.basketball + + + BAUHAUS + whois.nic.bauhaus + + + BAYERN + whois.nic.bayern + + + BB + + + + + BBC + whois.nic.bbc + + + BBT + whois.nic.bbt + + + BBVA + whois.nic.bbva + + + BCG + whois.nic.bcg + + + BCN + whois.nic.bcn + + + BD + + + + + BE + whois.dns.be + + + BEATS + whois.afilias-srs.net + + + BEAUTY + whois.nic.beauty + + + BEER + whois.nic.beer + + + BENTLEY + whois.nic.bentley + + + BERLIN + whois.nic.berlin + + + BEST + whois.nic.best + + + BESTBUY + whois.nic.bestbuy + + + BET + whois.afilias.net + + + BF + + + + + BG + whois.register.bg + + + BH + + + + + BHARTI + + + + + BI + whois1.nic.bi + + + BIBLE + whois.nic.bible + + + BID + whois.nic.bid + + + BIKE + whois.nic.bike + + + BING + + + + + BINGO + whois.nic.bingo + + + BIO + whois.afilias.net + + + BIZ + whois.biz + + + BJ + whois.nic.bj + + + BLACK + whois.afilias.net + + + BLACKFRIDAY + whois.uniregistry.net + + + BLANCO + whois.nic.blanco + + + BLOCKBUSTER + whois.nic.blockbuster + + + BLOG + whois.nic.blog + + + BLOOMBERG + + + + + BLUE + whois.afilias.net + + + BM + + + + + BMS + whois.nic.bms + + + BMW + whois.ksregistry.net + + + BN + whois.bnnic.bn + + + BNL + whois.nic.bnl + + + BNPPARIBAS + whois.afilias-srs.net + + + BO + whois.nic.bo + + + BOATS + whois.afilias-srs.net + + + BOEHRINGER + whois.afilias-srs.net + + + BOFA + whois.nic.bofa + + + BOM + whois.gtlds.nic.br + + + BOND + whois.nic.bond + + + BOO + whois.nic.google + + + BOOK + + + + + BOOKING + + + + + BOSCH + whois.nic.bosch + + + BOSTIK + whois-bostik.nic.fr + + + BOSTON + whois.nic.boston + + + BOT + + + + + BOUTIQUE + whois.nic.boutique + + + BOX + whois.aridnrs.net.au + + + BR + whois.registro.br + + + BRADESCO + whois.nic.bradesco + + + BRIDGESTONE + whois.nic.bridgestone + + + BROADWAY + whois.nic.broadway + + + BROKER + whois.nic.broker + + + BROTHER + whois.nic.brother + + + BRUSSELS + whois.nic.brussels + + + BS + + + + + BT + + + + + BUDAPEST + whois.nic.budapest + + + BUGATTI + whois.afilias-srs.net + + + BUILD + whois.nic.build + + + BUILDERS + whois.nic.builders + + + BUSINESS + whois.nic.business + + + BUY + whois.afilias-srs.net + + + BUZZ + + + + + BV + + + + + BW + whois.nic.net.bw + + + BY + whois.cctld.by + + + BZ + + + + + BZH + whois.nic.bzh + + + CA + whois.cira.ca + + + CAB + whois.nic.cab + + + CAFE + whois.nic.cafe + + + CAL + whois.nic.google + + + CALL + + + + + CALVINKLEIN + + + + + CAM + whois.ksregistry.net + + + CAMERA + whois.nic.camera + + + CAMP + whois.nic.camp + + + CANCERRESEARCH + whois.nic.cancerresearch + + + CANON + whois.nic.canon + + + CAPETOWN + capetown-whois.registry.net.za + + + CAPITAL + whois.nic.capital + + + CAPITALONE + whois.nic.capitalone + + + CAR + whois.uniregistry.net + + + CARAVAN + + + + + CARDS + whois.nic.cards + + + CARE + whois.nic.care + + + CAREER + whois.nic.career + + + CAREERS + whois.nic.careers + + + CARS + whois.uniregistry.net + + + CARTIER + + + + + CASA + whois.nic.casa + + + CASE + whois.nic.case + + + CASEIH + whois.nic.caseih + + + CASH + whois.nic.cash + + + CASINO + whois.nic.casino + + + CAT + whois.nic.cat + + + CATERING + whois.nic.catering + + + CATHOLIC + whois.aridnrs.net.au + + + CBA + whois.nic.cba + + + CBN + + + + + CBRE + + + + + CBS + whois.afilias-srs.net + + + CC + ccwhois.verisign-grs.com + + + CD + + + + + CEB + whois.afilias-srs.net + + + CENTER + whois.nic.center + + + CEO + whois.nic.ceo + + + CERN + whois.afilias-srs.net + + + CF + whois.dot.cf + + + CFA + whois.nic.cfa + + + CFD + whois.nic.cfd + + + CG + + + + + CH + whois.nic.ch + + + CHANEL + whois.nic.chanel + + + CHANNEL + whois.nic.google + + + CHARITY + whois.nic.charity + + + CHASE + + + + + CHAT + whois.nic.chat + + + CHEAP + whois.nic.cheap + + + CHINTAI + whois.nic.chintai + + + CHRISTMAS + whois.uniregistry.net + + + CHROME + whois.nic.google + + + CHRYSLER + whois.afilias-srs.net + + + CHURCH + whois.nic.church + + + CI + whois.nic.ci + + + CIPRIANI + whois.afilias-srs.net + + + CIRCLE + + + + + CISCO + + + + + CITADEL + + + + + CITI + + + + + CITIC + + + + + CITY + whois.nic.city + + + CITYEATS + whois.nic.cityeats + + + CK + + + + + CL + whois.nic.cl + + + CLAIMS + whois.nic.claims + + + CLEANING + whois.nic.cleaning + + + CLICK + whois.uniregistry.net + + + CLINIC + whois.nic.clinic + + + CLINIQUE + whois.nic.clinique + + + CLOTHING + whois.nic.clothing + + + CLOUD + whois.nic.cloud + + + CLUB + whois.nic.club + + + CLUBMED + whois.nic.clubmed + + + CM + + + + + CN + whois.cnnic.cn + + + CO + whois.nic.co + + + COACH + whois.nic.coach + + + CODES + whois.nic.codes + + + COFFEE + whois.nic.coffee + + + COLLEGE + whois.nic.college + + + COLOGNE + whois.ryce-rsp.com + + + COM + whois.verisign-grs.com + + + COMCAST + whois.nic.comcast + + + COMMBANK + whois.nic.commbank + + + COMMUNITY + whois.nic.community + + + COMPANY + whois.nic.company + + + COMPARE + whois.nic.compare + + + COMPUTER + whois.nic.computer + + + COMSEC + whois.nic.comsec + + + CONDOS + whois.nic.condos + + + CONSTRUCTION + whois.nic.construction + + + CONSULTING + whois.nic.consulting + + + CONTACT + whois.nic.contact + + + CONTRACTORS + whois.nic.contractors + + + COOKING + whois.nic.cooking + + + COOKINGCHANNEL + whois.nic.cookingchannel + + + COOL + whois.nic.cool + + + COOP + whois.nic.coop + + + CORSICA + whois-corsica.nic.fr + + + COUNTRY + whois-dub.mm-registry.com + + + COUPON + + + + + COUPONS + whois.nic.coupons + + + COURSES + whois.aridnrs.net.au + + + CR + whois.nic.cr + + + CREDIT + whois.nic.credit + + + CREDITCARD + whois.nic.creditcard + + + CREDITUNION + whois.afilias-srs.net + + + CRICKET + whois.nic.cricket + + + CROWN + + + + + CRS + + + + + CRUISE + whois.nic.cruise + + + CRUISES + whois.nic.cruises + + + CSC + whois.nic.csc + + + CU + + + + + CUISINELLA + whois.nic.cuisinella + + + CV + + + + + CW + + + + + CX + whois.nic.cx + + + CY + + + + + CYMRU + whois.nic.cymru + + + CYOU + whois.nic.cyou + + + CZ + whois.nic.cz + + + DABUR + whois.afilias-srs.net + + + DAD + whois.nic.google + + + DANCE + whois.nic.dance + + + DATA + whois.nic.data + + + DATE + whois.nic.date + + + DATING + whois.nic.dating + + + DATSUN + whois.nic.gmo + + + DAY + whois.nic.google + + + DCLK + whois.nic.google + + + DDS + whois.nic.dds + + + DE whois.denic.de - \ No newline at end of file + + DEAL + + + + + DEALER + + + + + DEALS + whois.nic.deals + + + DEGREE + whois.nic.degree + + + DELIVERY + whois.nic.delivery + + + DELL + + + + + DELOITTE + whois.nic.deloitte + + + DELTA + whois.nic.delta + + + DEMOCRAT + whois.nic.democrat + + + DENTAL + whois.nic.dental + + + DENTIST + whois.nic.dentist + + + DESI + whois.ksregistry.net + + + DESIGN + whois.nic.design + + + DEV + whois.nic.google + + + DHL + + + + + DIAMONDS + whois.nic.diamonds + + + DIET + whois.uniregistry.net + + + DIGITAL + whois.nic.digital + + + DIRECT + whois.nic.direct + + + DIRECTORY + whois.nic.directory + + + DISCOUNT + whois.nic.discount + + + DISCOVER + + + + + DISH + whois.nic.dish + + + DIY + whois.nic.diy + + + DJ + + + + + DK + whois.dk-hostmaster.dk + + + DM + whois.nic.dm + + + DNP + + + + + DO + whois.nic.do + + + DOCS + whois.nic.google + + + DOCTOR + whois.nic.doctor + + + DODGE + whois.afilias-srs.net + + + DOG + whois.nic.dog + + + DOHA + whois.nic.doha + + + DOMAINS + whois.nic.domains + + + DOT + whois.nic.dot + + + DOWNLOAD + whois.nic.download + + + DRIVE + whois.nic.google + + + DTV + whois.nic.dtv + + + DUBAI + whois.nic.dubai + + + DUCK + whois.nic.duck + + + DUNLOP + whois.nic.dunlop + + + DUNS + + + + + DUPONT + + + + + DURBAN + durban-whois.registry.net.za + + + DVAG + whois.ksregistry.net + + + DVR + whois.nic.dvr + + + DZ + whois.nic.dz + + + EARTH + + + + + EAT + whois.nic.google + + + EC + whois.nic.ec + + + ECO + whois.afilias-srs.net + + + EDEKA + whois.afilias-srs.net + + + EDU + whois.educause.edu + + + EDUCATION + whois.nic.education + + + EE + whois.tld.ee + + + EG + + + + + EMAIL + whois.nic.email + + + EMERCK + whois.afilias-srs.net + + + ENERGY + whois.nic.energy + + + ENGINEER + whois.nic.engineer + + + ENGINEERING + whois.nic.engineering + + + ENTERPRISES + whois.nic.enterprises + + + EPOST + + + + + EPSON + whois.aridnrs.net.au + + + EQUIPMENT + whois.nic.equipment + + + ER + + + + + ERICSSON + whois.nic.ericsson + + + ERNI + whois.nic.erni + + + ES + whois.nic.es + + + ESQ + whois.nic.google + + + ESTATE + whois.nic.estate + + + ESURANCE + whois.afilias-srs.net + + + ET + + + + + ETISALAT + whois.centralnic.com + + + EU + whois.eu + + + EUROVISION + whois.nic.eurovision + + + EUS + whois.nic.eus + + + EVENTS + whois.nic.events + + + EVERBANK + + + + + EXCHANGE + whois.nic.exchange + + + EXPERT + whois.nic.expert + + + EXPOSED + whois.nic.exposed + + + EXPRESS + whois.nic.express + + + EXTRASPACE + whois.afilias-srs.net + + + FAGE + whois.afilias-srs.net + + + FAIL + whois.nic.fail + + + FAIRWINDS + whois.nic.fairwinds + + + FAITH + whois.nic.faith + + + FAMILY + whois.nic.family + + + FAN + whois.nic.fan + + + FANS + whois.nic.fans + + + FARM + whois.nic.farm + + + FARMERS + + + + + FASHION + whois.nic.fashion + + + FAST + + + + + FEDEX + whois.nic.fedex + + + FEEDBACK + whois.nic.feedback + + + FERRARI + whois.nic.ferrari + + + FERRERO + + + + + FI + whois.fi + + + FIAT + whois.afilias-srs.net + + + FIDELITY + whois.nic.fidelity + + + FIDO + whois.afilias-srs.net + + + FILM + whois.nic.film + + + FINAL + whois.gtlds.nic.br + + + FINANCE + whois.nic.finance + + + FINANCIAL + whois.nic.financial + + + FIRE + + + + + FIRESTONE + whois.nic.firestone + + + FIRMDALE + whois.nic.firmdale + + + FISH + whois.nic.fish + + + FISHING + whois.nic.fishing + + + FIT + whois.nic.fit + + + FITNESS + whois.nic.fitness + + + FJ + + + + + FK + + + + + FLICKR + + + + + FLIGHTS + whois.nic.flights + + + FLIR + + + + + FLORIST + whois.nic.florist + + + FLOWERS + whois.uniregistry.net + + + FLY + whois.nic.google + + + FM + + + + + FO + whois.nic.fo + + + FOO + whois.nic.google + + + FOOD + + + + + FOODNETWORK + whois.nic.foodnetwork + + + FOOTBALL + whois.nic.football + + + FORD + + + + + FOREX + whois.nic.forex + + + FORSALE + whois.nic.forsale + + + FORUM + whois.nic.forum + + + FOUNDATION + whois.nic.foundation + + + FOX + + + + + FR + whois.nic.fr + + + FREE + + + + + FRESENIUS + whois.ksregistry.net + + + FRL + whois.nic.frl + + + FROGANS + whois.nic.frogans + + + FRONTDOOR + whois.nic.frontdoor + + + FRONTIER + + + + + FTR + + + + + FUJITSU + whois.nic.gmo + + + FUJIXEROX + whois.nic.fujixerox + + + FUN + whois.nic.fun + + + FUND + whois.nic.fund + + + FURNITURE + whois.nic.furniture + + + FUTBOL + whois.nic.futbol + + + FYI + whois.nic.fyi + + + GA + + + + + GAL + whois.nic.gal + + + GALLERY + whois.nic.gallery + + + GALLO + whois.nic.gallo + + + GALLUP + whois.nic.gallup + + + GAME + whois.uniregistry.net + + + GAMES + whois.nic.games + + + GAP + + + + + GARDEN + whois.nic.garden + + + GB + + + + + GBIZ + whois.nic.google + + + GD + whois.nic.gd + + + GDN + whois.nic.gdn + + + GE + whois.registration.ge + + + GEA + whois.afilias-srs.net + + + GENT + whois.nic.gent + + + GENTING + whois.nic.genting + + + GEORGE + whois.nic.george + + + GF + whois.mediaserv.net + + + GG + whois.gg + + + GGEE + whois.nic.ggee + + + GH + + + + + GI + whois2.afilias-grs.net + + + GIFT + whois.uniregistry.net + + + GIFTS + whois.nic.gifts + + + GIVES + whois.nic.gives + + + GIVING + whois.nic.giving + + + GL + whois.nic.gl + + + GLADE + whois.nic.glade + + + GLASS + whois.nic.glass + + + GLE + whois.nic.google + + + GLOBAL + whois.nic.global + + + GLOBO + whois.gtlds.nic.br + + + GM + + + + + GMAIL + whois.nic.google + + + GMBH + whois.nic.gmbh + + + GMO + + + + + GMX + whois-fe1.gmx.tango.knipp.de + + + GN + + + + + GODADDY + whois.afilias-srs.net + + + GOLD + whois.nic.gold + + + GOLDPOINT + whois.nic.goldpoint + + + GOLF + whois.nic.golf + + + GOO + whois.nic.gmo + + + GOODYEAR + whois.nic.goodyear + + + GOOG + whois.nic.google + + + GOOGLE + whois.nic.google + + + GOP + whois.nic.gop + + + GOT + + + + + GOV + whois.dotgov.gov + + + GP + + + + + GQ + whois.dominio.gq + + + GR + + + + + GRAINGER + + + + + GRAPHICS + whois.nic.graphics + + + GRATIS + whois.nic.gratis + + + GREEN + whois.afilias.net + + + GRIPE + whois.nic.gripe + + + GROCERY + + + + + GROUP + whois.nic.group + + + GS + whois.nic.gs + + + GT + + + + + GU + + + + + GUARDIAN + + + + + GUCCI + + + + + GUGE + whois.nic.google + + + GUIDE + whois.nic.guide + + + GUITARS + whois.uniregistry.net + + + GURU + whois.nic.guru + + + GW + + + + + GY + whois.registry.gy + + + HAIR + + + + + HAMBURG + whois.nic.hamburg + + + HANGOUT + whois.nic.google + + + HAUS + whois.nic.haus + + + HBO + + + + + HDFC + whois.nic.hdfc + + + HDFCBANK + whois.nic.hdfcbank + + + HEALTH + + + + + HEALTHCARE + whois.nic.healthcare + + + HELP + whois.uniregistry.net + + + HELSINKI + whois.nic.helsinki + + + HERE + whois.nic.google + + + HERMES + whois.afilias-srs.net + + + HGTV + whois.nic.hgtv + + + HIPHOP + whois.uniregistry.net + + + HISAMITSU + whois.nic.gmo + + + HITACHI + whois.nic.gmo + + + HIV + whois.uniregistry.net + + + HK + whois.hkirc.hk + + + HKT + whois.nic.hkt + + + HM + whois.registry.hm + + + HN + whois.nic.hn + + + HOCKEY + whois.nic.hockey + + + HOLDINGS + whois.nic.holdings + + + HOLIDAY + whois.nic.holiday + + + HOMEDEPOT + whois.nic.homedepot + + + HOMEGOODS + + + + + HOMES + whois.afilias-srs.net + + + HOMESENSE + + + + + HONDA + whois.nic.honda + + + HONEYWELL + + + + + HORSE + whois.nic.horse + + + HOSPITAL + whois.nic.hospital + + + HOST + whois.nic.host + + + HOSTING + whois.uniregistry.net + + + HOT + + + + + HOTELES + + + + + HOTELS + + + + + HOTMAIL + + + + + HOUSE + whois.nic.house + + + HOW + whois.nic.google + + + HR + whois.dns.hr + + + HSBC + + + + + HT + whois.nic.ht + + + HU + whois.nic.hu + + + HUGHES + whois.nic.hughes + + + HYATT + + + + + HYUNDAI + whois.nic.hyundai + + + IBM + whois.nic.ibm + + + ICBC + whois.nic.icbc + + + ICE + whois.nic.ice + + + ICU + whois.nic.icu + + + ID + whois.id + + + IE + whois.iedr.ie + + + IEEE + + + + + IFM + whois.nic.ifm + + + IKANO + whois.ikano.tld-box.at + + + IL + whois.isoc.org.il + + + IM + whois.nic.im + + + IMAMAT + whois.afilias-srs.net + + + IMDB + + + + + IMMO + whois.nic.immo + + + IMMOBILIEN + whois.nic.immobilien + + + IN + whois.inregistry.net + + + INC + whois.nic.inc + + + INDUSTRIES + whois.nic.industries + + + INFINITI + whois.nic.gmo + + + INFO + whois.afilias.net + + + ING + whois.nic.google + + + INK + whois.nic.ink + + + INSTITUTE + whois.nic.institute + + + INSURANCE + whois.nic.insurance + + + INSURE + whois.nic.insure + + + INT + whois.iana.org + + + INTEL + + + + + INTERNATIONAL + whois.nic.international + + + INTUIT + + + + + INVESTMENTS + whois.nic.investments + + + IO + whois.nic.io + + + IPIRANGA + + + + + IQ + whois.cmc.iq + + + IR + whois.nic.ir + + + IRISH + whois.nic.irish + + + IS + whois.isnic.is + + + ISELECT + whois.nic.iselect + + + ISMAILI + whois.afilias-srs.net + + + IST + whois.afilias-srs.net + + + ISTANBUL + whois.afilias-srs.net + + + IT + whois.nic.it + + + ITAU + + + + + ITV + whois.afilias-srs.net + + + IVECO + whois.nic.iveco + + + JAGUAR + whois.nic.jaguar + + + JAVA + whois.nic.java + + + JCB + whois.nic.gmo + + + JCP + whois.afilias-srs.net + + + JE + whois.je + + + JEEP + whois.afilias-srs.net + + + JETZT + whois.nic.jetzt + + + JEWELRY + whois.nic.jewelry + + + JIO + whois.nic.jio + + + JLL + whois.afilias-srs.net + + + JM + + + + + JMP + + + + + JNJ + + + + + JO + + + + + JOBS + whois.nic.jobs + + + JOBURG + joburg-whois.registry.net.za + + + JOT + + + + + JOY + + + + + JP + whois.jprs.jp + + + JPMORGAN + + + + + JPRS + + + + + JUEGOS + whois.uniregistry.net + + + JUNIPER + whois.nic.juniper + + + KAUFEN + whois.nic.kaufen + + + KDDI + whois.nic.kddi + + + KE + whois.kenic.or.ke + + + KERRYHOTELS + whois.nic.kerryhotels + + + KERRYLOGISTICS + whois.nic.kerrylogistics + + + KERRYPROPERTIES + whois.nic.kerryproperties + + + KFH + whois.nic.kfh + + + KG + whois.kg + + + KH + + + + + KI + whois.nic.ki + + + KIA + whois.nic.kia + + + KIM + whois.afilias.net + + + KINDER + + + + + KINDLE + + + + + KITCHEN + whois.nic.kitchen + + + KIWI + whois.nic.kiwi + + + KM + + + + + KN + whois.nic.kn + + + KOELN + whois.ryce-rsp.com + + + KOMATSU + whois.nic.komatsu + + + KOSHER + whois.nic.kosher + + + KP + + + + + KPMG + + + + + KPN + + + + + KR + whois.kr + + + KRD + whois.aridnrs.net.au + + + KRED + + + + + KUOKGROUP + whois.nic.kuokgroup + + + KW + + + + + KY + whois.kyregistry.ky + + + KYOTO + whois.nic.kyoto + + + KZ + whois.nic.kz + + + LA + whois.nic.la + + + LACAIXA + whois.nic.lacaixa + + + LADBROKES + whois.nic.ladbrokes + + + LAMBORGHINI + whois.afilias-srs.net + + + LAMER + whois.nic.lamer + + + LANCASTER + whois-lancaster.nic.fr + + + LANCIA + whois.afilias-srs.net + + + LANCOME + whois.nic.lancome + + + LAND + whois.nic.land + + + LANDROVER + whois.nic.landrover + + + LANXESS + + + + + LASALLE + whois.afilias-srs.net + + + LAT + whois.nic.lat + + + LATINO + whois.nic.latino + + + LATROBE + whois.nic.latrobe + + + LAW + whois.nic.law + + + LAWYER + whois.nic.lawyer + + + LB + + + + + LC + + + + + LDS + whois.nic.lds + + + LEASE + whois.nic.lease + + + LECLERC + whois-leclerc.nic.fr + + + LEFRAK + whois.nic.lefrak + + + LEGAL + whois.nic.legal + + + LEGO + whois.nic.lego + + + LEXUS + whois.nic.lexus + + + LGBT + whois.afilias.net + + + LI + whois.nic.li + + + LIAISON + whois.nic.liaison + + + LIDL + whois.nic.lidl + + + LIFE + whois.nic.life + + + LIFEINSURANCE + + + + + LIFESTYLE + whois.nic.lifestyle + + + LIGHTING + whois.nic.lighting + + + LIKE + + + + + LILLY + + + + + LIMITED + whois.nic.limited + + + LIMO + whois.nic.limo + + + LINCOLN + + + + + LINDE + whois.nic.linde + + + LINK + whois.uniregistry.net + + + LIPSY + whois.nic.lipsy + + + LIVE + whois.nic.live + + + LIVING + + + + + LIXIL + whois.nic.lixil + + + LK + + + + + LLC + whois.afilias.net + + + LOAN + whois.nic.loan + + + LOANS + whois.nic.loans + + + LOCKER + whois.nic.locker + + + LOCUS + whois.nic.locus + + + LOFT + + + + + LOL + whois.uniregistry.net + + + LONDON + whois.nic.london + + + LOTTE + whois.nic.lotte + + + LOTTO + whois.afilias.net + + + LOVE + whois.nic.love + + + LPL + whois.nic.lpl + + + LPLFINANCIAL + whois.nic.lplfinancial + + + LR + + + + + LS + 196.11.175.58 + + + LT + whois.domreg.lt + + + LTD + whois.nic.ltd + + + LTDA + whois.afilias-srs.net + + + LU + whois.dns.lu + + + LUNDBECK + whois.nic.lundbeck + + + LUPIN + + + + + LUXE + whois.nic.luxe + + + LUXURY + whois.nic.luxury + + + LV + whois.nic.lv + + + LY + whois.nic.ly + + + MA + whois.registre.ma + + + MACYS + whois.nic.macys + + + MADRID + whois.madrid.rs.corenic.net + + + MAIF + + + + + MAISON + whois.nic.maison + + + MAKEUP + whois.nic.makeup + + + MAN + whois.nic.man + + + MANAGEMENT + whois.nic.management + + + MANGO + whois.nic.mango + + + MAP + whois.nic.google + + + MARKET + whois.nic.market + + + MARKETING + whois.nic.marketing + + + MARKETS + whois.nic.markets + + + MARRIOTT + whois.afilias-srs.net + + + MARSHALLS + + + + + MASERATI + whois.nic.maserati + + + MATTEL + + + + + MBA + whois.nic.mba + + + MC + + + + + MCKINSEY + whois.nic.mckinsey + + + MD + whois.nic.md + + + ME + whois.nic.me + + + MED + whois.nic.med + + + MEDIA + whois.nic.media + + + MEET + whois.nic.google + + + MELBOURNE + whois.aridnrs.net.au + + + MEME + whois.nic.google + + + MEMORIAL + whois.nic.memorial + + + MEN + whois.nic.men + + + MENU + whois.nic.menu + + + MERCKMSD + + + + + METLIFE + whois.nic.metlife + + + MG + whois.nic.mg + + + MH + + + + + MIAMI + whois.nic.miami + + + MICROSOFT + + + + + MIL + + + + + MINI + whois.ksregistry.net + + + MINT + + + + + MIT + whois.afilias-srs.net + + + MITSUBISHI + whois.nic.gmo + + + MK + whois.marnet.mk + + + ML + whois.dot.ml + + + MLB + + + + + MLS + whois.nic.mls + + + MM + + + + + MMA + whois-mma.nic.fr + + + MN + whois.nic.mn + + + MO + whois.monic.mo + + + MOBI + whois.afilias.net + + + MOBILE + whois.nic.mobile + + + MOBILY + + + + + MODA + whois.nic.moda + + + MOE + whois.nic.moe + + + MOI + + + + + MOM + whois.uniregistry.net + + + MONASH + whois.nic.monash + + + MONEY + whois.nic.money + + + MONSTER + whois.nic.monster + + + MOPAR + whois.afilias-srs.net + + + MORMON + whois.nic.mormon + + + MORTGAGE + whois.nic.mortgage + + + MOSCOW + whois.nic.moscow + + + MOTO + + + + + MOTORCYCLES + whois.afilias-srs.net + + + MOV + whois.nic.google + + + MOVIE + whois.nic.movie + + + MOVISTAR + whois-fe.movistar.tango.knipp.de + + + MP + whois.nic.mp + + + MQ + whois.mediaserv.net + + + MR + whois.nic.mr + + + MS + whois.nic.ms + + + MSD + + + + + MT + + + + + MTN + whois.nic.mtn + + + MTR + whois.nic.mtr + + + MU + whois.nic.mu + + + MUSEUM + whois.nic.museum + + + MUTUAL + + + + + MV + + + + + MW + + + + + MX + whois.mx + + + MY + whois.mynic.my + + + MZ + whois.nic.mz + + + NA + whois.na-nic.com.na + + + NAB + whois.nic.nab + + + NADEX + whois.nic.nadex + + + NAGOYA + + + + + NAME + whois.nic.name + + + NATIONWIDE + whois.nic.nationwide + + + NATURA + whois.afilias-srs.net + + + NAVY + whois.nic.navy + + + NBA + + + + + NC + whois.nc + + + NE + + + + + NEC + whois.nic.nec + + + NET + whois.verisign-grs.com + + + NETBANK + whois.nic.netbank + + + NETFLIX + + + + + NETWORK + whois.nic.network + + + NEUSTAR + + + + + NEW + whois.nic.google + + + NEWHOLLAND + whois.nic.newholland + + + NEWS + whois.nic.news + + + NEXT + whois.nic.next + + + NEXTDIRECT + whois.nic.nextdirect + + + NEXUS + whois.nic.google + + + NF + whois.nic.nf + + + NFL + + + + + NG + whois.nic.net.ng + + + NGO + whois.publicinterestregistry.net + + + NHK + + + + + NI + + + + + NICO + whois.nic.nico + + + NIKE + + + + + NIKON + whois.nic.nikon + + + NINJA + whois.nic.ninja + + + NISSAN + whois.nic.gmo + + + NISSAY + whois.nic.nissay + + + NL + whois.domain-registry.nl + + + NO + whois.norid.no + + + NOKIA + whois.afilias-srs.net + + + NORTHWESTERNMUTUAL + + + + + NORTON + whois.nic.norton + + + NOW + + + + + NOWRUZ + whois.agitsys.net + + + NOWTV + whois.nic.nowtv + + + NP + + + + + NR + + + + + NRA + whois.afilias-srs.net + + + NRW + whois.nic.nrw + + + NTT + + + + + NU + whois.iis.nu + + + NYC + + + + + NZ + whois.srs.net.nz + + + OBI + whois.nic.obi + + + OBSERVER + whois.nic.observer + + + OFF + whois.nic.off + + + OFFICE + + + + + OKINAWA + + + + + OLAYAN + whois.nic.olayan + + + OLAYANGROUP + whois.nic.olayangroup + + + OLDNAVY + + + + + OLLO + whois.nic.ollo + + + OM + whois.registry.om + + + OMEGA + whois.nic.omega + + + ONE + whois.nic.one + + + ONG + whois.publicinterestregistry.net + + + ONL + whois.afilias-srs.net + + + ONLINE + whois.nic.online + + + ONYOURSIDE + whois.nic.onyourside + + + OOO + whois.nic.ooo + + + OPEN + + + + + ORACLE + whois.nic.oracle + + + ORANGE + whois.nic.orange + + + ORG + whois.pir.org + + + ORGANIC + whois.afilias.net + + + ORIGINS + whois.nic.origins + + + OSAKA + whois.nic.osaka + + + OTSUKA + + + + + OTT + whois.nic.ott + + + OVH + whois-ovh.nic.fr + + + PA + + + + + PAGE + whois.nic.google + + + PANASONIC + whois.nic.gmo + + + PARIS + whois-paris.nic.fr + + + PARS + whois.agitsys.net + + + PARTNERS + whois.nic.partners + + + PARTS + whois.nic.parts + + + PARTY + whois.nic.party + + + PASSAGENS + + + + + PAY + + + + + PCCW + whois.nic.pccw + + + PE + kero.yachay.pe + + + PET + whois.afilias.net + + + PF + whois.registry.pf + + + PFIZER + + + + + PG + + + + + PH + + + + + PHARMACY + + + + + PHD + whois.nic.google + + + PHILIPS + whois.nic.philips + + + PHONE + whois.nic.phone + + + PHOTO + whois.uniregistry.net + + + PHOTOGRAPHY + whois.nic.photography + + + PHOTOS + whois.nic.photos + + + PHYSIO + whois.nic.physio + + + PIAGET + + + + + PICS + whois.uniregistry.net + + + PICTET + + + + + PICTURES + whois.nic.pictures + + + PID + whois.nic.pid + + + PIN + + + + + PING + + + + + PINK + whois.afilias.net + + + PIONEER + whois.nic.gmo + + + PIZZA + whois.nic.pizza + + + PK + + + + + PL + whois.dns.pl + + + PLACE + whois.nic.place + + + PLAY + whois.nic.google + + + PLAYSTATION + whois.nic.playstation + + + PLUMBING + whois.nic.plumbing + + + PLUS + whois.nic.plus + + + PM + whois.nic.pm + + + PN + + + + + PNC + whois.nic.pnc + + + POHL + whois.ksregistry.net + + + POKER + whois.afilias.net + + + POLITIE + whois.nic.politie + + + PORN + whois.afilias-srs.net + + + POST + whois.dotpostregistry.net + + + PR + whois.afilias-srs.net + + + PRAMERICA + + + + + PRAXI + + + + + PRESS + whois.nic.press + + + PRIME + + + + + PRO + whois.afilias.net + + + PROD + whois.nic.google + + + PRODUCTIONS + whois.nic.productions + + + PROF + whois.nic.google + + + PROGRESSIVE + whois.afilias-srs.net + + + PROMO + whois.afilias.net + + + PROPERTIES + whois.nic.properties + + + PROPERTY + whois.uniregistry.net + + + PROTECTION + whois.nic.protection + + + PRU + + + + + PRUDENTIAL + + + + + PS + + + + + PT + whois.dns.pt + + + PUB + whois.nic.pub + + + PW + whois.nic.pw + + + PWC + whois.afilias-srs.net + + + PY + + + + + QA + whois.registry.qa + + + QPON + + + + + QUEBEC + whois.nic.quebec + + + QUEST + whois.nic.quest + + + QVC + + + + + RACING + whois.nic.racing + + + RADIO + whois.nic.radio + + + RAID + whois.nic.raid + + + RE + whois.nic.re + + + READ + + + + + REALESTATE + whois.nic.realestate + + + REALTOR + + + + + REALTY + whois.nic.realty + + + RECIPES + whois.nic.recipes + + + RED + whois.afilias.net + + + REDSTONE + whois.nic.redstone + + + REDUMBRELLA + whois.afilias-srs.net + + + REHAB + whois.nic.rehab + + + REISE + whois.nic.reise + + + REISEN + whois.nic.reisen + + + REIT + whois.nic.reit + + + RELIANCE + whois.nic.reliance + + + REN + + + + + RENT + whois.nic.rent + + + RENTALS + whois.nic.rentals + + + REPAIR + whois.nic.repair + + + REPORT + whois.nic.report + + + REPUBLICAN + whois.nic.republican + + + REST + whois.nic.rest + + + RESTAURANT + whois.nic.restaurant + + + REVIEW + whois.nic.review + + + REVIEWS + whois.nic.reviews + + + REXROTH + whois.nic.rexroth + + + RICH + whois.afilias-srs.net + + + RICHARDLI + whois.nic.richardli + + + RICOH + whois.nic.ricoh + + + RIGHTATHOME + whois.nic.rightathome + + + RIL + whois.nic.ril + + + RIO + whois.gtlds.nic.br + + + RIP + whois.nic.rip + + + RMIT + whois.aridnrs.net.au + + + RO + whois.rotld.ro + + + ROCHER + + + + + ROCKS + whois.nic.rocks + + + RODEO + whois.nic.rodeo + + + ROGERS + whois.afilias-srs.net + + + ROOM + + + + + RS + whois.rnids.rs + + + RSVP + whois.nic.google + + + RU + whois.tcinet.ru + + + RUGBY + whois.centralnic.com + + + RUHR + whois.nic.ruhr + + + RUN + whois.nic.run + + + RW + + + + + RWE + whois.nic.rwe + + + RYUKYU + + + + + SA + whois.nic.net.sa + + + SAARLAND + whois.ksregistry.net + + + SAFE + + + + + SAFETY + + + + + SAKURA + + + + + SALE + whois.nic.sale + + + SALON + whois.nic.salon + + + SAMSCLUB + whois.nic.samsclub + + + SAMSUNG + whois.nic.samsung + + + SANDVIK + whois.nic.sandvik + + + SANDVIKCOROMANT + whois.nic.sandvikcoromant + + + SANOFI + whois.nic.sanofi + + + SAP + whois.nic.sap + + + SARL + whois.nic.sarl + + + SAS + + + + + SAVE + + + + + SAXO + whois.aridnrs.net.au + + + SB + whois.nic.net.sb + + + SBI + whois.nic.sbi + + + SBS + whois.nic.sbs + + + SC + whois2.afilias-grs.net + + + SCA + whois.nic.sca + + + SCB + whois.nic.scb + + + SCHAEFFLER + whois.afilias-srs.net + + + SCHMIDT + whois.nic.schmidt + + + SCHOLARSHIPS + whois.nic.scholarships + + + SCHOOL + whois.nic.school + + + SCHULE + whois.nic.schule + + + SCHWARZ + whois.nic.schwarz + + + SCIENCE + whois.nic.science + + + SCJOHNSON + whois.nic.scjohnson + + + SCOR + whois.nic.scor + + + SCOT + whois.nic.scot + + + SD + + + + + SE + whois.iis.se + + + SEARCH + whois.nic.google + + + SEAT + whois.nic.seat + + + SECURE + + + + + SECURITY + whois.nic.security + + + SEEK + whois.nic.seek + + + SELECT + whois.nic.select + + + SENER + + + + + SERVICES + whois.nic.services + + + SES + whois.nic.ses + + + SEVEN + whois.nic.seven + + + SEW + whois.afilias-srs.net + + + SEX + whois.afilias-srs.net + + + SEXY + whois.uniregistry.net + + + SFR + whois.nic.sfr + + + SG + whois.sgnic.sg + + + SH + whois.nic.sh + + + SHANGRILA + whois.nic.shangrila + + + SHARP + whois.nic.gmo + + + SHAW + whois.afilias-srs.net + + + SHELL + whois.nic.shell + + + SHIA + whois.agitsys.net + + + SHIKSHA + whois.afilias.net + + + SHOES + whois.nic.shoes + + + SHOP + + + + + SHOPPING + whois.nic.shopping + + + SHOUJI + whois.teleinfo.cn + + + SHOW + whois.nic.show + + + SHOWTIME + whois.afilias-srs.net + + + SHRIRAM + whois.afilias-srs.net + + + SI + whois.register.si + + + SILK + + + + + SINA + whois.nic.sina + + + SINGLES + whois.nic.singles + + + SITE + whois.nic.site + + + SJ + + + + + SK + whois.sk-nic.sk + + + SKI + whois.afilias.net + + + SKIN + whois.nic.skin + + + SKY + whois.nic.sky + + + SKYPE + + + + + SL + + + + + SLING + whois.nic.sling + + + SM + whois.nic.sm + + + SMART + whois.nic.smart + + + SMILE + + + + + SN + whois.nic.sn + + + SNCF + whois-sncf.nic.fr + + + SO + whois.nic.so + + + SOCCER + whois.nic.soccer + + + SOCIAL + whois.nic.social + + + SOFTBANK + whois.nic.softbank + + + SOFTWARE + whois.nic.software + + + SOHU + + + + + SOLAR + whois.nic.solar + + + SOLUTIONS + whois.nic.solutions + + + SONG + + + + + SONY + whois.nic.sony + + + SOY + whois.nic.google + + + SPACE + whois.nic.space + + + SPIEGEL + whois.ksregistry.net + + + SPORT + whois.nic.sport + + + SPOT + + + + + SPREADBETTING + whois.nic.spreadbetting + + + SR + + + + + SRL + whois.afilias-srs.net + + + SRT + whois.afilias-srs.net + + + ST + whois.nic.st + + + STADA + whois.afilias-srs.net + + + STAPLES + + + + + STAR + whois.nic.star + + + STARHUB + whois.nic.starhub + + + STATEBANK + whois.nic.statebank + + + STATEFARM + + + + + STATOIL + whois.nic.statoil + + + STC + whois.nic.stc + + + STCGROUP + whois.nic.stcgroup + + + STOCKHOLM + whois.afilias-srs.net + + + STORAGE + whois.nic.storage + + + STORE + whois.nic.store + + + STREAM + + + + + STUDIO + whois.nic.studio + + + STUDY + whois.nic.study + + + STYLE + whois.nic.style + + + SU + whois.tcinet.ru + + + SUCKS + whois.nic.sucks + + + SUPPLIES + whois.nic.supplies + + + SUPPLY + whois.nic.supply + + + SUPPORT + whois.nic.support + + + SURF + whois.nic.surf + + + SURGERY + whois.nic.surgery + + + SUZUKI + + + + + SV + + + + + SWATCH + whois.nic.swatch + + + SWIFTCOVER + + + + + SWISS + whois.nic.swiss + + + SX + whois.sx + + + SY + whois.tld.sy + + + SYDNEY + whois.nic.sydney + + + SYMANTEC + whois.nic.symantec + + + SYSTEMS + whois.nic.systems + + + SZ + + + + + TAB + whois.nic.tab + + + TAIPEI + whois.nic.taipei + + + TALK + + + + + TAOBAO + + + + + TARGET + + + + + TATAMOTORS + whois.nic.tatamotors + + + TATAR + whois.nic.tatar + + + TATTOO + whois.uniregistry.net + + + TAX + whois.nic.tax + + + TAXI + whois.nic.taxi + + + TC + whois.nic.tc + + + TCI + whois.agitsys.net + + + TD + 41.74.44.44 + + + TDK + whois.nic.tdk + + + TEAM + whois.nic.team + + + TECH + whois.nic.tech + + + TECHNOLOGY + whois.nic.technology + + + TEL + whois.nic.tel + + + TELEFONICA + whois-fe.telefonica.tango.knipp.de + + + TEMASEK + whois.afilias-srs.net + + + TENNIS + whois.nic.tennis + + + TEVA + whois.nic.teva + + + TF + whois.nic.tf + + + TG + whois.nic.tg + + + TH + whois.thnic.co.th + + + THD + whois.nic.thd + + + THEATER + whois.nic.theater + + + THEATRE + whois.nic.theatre + + + TIAA + whois.nic.tiaa + + + TICKETS + whois.nic.tickets + + + TIENDA + whois.nic.tienda + + + TIFFANY + whois.nic.tiffany + + + TIPS + whois.nic.tips + + + TIRES + whois.nic.tires + + + TIROL + whois.nic.tirol + + + TJ + + + + + TJMAXX + + + + + TJX + + + + + TK + whois.dot.tk + + + TKMAXX + + + + + TL + whois.nic.tl + + + TM + whois.nic.tm + + + TMALL + + + + + TN + whois.ati.tn + + + TO + whois.tonic.to + + + TODAY + whois.nic.today + + + TOKYO + + + + + TOOLS + whois.nic.tools + + + TOP + whois.nic.top + + + TORAY + whois.nic.toray + + + TOSHIBA + whois.nic.toshiba + + + TOTAL + whois-total.nic.fr + + + TOURS + whois.nic.tours + + + TOWN + whois.nic.town + + + TOYOTA + whois.nic.toyota + + + TOYS + whois.nic.toys + + + TR + whois.nic.tr + + + TRADE + whois.nic.trade + + + TRADING + whois.nic.trading + + + TRAINING + whois.nic.training + + + TRAVEL + whois.nic.travel + + + TRAVELCHANNEL + whois.nic.travelchannel + + + TRAVELERS + whois.afilias-srs.net + + + TRAVELERSINSURANCE + whois.afilias-srs.net + + + TRUST + whois.nic.trust + + + TRV + whois.afilias-srs.net + + + TT + + + + + TUBE + + + + + TUI + whois.ksregistry.net + + + TUNES + + + + + TUSHU + + + + + TV + tvwhois.verisign-grs.com + + + TVS + whois.nic.tvs + + + TW + whois.twnic.net.tw + + + TZ + whois.tznic.or.tz + + + UA + whois.ua + + + UBANK + whois.nic.ubank + + + UBS + whois.nic.ubs + + + UCONNECT + whois.afilias-srs.net + + + UG + whois.co.ug + + + UK + whois.nic.uk + + + UNICOM + + + + + UNIVERSITY + whois.nic.university + + + UNO + + + + + UOL + whois.gtlds.nic.br + + + UPS + whois.nic.ups + + + US + whois.nic.us + + + UY + whois.nic.org.uy + + + UZ + whois.cctld.uz + + + VA + + + + + VACATIONS + whois.nic.vacations + + + VANA + whois.nic.vana + + + VANGUARD + whois.nic.vanguard + + + VC + whois2.afilias-grs.net + + + VE + whois.nic.ve + + + VEGAS + whois.afilias-srs.net + + + VENTURES + whois.nic.ventures + + + VERISIGN + whois.nic.verisign + + + VERSICHERUNG + whois.nic.versicherung + + + VET + whois.nic.vet + + + VG + whois.nic.vg + + + VI + + + + + VIAJES + whois.nic.viajes + + + VIDEO + whois.nic.video + + + VIG + whois.afilias-srs.net + + + VIKING + whois.afilias-srs.net + + + VILLAS + whois.nic.villas + + + VIN + whois.nic.vin + + + VIP + whois.nic.vip + + + VIRGIN + whois.nic.virgin + + + VISA + whois.nic.visa + + + VISION + whois.nic.vision + + + VISTAPRINT + whois.nic.vistaprint + + + VIVA + whois.nic.viva + + + VIVO + + + + + VLAANDEREN + whois.nic.vlaanderen + + + VN + + + + + VODKA + whois.nic.vodka + + + VOLKSWAGEN + whois.afilias-srs.net + + + VOLVO + whois.nic.volvo + + + VOTE + whois.afilias.net + + + VOTING + whois.voting.tld-box.at + + + VOTO + whois.afilias.net + + + VOYAGE + whois.nic.voyage + + + VU + vunic.vu + + + VUELOS + + + + + WALES + whois.nic.wales + + + WALMART + whois.nic.walmart + + + WALTER + whois.nic.walter + + + WANG + whois.gtld.knet.cn + + + WANGGOU + + + + + WARMAN + whois.nic.warman + + + WATCH + whois.nic.watch + + + WATCHES + + + + + WEATHER + + + + + WEATHERCHANNEL + + + + + WEBCAM + whois.nic.webcam + + + WEBER + whois.nic.weber + + + WEBSITE + whois.nic.website + + + WED + whois.nic.wed + + + WEDDING + whois.nic.wedding + + + WEIBO + whois.nic.weibo + + + WEIR + + + + + WF + whois.nic.wf + + + WHOSWHO + whois.nic.whoswho + + + WIEN + whois.nic.wien + + + WIKI + whois.nic.wiki + + + WILLIAMHILL + + + + + WIN + whois.nic.win + + + WINDOWS + + + + + WINE + whois.nic.wine + + + WINNERS + + + + + WME + whois.nic.wme + + + WOLTERSKLUWER + whois.nic.wolterskluwer + + + WOODSIDE + whois.nic.woodside + + + WORK + whois.nic.work + + + WORKS + whois.nic.works + + + WORLD + whois.nic.world + + + WOW + + + + + WS + whois.website.ws + + + WTC + whois.nic.wtc + + + WTF + whois.nic.wtf + + + XBOX + + + + + XEROX + whois.nic.xerox + + + XFINITY + whois.nic.xfinity + + + XIHUAN + whois.teleinfo.cn + + + XIN + whois.nic.xin + + + XN--11B4C3D + whois.nic.xn--11b4c3d + + + XN--1CK2E1B + + + + + XN--1QQW23A + whois.ngtld.cn + + + XN--2SCRJ9C + + + + + XN--30RR7Y + whois.gtld.knet.cn + + + XN--3BST00M + whois.gtld.knet.cn + + + XN--3DS443G + whois.teleinfo.cn + + + XN--3E0B707E + whois.kr + + + XN--3HCRJ9C + + + + + XN--3OQ18VL8PN36A + whois.nic.xn--3oq18vl8pn36a + + + XN--3PXU8K + whois.nic.xn--3pxu8k + + + XN--42C2D9A + whois.nic.xn--42c2d9a + + + XN--45BR5CYL + + + + + XN--45BRJ9C + + + + + XN--45Q11C + whois.nic.xn--45q11c + + + XN--4GBRIM + whois.afilias-srs.net + + + XN--54B7FTA0CC + + + + + XN--55QW42G + whois.conac.cn + + + XN--55QX5D + whois.ngtld.cn + + + XN--5SU34J936BGSG + whois.nic.xn--5su34j936bgsg + + + XN--5TZM5G + whois.nic.xn--5tzm5g + + + XN--6FRZ82G + whois.afilias.net + + + XN--6QQ986B3XL + whois.gtld.knet.cn + + + XN--80ADXHKS + whois.nic.xn--80adxhks + + + XN--80AO21A + whois.nic.kz + + + XN--80AQECDR1A + whois.aridnrs.net.au + + + XN--80ASEHDB + whois.online.rs.corenic.net + + + XN--80ASWG + whois.site.rs.corenic.net + + + XN--8Y0A063A + + + + + XN--90A3AC + whois.rnids.rs + + + XN--90AE + whois.imena.bg + + + XN--90AIS + whois.cctld.by + + + XN--9DBQ2A + whois.nic.xn--9dbq2a + + + XN--9ET52U + whois.gtld.knet.cn + + + XN--9KRT00A + whois.nic.xn--9krt00a + + + XN--B4W605FERD + whois.afilias-srs.net + + + XN--BCK1B9A5DRE4C + + + + + XN--C1AVG + whois.publicinterestregistry.net + + + XN--C2BR7G + whois.nic.xn--c2br7g + + + XN--CCK2B3B + + + + + XN--CG4BKI + whois.kr + + + XN--CLCHC0EA0B2G2A9GCD + whois.sgnic.sg + + + XN--CZR694B + + + + + XN--CZRS0T + whois.nic.xn--czrs0t + + + XN--CZRU2D + whois.gtld.knet.cn + + + XN--D1ACJ3B + whois.nic.xn--d1acj3b + + + XN--D1ALF + whois.marnet.mk + + + XN--E1A4C + whois.eu + + + XN--ECKVDTC9D + + + + + XN--EFVY88H + whois.nic.xn--efvy88h + + + XN--ESTV75G + whois.nic.xn--estv75g + + + XN--FCT429K + + + + + XN--FHBEI + whois.nic.xn--fhbei + + + XN--FIQ228C5HS + whois.teleinfo.cn + + + XN--FIQ64B + whois.gtld.knet.cn + + + XN--FIQS8S + cwhois.cnnic.cn + + + XN--FIQZ9S + cwhois.cnnic.cn + + + XN--FJQ720A + whois.nic.xn--fjq720a + + + XN--FLW351E + whois.nic.google + + + XN--FPCRJ9C3D + + + + + XN--FZC2C9E2C + + + + + XN--FZYS8D69UVGM + whois.nic.xn--fzys8d69uvgm + + + XN--G2XX48C + + + + + XN--GCKR3F0F + + + + + XN--GECRJ9C + + + + + XN--GK3AT1E + + + + + XN--H2BREG3EVE + + + + + XN--H2BRJ9C + + + + + XN--H2BRJ9C8C + + + + + XN--HXT814E + whois.nic.xn--hxt814e + + + XN--I1B6B1A6A2E + whois.publicinterestregistry.net + + + XN--IMR513N + + + + + XN--IO0A7I + whois.ngtld.cn + + + XN--J1AEF + whois.nic.xn--j1aef + + + XN--J1AMH + whois.dotukr.com + + + XN--J6W193G + whois.hkirc.hk + + + XN--JLQ61U9W7B + whois.nic.xn--jlq61u9w7b + + + XN--JVR189M + + + + + XN--KCRX77D1X4A + whois.nic.xn--kcrx77d1x4a + + + XN--KPRW13D + whois.twnic.net.tw + + + XN--KPRY57D + whois.twnic.net.tw + + + XN--KPU716F + + + + + XN--KPUT3I + whois.nic.xn--kput3i + + + XN--L1ACC + + + + + XN--LGBBAT1AD8J + whois.nic.dz + + + XN--MGB9AWBF + whois.registry.om + + + XN--MGBA3A3EJT + + + + + XN--MGBA3A4F16A + whois.nic.ir + + + XN--MGBA7C0BBN0A + whois.nic.xn--mgba7c0bbn0a + + + XN--MGBAAKC7DVF + whois.centralnic.com + + + XN--MGBAAM7A8H + whois.aeda.net.ae + + + XN--MGBAB2BD + whois.bazaar.coreregistry.net + + + XN--MGBAI9AZGQP6J + + + + + XN--MGBAYH7GPA + + + + + XN--MGBB9FBPOB + + + + + XN--MGBBH1A + + + + + XN--MGBBH1A71E + + + + + XN--MGBC0A9AZCG + + + + + XN--MGBCA7DZDO + whois.nic.xn--mgbca7dzdo + + + XN--MGBERP4A5D4AR + whois.nic.net.sa + + + XN--MGBGU82A + + + + + XN--MGBI4ECEXP + whois.aridnrs.net.au + + + XN--MGBPL2FH + + + + + XN--MGBT3DHD + whois.agitsys.net + + + XN--MGBTX2B + whois.cmc.iq + + + XN--MGBX4CD0AB + whois.mynic.my + + + XN--MIX891F + whois.monic.mo + + + XN--MK1BU44C + whois.nic.xn--mk1bu44c + + + XN--MXTQ1M + whois.nic.xn--mxtq1m + + + XN--NGBC5AZD + whois.nic.xn--ngbc5azd + + + XN--NGBE9E0A + whois.nic.xn--ngbe9e0a + + + XN--NGBRX + whois.nic.xn--ngbrx + + + XN--NODE + whois.itdc.ge + + + XN--NQV7F + whois.publicinterestregistry.net + + + XN--NQV7FS00EMA + whois.nic.xn--nqv7fs00ema + + + XN--NYQY26A + + + + + XN--O3CW4H + whois.thnic.co.th + + + XN--OGBPF8FL + whois.tld.sy + + + XN--OTU796D + + + + + XN--P1ACF + whois.nic.xn--p1acf + + + XN--P1AI + whois.tcinet.ru + + + XN--PBT977C + + + + + XN--PGBS0DH + + + + + XN--PSSY2U + whois.nic.xn--pssy2u + + + XN--Q9JYB4C + whois.nic.google + + + XN--QCKA1PMC + whois.nic.google + + + XN--QXAM + + + + + XN--RHQV96G + + + + + XN--ROVU88B + + + + + XN--RVC1E0AM3E + + + + + XN--S9BRJ9C + + + + + XN--SES554G + whois.registry.knet.cn + + + XN--T60B56A + whois.nic.xn--t60b56a + + + XN--TCKWE + whois.nic.xn--tckwe + + + XN--TIQ49XQYJ + whois.aridnrs.net.au + + + XN--UNUP4Y + whois.nic.xn--unup4y + + + XN--VERMGENSBERATER-CTB + whois.ksregistry.net + + + XN--VERMGENSBERATUNG-PWB + whois.ksregistry.net + + + XN--VHQUV + whois.nic.xn--vhquv + + + XN--VUQ861B + whois.teleinfo.cn + + + XN--W4R85EL8FHU5DNRA + whois.nic.xn--w4r85el8fhu5dnra + + + XN--W4RS40L + whois.nic.xn--w4rs40l + + + XN--WGBH1C + + + + + XN--WGBL6A + whois.registry.qa + + + XN--XHQ521B + whois.ngtld.cn + + + XN--XKC2AL3HYE2A + + + + + XN--XKC2DL3A5EE0H + + + + + XN--Y9A3AQ + whois.amnic.net + + + XN--YFRO4I67O + whois.sgnic.sg + + + XN--YGBI2AMMX + whois.pnina.ps + + + XN--ZFR164B + whois.conac.cn + + + XXX + whois.nic.xxx + + + XYZ + whois.nic.xyz + + + YACHTS + whois.afilias-srs.net + + + YAHOO + + + + + YAMAXUN + + + + + YANDEX + + + + + YE + + + + + YODOBASHI + whois.nic.gmo + + + YOGA + whois.nic.yoga + + + YOKOHAMA + + + + + YOU + + + + + YOUTUBE + whois.nic.google + + + YT + whois.nic.yt + + + YUN + whois.teleinfo.cn + + + ZA + + + + + ZAPPOS + + + + + ZARA + whois.afilias-srs.net + + + ZERO + + + + + ZIP + whois.nic.google + + + ZIPPO + + + + + ZM + whois.nic.zm + + + ZONE + whois.nic.zone + + + ZUERICH + whois.ksregistry.net + + + ZW + + + + + + + + + + \ No newline at end of file From b04791ca00f6cbcfa6718cfe63264b38a4674dc7 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Tue, 2 Oct 2018 14:45:11 +0200 Subject: [PATCH 7/9] whois view/viewmodel added --- .../NETworkManager/ApplicationViewManager.cs | 1 - .../Controls/DragablzTabHostWindow.xaml.cs | 3 + Source/NETworkManager/MainWindow.xaml.cs | 20 +- Source/NETworkManager/Models/Network/Whois.cs | 60 +++- .../Models/Network/WhoisServerInfo.cs | 14 + .../Models/Settings/SettingsInfo.cs | 47 +++ Source/NETworkManager/NETworkManager.csproj | 21 ++ .../NETworkManager/Utilities/RegexHelper.cs | 3 + .../Validators/DomainValidator.cs | 15 + .../ViewModels/WhoisHostViewModel.cs | 75 +++++ .../ViewModels/WhoisViewModel.cs | 298 ++++++++++++++++++ .../NETworkManager/Views/WhoisHostView.xaml | 74 +++++ .../Views/WhoisHostView.xaml.cs | 17 + Source/NETworkManager/Views/WhoisView.xaml | 144 +++++++++ Source/NETworkManager/Views/WhoisView.xaml.cs | 23 ++ 15 files changed, 782 insertions(+), 33 deletions(-) create mode 100644 Source/NETworkManager/Models/Network/WhoisServerInfo.cs create mode 100644 Source/NETworkManager/Validators/DomainValidator.cs create mode 100644 Source/NETworkManager/ViewModels/WhoisHostViewModel.cs create mode 100644 Source/NETworkManager/ViewModels/WhoisViewModel.cs create mode 100644 Source/NETworkManager/Views/WhoisHostView.xaml create mode 100644 Source/NETworkManager/Views/WhoisHostView.xaml.cs create mode 100644 Source/NETworkManager/Views/WhoisView.xaml create mode 100644 Source/NETworkManager/Views/WhoisView.xaml.cs diff --git a/Source/NETworkManager/ApplicationViewManager.cs b/Source/NETworkManager/ApplicationViewManager.cs index b5b42e188c..6a3329c6e3 100644 --- a/Source/NETworkManager/ApplicationViewManager.cs +++ b/Source/NETworkManager/ApplicationViewManager.cs @@ -100,7 +100,6 @@ public static Canvas GetIconByName(Name name) case Name.WakeOnLAN: canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.Power }); break; - case Name.SubnetCalculator: canvas.Children.Add(new PackIconModern { Kind = PackIconModernKind.Calculator }); break; diff --git a/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs b/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs index 8fef7683db..d8abaf40a0 100644 --- a/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs +++ b/Source/NETworkManager/Controls/DragablzTabHostWindow.xaml.cs @@ -111,6 +111,9 @@ private void CloseItemAction(ItemActionCallbackArgs args) break; case ApplicationViewManager.Name.Lookup: break; + case ApplicationViewManager.Name.Whois: + ((WhoisView)((DragablzTabItem)args.DragablzItem.Content).View).CloseTab(); + break; case ApplicationViewManager.Name.Connections: break; case ApplicationViewManager.Name.Listeners: diff --git a/Source/NETworkManager/MainWindow.xaml.cs b/Source/NETworkManager/MainWindow.xaml.cs index 04408c3120..ec218181ad 100644 --- a/Source/NETworkManager/MainWindow.xaml.cs +++ b/Source/NETworkManager/MainWindow.xaml.cs @@ -314,22 +314,6 @@ protected override async void OnContentRendered(EventArgs e) // Search for updates... if (SettingsManager.Current.Update_CheckForUpdatesAtStartup) CheckForUpdates(); - - - // ----------------------------------------------------- - // Test below!! - - Debug.WriteLine( Whois.GetWhoisServer("test.de")); - - /* - var whois = new Whois(); - - var result = whois.Query("google.de", "whois.internic.com"); - - Debug.WriteLine(result); - */ - - // End test } private void LoadApplicationList() @@ -441,6 +425,7 @@ private async void MetroWindowMain_Closing(object sender, CancelEventArgs e) private SubnetCalculatorHostView _subnetCalculatorHostView; private HTTPHeadersHostView _httpHeadersHostView; private LookupHostView _lookupHostView; + private WhoisHostView _whoisHostView; private ConnectionsView _connectionsView; private ListenersView _listenersView; private ARPTableView _arpTableView; @@ -529,7 +514,10 @@ private void ChangeApplicationView(ApplicationViewManager.Name name) ContentControlApplication.Content = _lookupHostView; break; case ApplicationViewManager.Name.Whois: + if(_whoisHostView ==null) + _whoisHostView = new WhoisHostView(); + ContentControlApplication.Content = _whoisHostView; break; case ApplicationViewManager.Name.HTTPHeaders: if (_httpHeadersHostView == null) diff --git a/Source/NETworkManager/Models/Network/Whois.cs b/Source/NETworkManager/Models/Network/Whois.cs index 5ad2ddf315..665aceb2b7 100644 --- a/Source/NETworkManager/Models/Network/Whois.cs +++ b/Source/NETworkManager/Models/Network/Whois.cs @@ -1,18 +1,54 @@ -using System.IO; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Linq; using System.Net.Sockets; using System.Text; using System.Threading.Tasks; +using System.Xml; +using NETworkManager.Models.Settings; namespace NETworkManager.Models.Network { public class Whois { - public Task QueryAsync(string domain, string whoisServer) + #region Variables + private static readonly string WhoisServerFilePath = + Path.Combine(ConfigurationManager.Current.ExecutionPath, "Resources", "WhoisServers.xml"); + + private static readonly List WhoisServerList; + private static readonly Lookup WhoisServers; + #endregion + + #region Constructor + + static Whois() + { + var document = new XmlDocument(); + document.Load(WhoisServerFilePath); + + WhoisServerList = new List(); + + foreach (XmlNode node in document.SelectNodes("/WhoisServers/WhoisServer")) + { + if (node == null) + continue; + + WhoisServerList.Add(new WhoisServerInfo(node.SelectSingleNode("Server")?.InnerText, node.SelectSingleNode("TLD")?.InnerText)); + } + + WhoisServers = (Lookup)WhoisServerList.ToLookup(x => x.Tld); + } + #endregion + + #region Methods + public static Task QueryAsync(string domain, string whoisServer) { return Task.Run(() => Query(domain, whoisServer)); } - public string Query(string domain, string whoisServer) + public static string Query(string domain, string whoisServer) { var tcpClient = new TcpClient(whoisServer, 43); @@ -25,10 +61,10 @@ public string Query(string domain, string whoisServer) streamWriter.WriteLine(domain); streamWriter.Flush(); - var streamReader = new StreamReader(bufferedStream); + var streamReader = new StreamReader(bufferedStream); var stringBuilder = new StringBuilder(); - + while (!streamReader.EndOfStream) stringBuilder.AppendLine(streamReader.ReadLine()); @@ -39,17 +75,9 @@ public static string GetWhoisServer(string domain) { var domainParts = domain.Split('.'); - var server = string.Empty; - - switch (domainParts[domainParts.Length - 1]) - { - case "de": - server = "de"; - - break; - } - - return server; + // TLD to upper because the lookup is case sensitive + return WhoisServers[domainParts[domainParts.Length - 1].ToUpper()].FirstOrDefault()?.Server; } + #endregion } } diff --git a/Source/NETworkManager/Models/Network/WhoisServerInfo.cs b/Source/NETworkManager/Models/Network/WhoisServerInfo.cs new file mode 100644 index 0000000000..da9d430f9c --- /dev/null +++ b/Source/NETworkManager/Models/Network/WhoisServerInfo.cs @@ -0,0 +1,14 @@ +namespace NETworkManager.Models.Network +{ + public class WhoisServerInfo + { + public string Server { get; set; } + public string Tld { get; set; } + + public WhoisServerInfo(string server, string tld) + { + Server = server; + Tld = tld; + } + } +} diff --git a/Source/NETworkManager/Models/Settings/SettingsInfo.cs b/Source/NETworkManager/Models/Settings/SettingsInfo.cs index fb79eaf78e..786ce79c0e 100644 --- a/Source/NETworkManager/Models/Settings/SettingsInfo.cs +++ b/Source/NETworkManager/Models/Settings/SettingsInfo.cs @@ -2344,6 +2344,53 @@ public ObservableCollection Lookup_Port_PortsHistory } #endregion + #region Whois + private ObservableCollection _whois_WebsiteUriHistory = new ObservableCollection(); + public ObservableCollection Whois_WebsiteUriHistory + { + get => _whois_WebsiteUriHistory; + set + { + if (value == _whois_WebsiteUriHistory) + return; + + _whois_WebsiteUriHistory = value; + SettingsChanged = true; + } + } + + private bool _whois_ExpandStatistics = true; + public bool Whois_ExpandStatistics + { + get => _whois_ExpandStatistics; + set + { + if (value == _whois_ExpandStatistics) + return; + + _whois_ExpandStatistics = value; + SettingsChanged = true; + } + } + + private bool _whois_ShowStatistics = true; + public bool Whois_ShowStatistics + { + get => _whois_ShowStatistics; + set + { + if (value == _whois_ShowStatistics) + return; + + _whois_ShowStatistics = value; + + OnPropertyChanged(); + + SettingsChanged = true; + } + } + #endregion + #region Connections private bool _connections_AutoRefresh; public bool Connections_AutoRefresh diff --git a/Source/NETworkManager/NETworkManager.csproj b/Source/NETworkManager/NETworkManager.csproj index 629090cb6f..b34fffe7b2 100644 --- a/Source/NETworkManager/NETworkManager.csproj +++ b/Source/NETworkManager/NETworkManager.csproj @@ -245,6 +245,7 @@ + @@ -288,6 +289,7 @@ + @@ -300,6 +302,8 @@ + + @@ -352,6 +356,12 @@ RemoteDesktopControl.xaml + + WhoisHostView.xaml + + + WhoisView.xaml + ProfilesView.xaml @@ -593,6 +603,9 @@ + + PreserveNewest + MSBuild:Compile Designer @@ -608,6 +621,14 @@ Designer PreserveNewest + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + MSBuild:Compile Designer diff --git a/Source/NETworkManager/Utilities/RegexHelper.cs b/Source/NETworkManager/Utilities/RegexHelper.cs index e0d80ad86c..8779001349 100644 --- a/Source/NETworkManager/Utilities/RegexHelper.cs +++ b/Source/NETworkManager/Utilities/RegexHelper.cs @@ -60,5 +60,8 @@ public static class RegexHelper // Match a hostname with subnetmask like server-01.example.com/255.255.255.0 public const string HostnameSubnetmaskRegex = @"^" + HostnameValues + @"\/" + SubnetmaskValues + @"$"; + + // Match a domain local.example.com + public const string DomainRegex = @"^(?!:\/\/)([a-zA-Z0-9-_]+\.)*[a-zA-Z0-9][a-zA-Z0-9-_]+\.[a-zA-Z]{2,11}?$"; } } diff --git a/Source/NETworkManager/Validators/DomainValidator.cs b/Source/NETworkManager/Validators/DomainValidator.cs new file mode 100644 index 0000000000..02f17af328 --- /dev/null +++ b/Source/NETworkManager/Validators/DomainValidator.cs @@ -0,0 +1,15 @@ +using System.Globalization; +using System.Text.RegularExpressions; +using System.Windows.Controls; +using NETworkManager.Utilities; + +namespace NETworkManager.Validators +{ + public class DomainValidator : ValidationRule + { + public override ValidationResult Validate(object value, CultureInfo cultureInfo) + { + return Regex.IsMatch((string) value, RegexHelper.DomainRegex) ? ValidationResult.ValidResult : new ValidationResult(false,"** Enter string**"); + } + } +} diff --git a/Source/NETworkManager/ViewModels/WhoisHostViewModel.cs b/Source/NETworkManager/ViewModels/WhoisHostViewModel.cs new file mode 100644 index 0000000000..cd642574cd --- /dev/null +++ b/Source/NETworkManager/ViewModels/WhoisHostViewModel.cs @@ -0,0 +1,75 @@ +using System.Collections.ObjectModel; +using NETworkManager.Controls; +using Dragablz; +using System.Windows.Input; +using NETworkManager.Views; +using NETworkManager.Utilities; + +namespace NETworkManager.ViewModels +{ + public class WhoisHostViewModel : ViewModelBase + { + #region Variables + public IInterTabClient InterTabClient { get; } + public ObservableCollection TabItems { get; } + + private int _tabId; + + private int _selectedTabIndex; + public int SelectedTabIndex + { + get => _selectedTabIndex; + set + { + if (value == _selectedTabIndex) + return; + + _selectedTabIndex = value; + OnPropertyChanged(); + } + } + #endregion + + #region Constructor + public WhoisHostViewModel() + { + InterTabClient = new DragablzInterTabClient(ApplicationViewManager.Name.Whois); + + TabItems = new ObservableCollection + { + new DragablzTabItem(Resources.Localization.Strings.NewTab, new WhoisView (_tabId), _tabId) + }; + } + #endregion + + #region ICommand & Actions + public ICommand AddTabCommand + { + get { return new RelayCommand(p => AddTabAction()); } + } + + private void AddTabAction() + { + AddTab(); + } + + public ItemActionCallback CloseItemCommand => CloseItemAction; + + private static void CloseItemAction(ItemActionCallbackArgs args) + { + ((args.DragablzItem.Content as DragablzTabItem)?.View as WhoisView)?.CloseTab(); + } + #endregion + + #region Methods + private void AddTab() + { + _tabId++; + + TabItems.Add(new DragablzTabItem(Resources.Localization.Strings.NewTab, new WhoisView(_tabId), _tabId)); + + SelectedTabIndex = TabItems.Count - 1; + } + #endregion + } +} \ No newline at end of file diff --git a/Source/NETworkManager/ViewModels/WhoisViewModel.cs b/Source/NETworkManager/ViewModels/WhoisViewModel.cs new file mode 100644 index 0000000000..f9ef4c47b5 --- /dev/null +++ b/Source/NETworkManager/ViewModels/WhoisViewModel.cs @@ -0,0 +1,298 @@ +using NETworkManager.Models.Network; +using System; +using System.Windows.Input; +using NETworkManager.Models.Settings; +using System.Windows.Threading; +using System.Diagnostics; +using System.ComponentModel; +using System.Windows.Data; +using System.Linq; +using NETworkManager.Utilities; +using System.Windows; +using NETworkManager.Controls; +using Dragablz; + +namespace NETworkManager.ViewModels +{ + public class WhoisViewModel : ViewModelBase + { + #region Variables + private readonly int _tabId; + + private readonly DispatcherTimer _dispatcherTimer = new DispatcherTimer(); + private readonly Stopwatch _stopwatch = new Stopwatch(); + + private readonly bool _isLoading; + + private string _domain; + public string Domain + { + get => _domain; + set + { + if (value == _domain) + return; + + _domain = value; + OnPropertyChanged(); + } + } + + public ICollectionView WebsiteUriHistoryView { get; } + + private bool _isWhoisRunning; + public bool IsWhoisRunning + { + get => _isWhoisRunning; + set + { + if (value == _isWhoisRunning) + return; + + _isWhoisRunning = value; + OnPropertyChanged(); + } + } + + private string _whoisResult; + public string WhoisResult + { + get => _whoisResult; + set + { + if (value == _whoisResult) + return; + + _whoisResult = value; + OnPropertyChanged(); + } + } + + private bool _displayStatusMessage; + public bool DisplayStatusMessage + { + get => _displayStatusMessage; + set + { + if (value == _displayStatusMessage) + return; + + _displayStatusMessage = value; + OnPropertyChanged(); + } + } + + private string _statusMessage; + public string StatusMessage + { + get => _statusMessage; + set + { + if (value == _statusMessage) + return; + + _statusMessage = value; + OnPropertyChanged(); + } + } + + private DateTime? _startTime; + public DateTime? StartTime + { + get => _startTime; + set + { + if (value == _startTime) + return; + + _startTime = value; + OnPropertyChanged(); + } + } + + private TimeSpan _duration; + public TimeSpan Duration + { + get => _duration; + set + { + if (value == _duration) + return; + + _duration = value; + OnPropertyChanged(); + } + } + + private DateTime? _endTime; + public DateTime? EndTime + { + get => _endTime; + set + { + if (value == _endTime) + return; + + _endTime = value; + OnPropertyChanged(); + } + } + + private int _headersCount; + public int HeadersCount + { + get => _headersCount; + set + { + if (value == _headersCount) + return; + + _headersCount = value; + OnPropertyChanged(); + } + } + + private bool _expandStatistics; + public bool ExpandStatistics + { + get => _expandStatistics; + set + { + if (value == _expandStatistics) + return; + + if (!_isLoading) + SettingsManager.Current.HTTPHeaders_ExpandStatistics = value; + + _expandStatistics = value; + OnPropertyChanged(); + } + } + + public bool ShowStatistics => SettingsManager.Current.HTTPHeaders_ShowStatistics; + + #endregion + + #region Contructor, load settings + public WhoisViewModel(int tabId) + { + _isLoading = true; + _tabId = tabId; + + // Set collection view + WebsiteUriHistoryView = CollectionViewSource.GetDefaultView(SettingsManager.Current.Whois_WebsiteUriHistory); + + LoadSettings(); + + // Detect if settings have changed... + SettingsManager.Current.PropertyChanged += SettingsManager_PropertyChanged; + + _isLoading = false; + } + + private void LoadSettings() + { + ExpandStatistics = SettingsManager.Current.Whois_ExpandStatistics; + } + #endregion + + #region ICommands & Actions + public ICommand QueryCommand + { + get { return new RelayCommand(p => QueryAction()); } + } + + private void QueryAction() + { + Check(); + } + #endregion + + #region Methods + private async void Check() + { + DisplayStatusMessage = false; + IsWhoisRunning = true; + + // Measure time + StartTime = DateTime.Now; + _stopwatch.Start(); + _dispatcherTimer.Tick += DispatcherTimer_Tick; + _dispatcherTimer.Interval = new TimeSpan(0, 0, 0, 0, 100); + _dispatcherTimer.Start(); + EndTime = null; + + WhoisResult = null; + HeadersCount = 0; + + // Change the tab title (not nice, but it works) + var window = Application.Current.Windows.OfType().FirstOrDefault(x => x.IsActive); + + if (window != null) + { + foreach (var tabablzControl in VisualTreeHelper.FindVisualChildren(window)) + { + tabablzControl.Items.OfType().First(x => x.Id == _tabId).Header = Domain; + } + } + + try + { + var whoisServer = Whois.GetWhoisServer(Domain); + + // check null + WhoisResult = await Whois.QueryAsync(Domain, whoisServer); + } + catch (Exception ex) + { + StatusMessage = ex.Message; + DisplayStatusMessage = true; + } + + AddWebsiteUriToHistory(Domain); + + // Stop timer and stopwatch + _stopwatch.Stop(); + _dispatcherTimer.Stop(); + + Duration = _stopwatch.Elapsed; + EndTime = DateTime.Now; + + _stopwatch.Reset(); + + IsWhoisRunning = false; + } + + public void OnClose() + { + + } + + private void AddWebsiteUriToHistory(string websiteUri) + { + // Create the new list + var list = ListHelper.Modify(SettingsManager.Current.Whois_WebsiteUriHistory.ToList(), websiteUri, SettingsManager.Current.General_HistoryListEntries); + + // Clear the old items + SettingsManager.Current.Whois_WebsiteUriHistory.Clear(); + OnPropertyChanged(nameof(Domain)); // Raise property changed again, after the collection has been cleared + + // Fill with the new items + list.ForEach(x => SettingsManager.Current.Whois_WebsiteUriHistory.Add(x)); + } + #endregion + + #region Events + private void DispatcherTimer_Tick(object sender, EventArgs e) + { + Duration = _stopwatch.Elapsed; + } + + private void SettingsManager_PropertyChanged(object sender, PropertyChangedEventArgs e) + { + if (e.PropertyName == nameof(SettingsInfo.Whois_ShowStatistics)) + OnPropertyChanged(nameof(ShowStatistics)); + } + #endregion + } +} \ No newline at end of file diff --git a/Source/NETworkManager/Views/WhoisHostView.xaml b/Source/NETworkManager/Views/WhoisHostView.xaml new file mode 100644 index 0000000000..41e8f18aff --- /dev/null +++ b/Source/NETworkManager/Views/WhoisHostView.xaml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/NETworkManager/Views/WhoisHostView.xaml.cs b/Source/NETworkManager/Views/WhoisHostView.xaml.cs new file mode 100644 index 0000000000..37cca5177b --- /dev/null +++ b/Source/NETworkManager/Views/WhoisHostView.xaml.cs @@ -0,0 +1,17 @@ +using NETworkManager.ViewModels; + +namespace NETworkManager.Views +{ + public partial class WhoisHostView + { + private readonly WhoisHostViewModel _viewModel = new WhoisHostViewModel(); + + public WhoisHostView() + { + InitializeComponent(); + DataContext = _viewModel; + + InterTabController.Partition = ApplicationViewManager.Name.HTTPHeaders.ToString(); + } + } +} diff --git a/Source/NETworkManager/Views/WhoisView.xaml b/Source/NETworkManager/Views/WhoisView.xaml new file mode 100644 index 0000000000..1641de6133 --- /dev/null +++ b/Source/NETworkManager/Views/WhoisView.xaml @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/NETworkManager/Views/WhoisView.xaml.cs b/Source/NETworkManager/Views/WhoisView.xaml.cs new file mode 100644 index 0000000000..81f38c9d01 --- /dev/null +++ b/Source/NETworkManager/Views/WhoisView.xaml.cs @@ -0,0 +1,23 @@ +using NETworkManager.ViewModels; + +namespace NETworkManager.Views +{ + public partial class WhoisView + { + private readonly WhoisViewModel _viewModel; + + public WhoisView(int tabId) + { + InitializeComponent(); + + _viewModel = new WhoisViewModel(tabId); + + DataContext = _viewModel; + } + + public void CloseTab() + { + _viewModel.OnClose(); + } + } +} From f57b6a808244f9c07a1d999f680484b72ce1f719 Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Tue, 2 Oct 2018 17:59:31 +0200 Subject: [PATCH 8/9] strings added --- .../Models/Settings/SettingsInfo.cs | 10 +- .../Localization/Strings.Designer.cs | 1279 +++++++++-------- .../Resources/Localization/Strings.resx | 9 + .../Validators/DomainValidator.cs | 3 +- .../ViewModels/WhoisViewModel.cs | 30 +- .../NETworkManager/Views/WhoisHostView.xaml | 2 +- 6 files changed, 689 insertions(+), 644 deletions(-) diff --git a/Source/NETworkManager/Models/Settings/SettingsInfo.cs b/Source/NETworkManager/Models/Settings/SettingsInfo.cs index 786ce79c0e..2b8fefaa74 100644 --- a/Source/NETworkManager/Models/Settings/SettingsInfo.cs +++ b/Source/NETworkManager/Models/Settings/SettingsInfo.cs @@ -2345,16 +2345,16 @@ public ObservableCollection Lookup_Port_PortsHistory #endregion #region Whois - private ObservableCollection _whois_WebsiteUriHistory = new ObservableCollection(); - public ObservableCollection Whois_WebsiteUriHistory + private ObservableCollection _whois_DomainHistory = new ObservableCollection(); + public ObservableCollection Whois_DomainHistory { - get => _whois_WebsiteUriHistory; + get => _whois_DomainHistory; set { - if (value == _whois_WebsiteUriHistory) + if (value == _whois_DomainHistory) return; - _whois_WebsiteUriHistory = value; + _whois_DomainHistory = value; SettingsChanged = true; } } diff --git a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs index ee2857034c..a118d73288 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs +++ b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// Dieser Code wurde von einem Tool generiert. -// Laufzeitversion:4.0.30319.42000 +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 // -// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn -// der Code erneut generiert wird. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace NETworkManager.Resources.Localization { /// - /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// A strongly-typed resource class, for looking up localized strings, etc. /// - // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert - // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. - // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen - // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,7 +33,7 @@ internal Strings() { } /// - /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ internal Strings() { } /// - /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle - /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { @@ -61,7 +61,7 @@ internal Strings() { } /// - /// Sucht eine lokalisierte Zeichenfolge, die About ähnelt. + /// Looks up a localized string similar to About. /// public static string About { get { @@ -70,7 +70,7 @@ public static string About { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Accent ähnelt. + /// Looks up a localized string similar to Accent. /// public static string Accent { get { @@ -79,7 +79,7 @@ public static string Accent { } /// - /// Sucht eine lokalisierte Zeichenfolge, die add ähnelt. + /// Looks up a localized string similar to add. /// public static string Add { get { @@ -88,7 +88,7 @@ public static string Add { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to open a new connection... ähnelt. + /// Looks up a localized string similar to Add a tab to open a new connection.... /// public static string AddATabToOpenANewConnection { get { @@ -97,7 +97,7 @@ public static string AddATabToOpenANewConnection { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a DNS lookup... ähnelt. + /// Looks up a localized string similar to Add a tab to perform a DNS lookup.... /// public static string AddATabToPerformADNSLookup { get { @@ -106,7 +106,7 @@ public static string AddATabToPerformADNSLookup { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a network scan... ähnelt. + /// Looks up a localized string similar to Add a tab to perform a network scan.... /// public static string AddATabToPerformANetworkScan { get { @@ -115,7 +115,7 @@ public static string AddATabToPerformANetworkScan { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform an SNMP action... ähnelt. + /// Looks up a localized string similar to Add a tab to perform an SNMP action.... /// public static string AddATabToPerformAnSNMPAction { get { @@ -124,7 +124,7 @@ public static string AddATabToPerformAnSNMPAction { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a ping... ähnelt. + /// Looks up a localized string similar to Add a tab to perform a ping.... /// public static string AddATabToPerformAPing { get { @@ -133,7 +133,7 @@ public static string AddATabToPerformAPing { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a port scan... ähnelt. + /// Looks up a localized string similar to Add a tab to perform a port scan.... /// public static string AddATabToPerformAPortScan { get { @@ -142,7 +142,7 @@ public static string AddATabToPerformAPortScan { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a trace... ähnelt. + /// Looks up a localized string similar to Add a tab to perform a trace.... /// public static string AddATabToPerformATrace { get { @@ -151,7 +151,7 @@ public static string AddATabToPerformATrace { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to query the HTTP headers... ähnelt. + /// Looks up a localized string similar to Add a tab to query the HTTP headers.... /// public static string AddATabToQueryTheHTTPHeaders { get { @@ -160,7 +160,16 @@ public static string AddATabToQueryTheHTTPHeaders { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add credentials ähnelt. + /// Looks up a localized string similar to Add a tab to query whois.... + /// + public static string AddATabToQueryWhois { + get { + return ResourceManager.GetString("AddATabToQueryWhois", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Add credentials. /// public static string AddCredentials { get { @@ -169,7 +178,7 @@ public static string AddCredentials { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add DNS suffix (primary) to hostname ähnelt. + /// Looks up a localized string similar to Add DNS suffix (primary) to hostname. /// public static string AddDNSSuffixToHostname { get { @@ -178,7 +187,7 @@ public static string AddDNSSuffixToHostname { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add... ähnelt. + /// Looks up a localized string similar to Add.... /// public static string AddDots { get { @@ -187,7 +196,7 @@ public static string AddDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add entry ähnelt. + /// Looks up a localized string similar to Add entry. /// public static string AddEntry { get { @@ -196,7 +205,7 @@ public static string AddEntry { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add entry... ähnelt. + /// Looks up a localized string similar to Add entry.... /// public static string AddEntryDots { get { @@ -205,7 +214,7 @@ public static string AddEntryDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Additional command line ähnelt. + /// Looks up a localized string similar to Additional command line. /// public static string AdditionalCommandLine { get { @@ -214,7 +223,7 @@ public static string AdditionalCommandLine { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Additionals ähnelt. + /// Looks up a localized string similar to Additionals. /// public static string Additionals { get { @@ -223,7 +232,7 @@ public static string Additionals { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add profile ähnelt. + /// Looks up a localized string similar to Add profile. /// public static string AddProfile { get { @@ -232,7 +241,7 @@ public static string AddProfile { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Add profile... ähnelt. + /// Looks up a localized string similar to Add profile.... /// public static string AddProfileDots { get { @@ -241,7 +250,7 @@ public static string AddProfileDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Adjust screen automatically ähnelt. + /// Looks up a localized string similar to Adjust screen automatically. /// public static string AdjustScreenAutomatically { get { @@ -250,7 +259,7 @@ public static string AdjustScreenAutomatically { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Administrator ähnelt. + /// Looks up a localized string similar to Administrator. /// public static string Administrator { get { @@ -259,7 +268,7 @@ public static string Administrator { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Always show icon in tray ähnelt. + /// Looks up a localized string similar to Always show icon in tray. /// public static string AlwaysShowIconInTray { get { @@ -268,7 +277,7 @@ public static string AlwaysShowIconInTray { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Amber ähnelt. + /// Looks up a localized string similar to Amber. /// public static string Amber { get { @@ -277,7 +286,7 @@ public static string Amber { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Answers ähnelt. + /// Looks up a localized string similar to Answers. /// public static string Answers { get { @@ -286,7 +295,7 @@ public static string Answers { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Appearance ähnelt. + /// Looks up a localized string similar to Appearance. /// public static string Appearance { get { @@ -295,7 +304,7 @@ public static string Appearance { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Application is restarted afterwards ähnelt. + /// Looks up a localized string similar to Application is restarted afterwards. /// public static string ApplicationIsRestartedAfterwards { get { @@ -304,7 +313,7 @@ public static string ApplicationIsRestartedAfterwards { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Applications ähnelt. + /// Looks up a localized string similar to Applications. /// public static string Applications { get { @@ -313,7 +322,7 @@ public static string Applications { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Apply ähnelt. + /// Looks up a localized string similar to Apply. /// public static string Apply { get { @@ -322,7 +331,7 @@ public static string Apply { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Apply Windows key combinations (e.g. ALT+TAB): ähnelt. + /// Looks up a localized string similar to Apply Windows key combinations (e.g. ALT+TAB):. /// public static string ApplyWindowsKeyCombinationsLikeAltTab { get { @@ -331,7 +340,7 @@ public static string ApplyWindowsKeyCombinationsLikeAltTab { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Are you sure? ähnelt. + /// Looks up a localized string similar to Are you sure?. /// public static string AreYouSure { get { @@ -340,7 +349,7 @@ public static string AreYouSure { } /// - /// Sucht eine lokalisierte Zeichenfolge, die ARP ähnelt. + /// Looks up a localized string similar to ARP. /// public static string ARP { get { @@ -349,7 +358,7 @@ public static string ARP { } /// - /// Sucht eine lokalisierte Zeichenfolge, die ARP Table ähnelt. + /// Looks up a localized string similar to ARP Table. /// public static string ARPTable { get { @@ -358,7 +367,7 @@ public static string ARPTable { } /// - /// Sucht eine lokalisierte Zeichenfolge, die At least one application must be visible! ähnelt. + /// Looks up a localized string similar to At least one application must be visible!. /// public static string AtLeastOneApplicationMustBeVisible { get { @@ -367,7 +376,7 @@ public static string AtLeastOneApplicationMustBeVisible { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Attempts ähnelt. + /// Looks up a localized string similar to Attempts. /// public static string Attempts { get { @@ -376,7 +385,7 @@ public static string Attempts { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Auth ähnelt. + /// Looks up a localized string similar to Auth. /// public static string Auth { get { @@ -385,7 +394,7 @@ public static string Auth { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Authentication ähnelt. + /// Looks up a localized string similar to Authentication. /// public static string Authentication { get { @@ -394,7 +403,7 @@ public static string Authentication { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Authentication level ähnelt. + /// Looks up a localized string similar to Authentication level. /// public static string AuthenticationLevel { get { @@ -403,7 +412,7 @@ public static string AuthenticationLevel { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Authorities ähnelt. + /// Looks up a localized string similar to Authorities. /// public static string Authorities { get { @@ -412,7 +421,7 @@ public static string Authorities { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Automatically update every ähnelt. + /// Looks up a localized string similar to Automatically update every. /// public static string AutomaticallyUpdateEvery { get { @@ -421,7 +430,7 @@ public static string AutomaticallyUpdateEvery { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Autostart ähnelt. + /// Looks up a localized string similar to Autostart. /// public static string Autostart { get { @@ -430,7 +439,7 @@ public static string Autostart { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Average time ähnelt. + /// Looks up a localized string similar to Average time. /// public static string AverageTime { get { @@ -439,7 +448,7 @@ public static string AverageTime { } /// - /// Sucht eine lokalisierte Zeichenfolge, die back ähnelt. + /// Looks up a localized string similar to back. /// public static string Back { get { @@ -448,7 +457,7 @@ public static string Back { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Backup ähnelt. + /// Looks up a localized string similar to Backup. /// public static string Backup { get { @@ -457,7 +466,7 @@ public static string Backup { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Dark ähnelt. + /// Looks up a localized string similar to Dark. /// public static string BaseDark { get { @@ -466,7 +475,7 @@ public static string BaseDark { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Light ähnelt. + /// Looks up a localized string similar to Light. /// public static string BaseLight { get { @@ -475,7 +484,7 @@ public static string BaseLight { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Baud ähnelt. + /// Looks up a localized string similar to Baud. /// public static string Baud { get { @@ -484,7 +493,7 @@ public static string Baud { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Black ähnelt. + /// Looks up a localized string similar to Black. /// public static string Black { get { @@ -493,7 +502,7 @@ public static string Black { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Blue ähnelt. + /// Looks up a localized string similar to Blue. /// public static string Blue { get { @@ -502,7 +511,7 @@ public static string Blue { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Broadcast ähnelt. + /// Looks up a localized string similar to Broadcast. /// public static string Broadcast { get { @@ -511,7 +520,7 @@ public static string Broadcast { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Brown ähnelt. + /// Looks up a localized string similar to Brown. /// public static string Brown { get { @@ -520,7 +529,7 @@ public static string Brown { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Buffer ähnelt. + /// Looks up a localized string similar to Buffer. /// public static string Buffer { get { @@ -529,7 +538,7 @@ public static string Buffer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Bytes ähnelt. + /// Looks up a localized string similar to Bytes. /// public static string Bytes { get { @@ -538,7 +547,7 @@ public static string Bytes { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Calculate ähnelt. + /// Looks up a localized string similar to Calculate. /// public static string Calculate { get { @@ -547,7 +556,7 @@ public static string Calculate { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Calculator ähnelt. + /// Looks up a localized string similar to Calculator. /// public static string Calculator { get { @@ -556,7 +565,7 @@ public static string Calculator { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cancel ähnelt. + /// Looks up a localized string similar to Cancel. /// public static string Cancel { get { @@ -565,7 +574,7 @@ public static string Cancel { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The operation has been canceled by the user! ähnelt. + /// Looks up a localized string similar to The operation has been canceled by the user!. /// public static string CanceledByUserMessage { get { @@ -574,7 +583,7 @@ public static string CanceledByUserMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Caps lock is enabled! ähnelt. + /// Looks up a localized string similar to Caps lock is enabled!. /// public static string CapsLockIsEnabled { get { @@ -583,7 +592,7 @@ public static string CapsLockIsEnabled { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Change ähnelt. + /// Looks up a localized string similar to Change. /// public static string Change { get { @@ -592,7 +601,7 @@ public static string Change { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Change Master Password... ähnelt. + /// Looks up a localized string similar to Change Master Password.... /// public static string ChangeMasterPasswordDots { get { @@ -601,7 +610,7 @@ public static string ChangeMasterPasswordDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Check ähnelt. + /// Looks up a localized string similar to Check. /// public static string Check { get { @@ -610,7 +619,7 @@ public static string Check { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Check for updates ähnelt. + /// Looks up a localized string similar to Check for updates. /// public static string CheckForUpdates { get { @@ -619,7 +628,7 @@ public static string CheckForUpdates { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Check for updates at startup ähnelt. + /// Looks up a localized string similar to Check for updates at startup. /// public static string CheckForUpdatesAtStartup { get { @@ -628,7 +637,7 @@ public static string CheckForUpdatesAtStartup { } /// - /// Sucht eine lokalisierte Zeichenfolge, die CIDR ähnelt. + /// Looks up a localized string similar to CIDR. /// public static string CIDR { get { @@ -637,7 +646,7 @@ public static string CIDR { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Class ähnelt. + /// Looks up a localized string similar to Class. /// public static string Class { get { @@ -646,7 +655,7 @@ public static string Class { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Clear filter ähnelt. + /// Looks up a localized string similar to Clear filter. /// public static string ClearFilter { get { @@ -655,7 +664,7 @@ public static string ClearFilter { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Client ähnelt. + /// Looks up a localized string similar to Client. /// public static string Client { get { @@ -664,7 +673,7 @@ public static string Client { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Close ähnelt. + /// Looks up a localized string similar to Close. /// public static string Close { get { @@ -673,7 +682,7 @@ public static string Close { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. + /// Looks up a localized string similar to Closed. /// public static string Closed { get { @@ -682,7 +691,7 @@ public static string Closed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cobalt ähnelt. + /// Looks up a localized string similar to Cobalt. /// public static string Cobalt { get { @@ -691,7 +700,7 @@ public static string Cobalt { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Color depth (bit) ähnelt. + /// Looks up a localized string similar to Color depth (bit). /// public static string ColorDepthBit { get { @@ -700,7 +709,7 @@ public static string ColorDepthBit { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Command Line Arguments ähnelt. + /// Looks up a localized string similar to Command Line Arguments. /// public static string CommandLineArguments { get { @@ -709,7 +718,7 @@ public static string CommandLineArguments { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Community ähnelt. + /// Looks up a localized string similar to Community. /// public static string Community { get { @@ -718,7 +727,7 @@ public static string Community { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Configure ähnelt. + /// Looks up a localized string similar to Configure. /// public static string Configure { get { @@ -727,7 +736,7 @@ public static string Configure { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Configure PuTTY ähnelt. + /// Looks up a localized string similar to Configure PuTTY. /// public static string ConfigurePuTTY { get { @@ -736,7 +745,7 @@ public static string ConfigurePuTTY { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Configure the path to PuTTY in the settings... ähnelt. + /// Looks up a localized string similar to Configure the path to PuTTY in the settings.... /// public static string ConfigureThePathToPuTTYInTheSettingsDots { get { @@ -745,7 +754,7 @@ public static string ConfigureThePathToPuTTYInTheSettingsDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Confirm ähnelt. + /// Looks up a localized string similar to Confirm. /// public static string Confirm { get { @@ -754,7 +763,7 @@ public static string Confirm { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Confirm close ähnelt. + /// Looks up a localized string similar to Confirm close. /// public static string ConfirmClose { get { @@ -763,7 +772,7 @@ public static string ConfirmClose { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Are you sure you want to close the application? ähnelt. + /// Looks up a localized string similar to Are you sure you want to close the application?. /// public static string ConfirmCloseMessage { get { @@ -772,7 +781,7 @@ public static string ConfirmCloseMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connect ähnelt. + /// Looks up a localized string similar to Connect. /// public static string Connect { get { @@ -781,7 +790,7 @@ public static string Connect { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connect as ähnelt. + /// Looks up a localized string similar to Connect as. /// public static string ConnectAs { get { @@ -790,7 +799,7 @@ public static string ConnectAs { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connect as... ähnelt. + /// Looks up a localized string similar to Connect as.... /// public static string ConnectAsDots { get { @@ -799,7 +808,7 @@ public static string ConnectAsDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connect external ähnelt. + /// Looks up a localized string similar to Connect external. /// public static string ConnectExternal { get { @@ -808,7 +817,7 @@ public static string ConnectExternal { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt. + /// Looks up a localized string similar to Connections. /// public static string Connections { get { @@ -817,7 +826,7 @@ public static string Connections { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connect the network card to a network to configure it! ähnelt. + /// Looks up a localized string similar to Connect the network card to a network to configure it!. /// public static string ConnectTheNetworkCardToConfigureIt { get { @@ -826,7 +835,7 @@ public static string ConnectTheNetworkCardToConfigureIt { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Continue ähnelt. + /// Looks up a localized string similar to Continue. /// public static string Continue { get { @@ -835,7 +844,7 @@ public static string Continue { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Copy ähnelt. + /// Looks up a localized string similar to Copy. /// public static string Copy { get { @@ -844,7 +853,7 @@ public static string Copy { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Copy as... ähnelt. + /// Looks up a localized string similar to Copy as.... /// public static string CopyAsDots { get { @@ -853,7 +862,7 @@ public static string CopyAsDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Copy... ähnelt. + /// Looks up a localized string similar to Copy.... /// public static string CopyDots { get { @@ -862,7 +871,7 @@ public static string CopyDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Copy profile ähnelt. + /// Looks up a localized string similar to Copy profile. /// public static string CopyProfile { get { @@ -871,7 +880,7 @@ public static string CopyProfile { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Could not resolve hostname for: "{0}" ähnelt. + /// Looks up a localized string similar to Could not resolve hostname for: "{0}". /// public static string CouldNotResolveHostnameFor { get { @@ -880,7 +889,7 @@ public static string CouldNotResolveHostnameFor { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Credential ähnelt. + /// Looks up a localized string similar to Credential. /// public static string Credential { get { @@ -889,7 +898,7 @@ public static string Credential { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Credential not found! ähnelt. + /// Looks up a localized string similar to Credential not found!. /// public static string CredentialNotFound { get { @@ -898,7 +907,7 @@ public static string CredentialNotFound { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit the Profile and select a different credential or delete the existing one ähnelt. + /// Looks up a localized string similar to Edit the Profile and select a different credential or delete the existing one. /// public static string CredentialNotFoundMessage { get { @@ -907,7 +916,7 @@ public static string CredentialNotFoundMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Credentials ähnelt. + /// Looks up a localized string similar to Credentials. /// public static string Credentials { get { @@ -916,7 +925,7 @@ public static string Credentials { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The credentials are stored encrypted with AES-256 (Rijndael) in a file. The key for the encryption results from a master password (Rfc2898DeriveBytes). The application uses a SecureString for passwords. For some functions, passwords must be converted from a SecureString to plain text, or vice versa. ähnelt. + /// Looks up a localized string similar to The credentials are stored encrypted with AES-256 (Rijndael) in a file. The key for the encryption results from a master password (Rfc2898DeriveBytes). The application uses a SecureString for passwords. For some functions, passwords must be converted from a SecureString to plain text, or vice versa.. /// public static string CredentialsEncryptionDisclaimer { get { @@ -925,7 +934,7 @@ public static string CredentialsEncryptionDisclaimer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die A Credential with this name already exists! ähnelt. + /// Looks up a localized string similar to A Credential with this name already exists!. /// public static string CredentialWithThisNameAlreadyExists { get { @@ -934,7 +943,7 @@ public static string CredentialWithThisNameAlreadyExists { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Crimson ähnelt. + /// Looks up a localized string similar to Crimson. /// public static string Crimson { get { @@ -943,7 +952,7 @@ public static string Crimson { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Custom ähnelt. + /// Looks up a localized string similar to Custom. /// public static string Custom { get { @@ -952,7 +961,7 @@ public static string Custom { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Custom: ähnelt. + /// Looks up a localized string similar to Custom:. /// public static string CustomColon { get { @@ -961,7 +970,7 @@ public static string CustomColon { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Custom screen size: ähnelt. + /// Looks up a localized string similar to Custom screen size:. /// public static string CustomScreenSize { get { @@ -970,7 +979,7 @@ public static string CustomScreenSize { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cut ähnelt. + /// Looks up a localized string similar to Cut. /// public static string Cut { get { @@ -979,7 +988,7 @@ public static string Cut { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Cyan ähnelt. + /// Looks up a localized string similar to Cyan. /// public static string Cyan { get { @@ -988,7 +997,7 @@ public static string Cyan { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Data ähnelt. + /// Looks up a localized string similar to Data. /// public static string Data { get { @@ -997,7 +1006,7 @@ public static string Data { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Data has been updated! ähnelt. + /// Looks up a localized string similar to Data has been updated!. /// public static string DataHasBeenUpdated { get { @@ -1006,7 +1015,7 @@ public static string DataHasBeenUpdated { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Credentials must be decrypted and loaded to manage them. ähnelt. + /// Looks up a localized string similar to Credentials must be decrypted and loaded to manage them.. /// public static string DecryptAndLoadCredentialsMessage { get { @@ -1015,7 +1024,7 @@ public static string DecryptAndLoadCredentialsMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Decrypt and load... ähnelt. + /// Looks up a localized string similar to Decrypt and load.... /// public static string DecryptAndLoadDots { get { @@ -1024,7 +1033,7 @@ public static string DecryptAndLoadDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default ähnelt. + /// Looks up a localized string similar to Default. /// public static string Default { get { @@ -1033,7 +1042,7 @@ public static string Default { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default application ähnelt. + /// Looks up a localized string similar to Default application. /// public static string DefaultApplication { get { @@ -1042,7 +1051,7 @@ public static string DefaultApplication { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default baud rate ähnelt. + /// Looks up a localized string similar to Default baud rate. /// public static string DefaultBaudRate { get { @@ -1051,7 +1060,7 @@ public static string DefaultBaudRate { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default-Gateway ähnelt. + /// Looks up a localized string similar to Default-Gateway. /// public static string DefaultGateway { get { @@ -1060,7 +1069,7 @@ public static string DefaultGateway { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default port: ähnelt. + /// Looks up a localized string similar to Default port:. /// public static string DefaultPort { get { @@ -1069,7 +1078,7 @@ public static string DefaultPort { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default Rlogin port ähnelt. + /// Looks up a localized string similar to Default Rlogin port. /// public static string DefaultRloginPort { get { @@ -1078,7 +1087,7 @@ public static string DefaultRloginPort { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default SSH port ähnelt. + /// Looks up a localized string similar to Default SSH port. /// public static string DefaultSSHPort { get { @@ -1087,7 +1096,7 @@ public static string DefaultSSHPort { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Default Telnet port ähnelt. + /// Looks up a localized string similar to Default Telnet port. /// public static string DefaultTelnetPort { get { @@ -1096,7 +1105,7 @@ public static string DefaultTelnetPort { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete ähnelt. + /// Looks up a localized string similar to Delete. /// public static string Delete { get { @@ -1105,7 +1114,7 @@ public static string Delete { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The selected credential will be deleted permanently. ähnelt. + /// Looks up a localized string similar to The selected credential will be deleted permanently.. /// public static string DeleteCredentialMessage { get { @@ -1114,7 +1123,7 @@ public static string DeleteCredentialMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete credentials ähnelt. + /// Looks up a localized string similar to Delete credentials. /// public static string DeleteCredentials { get { @@ -1123,7 +1132,7 @@ public static string DeleteCredentials { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete... ähnelt. + /// Looks up a localized string similar to Delete.... /// public static string DeleteDots { get { @@ -1132,7 +1141,7 @@ public static string DeleteDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete entry ähnelt. + /// Looks up a localized string similar to Delete entry. /// public static string DeleteEntry { get { @@ -1141,7 +1150,7 @@ public static string DeleteEntry { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete profile ähnelt. + /// Looks up a localized string similar to Delete profile. /// public static string DeleteProfile { get { @@ -1150,7 +1159,7 @@ public static string DeleteProfile { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Selected profiles will be deleted permanently. ähnelt. + /// Looks up a localized string similar to Selected profiles will be deleted permanently.. /// public static string DeleteProfileMessage { get { @@ -1159,7 +1168,7 @@ public static string DeleteProfileMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delete table ähnelt. + /// Looks up a localized string similar to Delete table. /// public static string DeleteTable { get { @@ -1168,7 +1177,7 @@ public static string DeleteTable { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Description ähnelt. + /// Looks up a localized string similar to Description. /// public static string Description { get { @@ -1177,7 +1186,7 @@ public static string Description { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Destination ähnelt. + /// Looks up a localized string similar to Destination. /// public static string Destination { get { @@ -1186,7 +1195,7 @@ public static string Destination { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Details ähnelt. + /// Looks up a localized string similar to Details. /// public static string Details { get { @@ -1195,7 +1204,7 @@ public static string Details { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DHCP enabled ähnelt. + /// Looks up a localized string similar to DHCP enabled. /// public static string DHCPEnabled { get { @@ -1204,7 +1213,7 @@ public static string DHCPEnabled { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DHCP lease expires ähnelt. + /// Looks up a localized string similar to DHCP lease expires. /// public static string DHCPLeaseExpires { get { @@ -1213,7 +1222,7 @@ public static string DHCPLeaseExpires { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DHCP lease obtained ähnelt. + /// Looks up a localized string similar to DHCP lease obtained. /// public static string DHCPLeaseObtained { get { @@ -1222,7 +1231,7 @@ public static string DHCPLeaseObtained { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DHCP server ähnelt. + /// Looks up a localized string similar to DHCP server. /// public static string DHCPServer { get { @@ -1231,7 +1240,7 @@ public static string DHCPServer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PuTTY. ähnelt. + /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use PuTTY.. /// public static string DisableTransparencyInTheSettingsToUsePuTTY { get { @@ -1240,7 +1249,7 @@ public static string DisableTransparencyInTheSettingsToUsePuTTY { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use Remote Desktop. ähnelt. + /// Looks up a localized string similar to Disable the transparency in the settings (General/Appearance) and restart the application afterwards to use Remote Desktop.. /// public static string DisableTransparencyInTheSettingsToUseRemoteDesktop { get { @@ -1249,7 +1258,7 @@ public static string DisableTransparencyInTheSettingsToUseRemoteDesktop { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Disconnected ähnelt. + /// Looks up a localized string similar to Disconnected. /// public static string Disconnected { get { @@ -1258,7 +1267,7 @@ public static string Disconnected { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Display ähnelt. + /// Looks up a localized string similar to Display. /// public static string Display { get { @@ -1267,7 +1276,7 @@ public static string Display { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS ähnelt. + /// Looks up a localized string similar to DNS. /// public static string DNS { get { @@ -1276,7 +1285,7 @@ public static string DNS { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS autconfiguration ähnelt. + /// Looks up a localized string similar to DNS autconfiguration. /// public static string DNSAutoconfiguration { get { @@ -1285,7 +1294,7 @@ public static string DNSAutoconfiguration { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS Lookup ähnelt. + /// Looks up a localized string similar to DNS Lookup. /// public static string DNSLookup { get { @@ -1294,7 +1303,7 @@ public static string DNSLookup { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS Lookup... ähnelt. + /// Looks up a localized string similar to DNS Lookup.... /// public static string DNSLookupDots { get { @@ -1303,7 +1312,7 @@ public static string DNSLookupDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS server ähnelt. + /// Looks up a localized string similar to DNS server. /// public static string DNSServer { get { @@ -1312,7 +1321,7 @@ public static string DNSServer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS server(s) ähnelt. + /// Looks up a localized string similar to DNS server(s). /// public static string DNSServers { get { @@ -1321,7 +1330,7 @@ public static string DNSServers { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS suffix ähnelt. + /// Looks up a localized string similar to DNS suffix. /// public static string DNSSuffix { get { @@ -1330,7 +1339,7 @@ public static string DNSSuffix { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Documentation ähnelt. + /// Looks up a localized string similar to Documentation. /// public static string Documentation { get { @@ -1339,7 +1348,7 @@ public static string Documentation { } /// - /// Sucht eine lokalisierte Zeichenfolge, die How to install RDP 8.1 on Windows 7/Server 2008 R2 ähnelt. + /// Looks up a localized string similar to How to install RDP 8.1 on Windows 7/Server 2008 R2. /// public static string DocumentationTitle_00001 { get { @@ -1348,7 +1357,7 @@ public static string DocumentationTitle_00001 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die How to create a custom theme and accent? ähnelt. + /// Looks up a localized string similar to How to create a custom theme and accent?. /// public static string DocumentationTitle_00002 { get { @@ -1357,7 +1366,7 @@ public static string DocumentationTitle_00002 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Domain ähnelt. + /// Looks up a localized string similar to Domain. /// public static string Domain { get { @@ -1366,7 +1375,7 @@ public static string Domain { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Don't fragment ähnelt. + /// Looks up a localized string similar to Don't fragment. /// public static string DontFragment { get { @@ -1375,7 +1384,7 @@ public static string DontFragment { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Duration ähnelt. + /// Looks up a localized string similar to Duration. /// public static string Duration { get { @@ -1384,7 +1393,7 @@ public static string Duration { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Dynamic IPv4 address ähnelt. + /// Looks up a localized string similar to Dynamic IPv4 address. /// public static string DynamicIPv4Address { get { @@ -1393,7 +1402,7 @@ public static string DynamicIPv4Address { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Dynamic IPv4 DNS server ähnelt. + /// Looks up a localized string similar to Dynamic IPv4 DNS server. /// public static string DynamicIPv4DNSServer { get { @@ -1402,7 +1411,7 @@ public static string DynamicIPv4DNSServer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit credentials ähnelt. + /// Looks up a localized string similar to Edit credentials. /// public static string EditCredentials { get { @@ -1411,7 +1420,7 @@ public static string EditCredentials { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit... ähnelt. + /// Looks up a localized string similar to Edit.... /// public static string EditDots { get { @@ -1420,7 +1429,7 @@ public static string EditDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit group ähnelt. + /// Looks up a localized string similar to Edit group. /// public static string EditGroup { get { @@ -1429,7 +1438,7 @@ public static string EditGroup { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Edit profile ähnelt. + /// Looks up a localized string similar to Edit profile. /// public static string EditProfile { get { @@ -1438,7 +1447,7 @@ public static string EditProfile { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Emerald ähnelt. + /// Looks up a localized string similar to Emerald. /// public static string Emerald { get { @@ -1447,7 +1456,7 @@ public static string Emerald { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enable ähnelt. + /// Looks up a localized string similar to Enable. /// public static string Enable { get { @@ -1456,7 +1465,7 @@ public static string Enable { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enable Credential Security Support Provider ähnelt. + /// Looks up a localized string similar to Enable Credential Security Support Provider. /// public static string EnableCredentialSecuritySupportProvider { get { @@ -1465,7 +1474,7 @@ public static string EnableCredentialSecuritySupportProvider { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enable the profile in at least one tool! Click on a tab and select "Enable"... ähnelt. + /// Looks up a localized string similar to Enable the profile in at least one tool! Click on a tab and select "Enable".... /// public static string EnableTheProfileInAtLeastOneTool { get { @@ -1474,7 +1483,7 @@ public static string EnableTheProfileInAtLeastOneTool { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enable transparency ähnelt. + /// Looks up a localized string similar to Enable transparency. /// public static string EnableTransparency { get { @@ -1483,7 +1492,7 @@ public static string EnableTransparency { } /// - /// Sucht eine lokalisierte Zeichenfolge, die End time ähnelt. + /// Looks up a localized string similar to End time. /// public static string EndTime { get { @@ -1492,7 +1501,7 @@ public static string EndTime { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a subnet to calculate it... ähnelt. + /// Looks up a localized string similar to Enter a subnet to calculate it.... /// public static string EnterASubnetToCalculateIt { get { @@ -1501,7 +1510,7 @@ public static string EnterASubnetToCalculateIt { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter location... ähnelt. + /// Looks up a localized string similar to Enter location.... /// public static string EnterLocationDots { get { @@ -1510,7 +1519,7 @@ public static string EnterLocationDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter one or more valid IP addresses! ähnelt. + /// Looks up a localized string similar to Enter one or more valid IP addresses!. /// public static string EnterOneOrMoreValidIPAddresses { get { @@ -1519,7 +1528,7 @@ public static string EnterOneOrMoreValidIPAddresses { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter subnet and a new subnet mask to create subnets... ähnelt. + /// Looks up a localized string similar to Enter subnet and a new subnet mask to create subnets.... /// public static string EnterSubnetAndANewSubnetmaskToCreateSubnets { get { @@ -1528,7 +1537,7 @@ public static string EnterSubnetAndANewSubnetmaskToCreateSubnets { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter subnets to create a supernet... ähnelt. + /// Looks up a localized string similar to Enter subnets to create a supernet.... /// public static string EnterSubnetsToCreateASupernet { get { @@ -1537,7 +1546,7 @@ public static string EnterSubnetsToCreateASupernet { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid baud! ähnelt. + /// Looks up a localized string similar to Enter a valid baud!. /// public static string EnterValidBaud { get { @@ -1546,7 +1555,16 @@ public static string EnterValidBaud { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter valid hosts (multiple hosts can not end with ";")! ähnelt. + /// Looks up a localized string similar to Enter a valid domain (like "example.com")!. + /// + public static string EnterValidDomain { + get { + return ResourceManager.GetString("EnterValidDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enter valid hosts (multiple hosts can not end with ";")!. /// public static string EnterValidHosts { get { @@ -1555,7 +1573,7 @@ public static string EnterValidHosts { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid IP address! ähnelt. + /// Looks up a localized string similar to Enter a valid IP address!. /// public static string EnterValidIPAddress { get { @@ -1564,7 +1582,7 @@ public static string EnterValidIPAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid ip range! ähnelt. + /// Looks up a localized string similar to Enter a valid ip range!. /// public static string EnterValidIPScanRange { get { @@ -1573,7 +1591,7 @@ public static string EnterValidIPScanRange { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid IPv4 address! ähnelt. + /// Looks up a localized string similar to Enter a valid IPv4 address!. /// public static string EnterValidIPv4Address { get { @@ -1582,7 +1600,7 @@ public static string EnterValidIPv4Address { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid MAC address (like 00:F1:23:AB:F2:35)! ähnelt. + /// Looks up a localized string similar to Enter a valid MAC address (like 00:F1:23:AB:F2:35)!. /// public static string EnterValidMACAddress { get { @@ -1591,7 +1609,7 @@ public static string EnterValidMACAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid number! ähnelt. + /// Looks up a localized string similar to Enter a valid number!. /// public static string EnterValidNumber { get { @@ -1600,7 +1618,7 @@ public static string EnterValidNumber { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid OID! ähnelt. + /// Looks up a localized string similar to Enter a valid OID!. /// public static string EnterValidOID { get { @@ -1609,7 +1627,7 @@ public static string EnterValidOID { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid port (1 - 65535)! ähnelt. + /// Looks up a localized string similar to Enter a valid port (1 - 65535)!. /// public static string EnterValidPort { get { @@ -1618,7 +1636,7 @@ public static string EnterValidPort { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid port and/or port range (1 - 65535)! ähnelt. + /// Looks up a localized string similar to Enter a valid port and/or port range (1 - 65535)!. /// public static string EnterValidPortOrPortRange { get { @@ -1627,7 +1645,7 @@ public static string EnterValidPortOrPortRange { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid subnet (like 192.168.178.133/26)! ähnelt. + /// Looks up a localized string similar to Enter a valid subnet (like 192.168.178.133/26)!. /// public static string EnterValidSubnet { get { @@ -1636,7 +1654,7 @@ public static string EnterValidSubnet { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid subnetmask (like 255.255.255.0)! ähnelt. + /// Looks up a localized string similar to Enter a valid subnetmask (like 255.255.255.0)!. /// public static string EnterValidSubnetmask { get { @@ -1645,7 +1663,7 @@ public static string EnterValidSubnetmask { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid subnetmask or CIDR (like 255.255.255.0 or /24)! ähnelt. + /// Looks up a localized string similar to Enter a valid subnetmask or CIDR (like 255.255.255.0 or /24)!. /// public static string EnterValidSubnetmaskOrCIDR { get { @@ -1654,7 +1672,7 @@ public static string EnterValidSubnetmaskOrCIDR { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid value between 25 and 100! ähnelt. + /// Looks up a localized string similar to Enter a valid value between 25 and 100!. /// public static string EnterValidValueBetween25and100 { get { @@ -1663,7 +1681,7 @@ public static string EnterValidValueBetween25and100 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid website (like https://example.com/index.html) ähnelt. + /// Looks up a localized string similar to Enter a valid website (like https://example.com/index.html). /// public static string EnterValidWebsiteUri { get { @@ -1672,7 +1690,7 @@ public static string EnterValidWebsiteUri { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Error ähnelt. + /// Looks up a localized string similar to Error. /// public static string Error { get { @@ -1681,7 +1699,7 @@ public static string Error { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Error checking 'api.github.com', check your network connection! ähnelt. + /// Looks up a localized string similar to Error checking 'api.github.com', check your network connection!. /// public static string ErrorCheckingApiGithubComVerifyYourNetworkConnection { get { @@ -1690,7 +1708,7 @@ public static string ErrorCheckingApiGithubComVerifyYourNetworkConnection { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Error in response! ähnelt. + /// Looks up a localized string similar to Error in response!. /// public static string ErrorInResponse { get { @@ -1699,7 +1717,7 @@ public static string ErrorInResponse { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Error in response! Check if you have write permissions. ähnelt. + /// Looks up a localized string similar to Error in response! Check if you have write permissions.. /// public static string ErrorInResponseCheckIfYouHaveWritePermissions { get { @@ -1708,7 +1726,7 @@ public static string ErrorInResponseCheckIfYouHaveWritePermissions { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Everything ähnelt. + /// Looks up a localized string similar to Everything. /// public static string Everything { get { @@ -1717,7 +1735,7 @@ public static string Everything { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 9600 ähnelt. + /// Looks up a localized string similar to 9600. /// public static string ExampleBaud9600 { get { @@ -1726,7 +1744,7 @@ public static string ExampleBaud9600 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Windows-Testuser ähnelt. + /// Looks up a localized string similar to Windows-Testuser. /// public static string ExampleCredentialName { get { @@ -1735,7 +1753,7 @@ public static string ExampleCredentialName { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Servers ähnelt. + /// Looks up a localized string similar to Servers. /// public static string ExampleGroupServers { get { @@ -1744,7 +1762,7 @@ public static string ExampleGroupServers { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Switche ähnelt. + /// Looks up a localized string similar to Switche. /// public static string ExampleGroupSwitche { get { @@ -1753,7 +1771,7 @@ public static string ExampleGroupSwitche { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SERVER-01 ähnelt. + /// Looks up a localized string similar to SERVER-01. /// public static string ExampleHostname { get { @@ -1762,7 +1780,7 @@ public static string ExampleHostname { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.1; fritz.box ähnelt. + /// Looks up a localized string similar to 192.168.178.1; fritz.box. /// public static string ExampleHostnameAndOrIPAddress { get { @@ -1771,7 +1789,7 @@ public static string ExampleHostnameAndOrIPAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SERVER-01 or 172.16.0.100 ähnelt. + /// Looks up a localized string similar to SERVER-01 or 172.16.0.100. /// public static string ExampleHostnameOrIPAddress { get { @@ -1780,7 +1798,7 @@ public static string ExampleHostnameOrIPAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 192.168.1.0/24; 192.168.178.1 - 192.168.178.128; 192.168.[178-179].[1,100,150-200]; 192.168.178.150; server-01/24 ähnelt. + /// Looks up a localized string similar to 192.168.1.0/24; 192.168.178.1 - 192.168.178.128; 192.168.[178-179].[1,100,150-200]; 192.168.178.150; server-01/24. /// public static string ExampleIPScanRange { get { @@ -1789,7 +1807,7 @@ public static string ExampleIPScanRange { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.55 ähnelt. + /// Looks up a localized string similar to 192.168.178.55. /// public static string ExampleIPv4Address { get { @@ -1798,7 +1816,7 @@ public static string ExampleIPv4Address { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.255 ähnelt. + /// Looks up a localized string similar to 192.168.178.255. /// public static string ExampleIPv4Broadcast { get { @@ -1807,7 +1825,7 @@ public static string ExampleIPv4Broadcast { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 8.8.8.8 ähnelt. + /// Looks up a localized string similar to 8.8.8.8. /// public static string ExampleIPv4DNSServer { get { @@ -1816,7 +1834,7 @@ public static string ExampleIPv4DNSServer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.1; 8.8.8.8; 8.8.4.4 ähnelt. + /// Looks up a localized string similar to 192.168.178.1; 8.8.8.8; 8.8.4.4. /// public static string ExampleIPv4DNSServers { get { @@ -1825,7 +1843,7 @@ public static string ExampleIPv4DNSServers { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.1 ähnelt. + /// Looks up a localized string similar to 192.168.178.1. /// public static string ExampleIPv4Gateway { get { @@ -1834,7 +1852,7 @@ public static string ExampleIPv4Gateway { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.133/255.255.255.0 or 2001:0db8::/64 ähnelt. + /// Looks up a localized string similar to 192.168.178.133/255.255.255.0 or 2001:0db8::/64. /// public static string ExampleIPv4IPv6Subnet { get { @@ -1843,7 +1861,7 @@ public static string ExampleIPv4IPv6Subnet { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.134/255.255.255.0 or 2001:0db9::/64 ähnelt. + /// Looks up a localized string similar to 192.168.178.134/255.255.255.0 or 2001:0db9::/64. /// public static string ExampleIPv4IPv6Subnet2 { get { @@ -1852,7 +1870,7 @@ public static string ExampleIPv4IPv6Subnet2 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 192.168.178.133/22 or 192.168.178.133/255.255.252.0 ähnelt. + /// Looks up a localized string similar to 192.168.178.133/22 or 192.168.178.133/255.255.252.0. /// public static string ExampleIPv4Subnet { get { @@ -1861,7 +1879,7 @@ public static string ExampleIPv4Subnet { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 255.255.255.0 ähnelt. + /// Looks up a localized string similar to 255.255.255.0. /// public static string ExampleIPv4Subnetmask { get { @@ -1870,7 +1888,7 @@ public static string ExampleIPv4Subnetmask { } /// - /// Sucht eine lokalisierte Zeichenfolge, die /24 or 255.255.255.0 ähnelt. + /// Looks up a localized string similar to /24 or 255.255.255.0. /// public static string ExampleIPv4SubnetmaskIPv4CIDR { get { @@ -1879,7 +1897,7 @@ public static string ExampleIPv4SubnetmaskIPv4CIDR { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 255.255.255.0 or /64 ähnelt. + /// Looks up a localized string similar to 255.255.255.0 or /64. /// public static string ExampleIPv4SubnetmaskIPv6CIDR { get { @@ -1888,7 +1906,7 @@ public static string ExampleIPv4SubnetmaskIPv6CIDR { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 192.168.100.0/24 ähnelt. + /// Looks up a localized string similar to 192.168.100.0/24. /// public static string ExampleIPv4SubnetWithCIDR { get { @@ -1897,7 +1915,7 @@ public static string ExampleIPv4SubnetWithCIDR { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 00:F1:21:AB:0B:35 ähnelt. + /// Looks up a localized string similar to 00:F1:21:AB:0B:35. /// public static string ExampleMACAddress { get { @@ -1906,7 +1924,7 @@ public static string ExampleMACAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 01:23:45:67:89:AB; 01-23-45; AA11BB; 00F1A2C3D4E5; Intel Corp; Asus ähnelt. + /// Looks up a localized string similar to 01:23:45:67:89:AB; 01-23-45; AA11BB; 00F1A2C3D4E5; Intel Corp; Asus. /// public static string ExampleMACAddressesOrVendor { get { @@ -1915,7 +1933,7 @@ public static string ExampleMACAddressesOrVendor { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 161 ähnelt. + /// Looks up a localized string similar to 161. /// public static string ExamplePort161 { get { @@ -1924,7 +1942,7 @@ public static string ExamplePort161 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 22 ähnelt. + /// Looks up a localized string similar to 22. /// public static string ExamplePort22 { get { @@ -1933,7 +1951,7 @@ public static string ExamplePort22 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 23 ähnelt. + /// Looks up a localized string similar to 23. /// public static string ExamplePort23 { get { @@ -1942,7 +1960,7 @@ public static string ExamplePort23 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 3389 ähnelt. + /// Looks up a localized string similar to 3389. /// public static string ExamplePort3389 { get { @@ -1951,7 +1969,7 @@ public static string ExamplePort3389 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 513 ähnelt. + /// Looks up a localized string similar to 513. /// public static string ExamplePort513 { get { @@ -1960,7 +1978,7 @@ public static string ExamplePort513 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 53 ähnelt. + /// Looks up a localized string similar to 53. /// public static string ExamplePort53 { get { @@ -1969,7 +1987,7 @@ public static string ExamplePort53 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 7 ähnelt. + /// Looks up a localized string similar to 7. /// public static string ExamplePort7 { get { @@ -1978,7 +1996,7 @@ public static string ExamplePort7 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 22; 80; https; ldaps; 777 - 999; 8080 ähnelt. + /// Looks up a localized string similar to 22; 80; https; ldaps; 777 - 999; 8080. /// public static string ExamplePortPortRangeOrService { get { @@ -1987,7 +2005,7 @@ public static string ExamplePortPortRangeOrService { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 22; 80; 443; 500 - 999; 8080 ähnelt. + /// Looks up a localized string similar to 22; 80; 443; 500 - 999; 8080. /// public static string ExamplePortScanRange { get { @@ -1996,7 +2014,7 @@ public static string ExamplePortScanRange { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Webserver ähnelt. + /// Looks up a localized string similar to Webserver. /// public static string ExampleRemoteDesktopProfileName { get { @@ -2005,7 +2023,7 @@ public static string ExampleRemoteDesktopProfileName { } /// - /// Sucht eine lokalisierte Zeichenfolge, die COM5 ähnelt. + /// Looks up a localized string similar to COM5. /// public static string ExampleSerialLine { get { @@ -2014,7 +2032,7 @@ public static string ExampleSerialLine { } /// - /// Sucht eine lokalisierte Zeichenfolge, die public ähnelt. + /// Looks up a localized string similar to public. /// public static string ExampleSNMPCommunity { get { @@ -2023,7 +2041,7 @@ public static string ExampleSNMPCommunity { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 1.3.6.1.2.1.1 ähnelt. + /// Looks up a localized string similar to 1.3.6.1.2.1.1. /// public static string ExampleSNMPOID { get { @@ -2032,7 +2050,7 @@ public static string ExampleSNMPOID { } /// - /// Sucht eine lokalisierte Zeichenfolge, die snmp-user ähnelt. + /// Looks up a localized string similar to snmp-user. /// public static string ExampleSNMPUsername { get { @@ -2041,7 +2059,7 @@ public static string ExampleSNMPUsername { } /// - /// Sucht eine lokalisierte Zeichenfolge, die fritz.box ähnelt. + /// Looks up a localized string similar to fritz.box. /// public static string ExampleSuffix { get { @@ -2050,7 +2068,7 @@ public static string ExampleSuffix { } /// - /// Sucht eine lokalisierte Zeichenfolge, die server; dmz ähnelt. + /// Looks up a localized string similar to server; dmz. /// public static string ExampleTags { get { @@ -2059,7 +2077,7 @@ public static string ExampleTags { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Admin ähnelt. + /// Looks up a localized string similar to Admin. /// public static string ExampleUsername { get { @@ -2068,7 +2086,7 @@ public static string ExampleUsername { } /// - /// Sucht eine lokalisierte Zeichenfolge, die 80; 443; 8080; 8443 ähnelt. + /// Looks up a localized string similar to 80; 443; 8080; 8443. /// public static string ExampleWebserverPorts { get { @@ -2077,7 +2095,7 @@ public static string ExampleWebserverPorts { } /// - /// Sucht eine lokalisierte Zeichenfolge, die http(s)://example.com/index.html ähnelt. + /// Looks up a localized string similar to http(s)://example.com/index.html. /// public static string ExampleWebsiteUri { get { @@ -2086,7 +2104,7 @@ public static string ExampleWebsiteUri { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Expand ähnelt. + /// Looks up a localized string similar to Expand. /// public static string Expand { get { @@ -2095,7 +2113,7 @@ public static string Expand { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Export ähnelt. + /// Looks up a localized string similar to Export. /// public static string Export { get { @@ -2104,7 +2122,7 @@ public static string Export { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Field cannot be empty! ähnelt. + /// Looks up a localized string similar to Field cannot be empty!. /// public static string FieldCannotBeEmpty { get { @@ -2113,7 +2131,7 @@ public static string FieldCannotBeEmpty { } /// - /// Sucht eine lokalisierte Zeichenfolge, die File does not exists! ähnelt. + /// Looks up a localized string similar to File does not exists!. /// public static string FileDoesNotExist { get { @@ -2122,7 +2140,7 @@ public static string FileDoesNotExist { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Filter ähnelt. + /// Looks up a localized string similar to Filter. /// public static string Filter { get { @@ -2131,7 +2149,7 @@ public static string Filter { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Filter... ähnelt. + /// Looks up a localized string similar to Filter.... /// public static string FilterDots { get { @@ -2140,7 +2158,7 @@ public static string FilterDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die First usable IP address ähnelt. + /// Looks up a localized string similar to First usable IP address. /// public static string FirstUsableIPAddress { get { @@ -2149,7 +2167,7 @@ public static string FirstUsableIPAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Fixed screen size: ähnelt. + /// Looks up a localized string similar to Fixed screen size:. /// public static string FixedScreenSize { get { @@ -2158,7 +2176,7 @@ public static string FixedScreenSize { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Flush DNS cache ähnelt. + /// Looks up a localized string similar to Flush DNS cache. /// public static string FlushDNSCache { get { @@ -2167,7 +2185,7 @@ public static string FlushDNSCache { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Folder does not exists! ähnelt. + /// Looks up a localized string similar to Folder does not exists!. /// public static string FolderDoesNotExist { get { @@ -2176,7 +2194,7 @@ public static string FolderDoesNotExist { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Fork me on Github! ähnelt. + /// Looks up a localized string similar to Fork me on Github!. /// public static string ForkMeOnGitHub { get { @@ -2185,7 +2203,7 @@ public static string ForkMeOnGitHub { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Found ähnelt. + /// Looks up a localized string similar to Found. /// public static string Found { get { @@ -2194,7 +2212,7 @@ public static string Found { } /// - /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt. + /// Looks up a localized string similar to General. /// public static string General { get { @@ -2203,7 +2221,7 @@ public static string General { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Green ähnelt. + /// Looks up a localized string similar to Green. /// public static string Green { get { @@ -2212,7 +2230,7 @@ public static string Green { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Group ähnelt. + /// Looks up a localized string similar to Group. /// public static string Group { get { @@ -2221,7 +2239,7 @@ public static string Group { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Headers ähnelt. + /// Looks up a localized string similar to Headers. /// public static string Headers { get { @@ -2230,7 +2248,7 @@ public static string Headers { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Height ähnelt. + /// Looks up a localized string similar to Height. /// public static string Height { get { @@ -2239,7 +2257,7 @@ public static string Height { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Decrypt and load your credentials to select them. ähnelt. + /// Looks up a localized string similar to Decrypt and load your credentials to select them.. /// public static string HelpMessage_Credentials { get { @@ -2248,7 +2266,7 @@ public static string HelpMessage_Credentials { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Displays this dialog. ähnelt. + /// Looks up a localized string similar to Displays this dialog.. /// public static string HelpMessage_ParameterHelp { get { @@ -2257,7 +2275,7 @@ public static string HelpMessage_ParameterHelp { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Reset all settings. ähnelt. + /// Looks up a localized string similar to Reset all settings.. /// public static string HelpMessage_ParameterResetSettings { get { @@ -2266,7 +2284,7 @@ public static string HelpMessage_ParameterResetSettings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The password is not displayed when editing, but can be overwritten. ähnelt. + /// Looks up a localized string similar to The password is not displayed when editing, but can be overwritten.. /// public static string HelpMessage_PasswordNotDisplayedCanBeOverwritten { get { @@ -2275,7 +2293,7 @@ public static string HelpMessage_PasswordNotDisplayedCanBeOverwritten { } /// - /// Sucht eine lokalisierte Zeichenfolge, die [0] If server authentication fails, connect to the computer without warning.\n[1] If server authentication fails, do not establish a connection.\n[2] If server authentication fails, show a warning and allow me to connect or refuse the connection.\n[3] No authentication requirement is specified. ähnelt. + /// Looks up a localized string similar to [0] If server authentication fails, connect to the computer without warning.\n[1] If server authentication fails, do not establish a connection.\n[2] If server authentication fails, show a warning and allow me to connect or refuse the connection.\n[3] No authentication requirement is specified.. /// public static string HelpMessage_RDPAuthenticationLevel { get { @@ -2284,7 +2302,7 @@ public static string HelpMessage_RDPAuthenticationLevel { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Tags help you organize profiles/Profiles by topics/projects. Multiple tags can be used with ";" be separated. Search by tags with "tag=xxx". ähnelt. + /// Looks up a localized string similar to Tags help you organize profiles/Profiles by topics/projects. Multiple tags can be used with ";" be separated. Search by tags with "tag=xxx".. /// public static string HelpMessage_Tags { get { @@ -2293,7 +2311,7 @@ public static string HelpMessage_Tags { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hidden applications ähnelt. + /// Looks up a localized string similar to Hidden applications. /// public static string HiddenApplications { get { @@ -2302,7 +2320,7 @@ public static string HiddenApplications { } /// - /// Sucht eine lokalisierte Zeichenfolge, die History ähnelt. + /// Looks up a localized string similar to History. /// public static string History { get { @@ -2311,7 +2329,7 @@ public static string History { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hop ähnelt. + /// Looks up a localized string similar to Hop. /// public static string Hop { get { @@ -2320,7 +2338,7 @@ public static string Hop { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hops ähnelt. + /// Looks up a localized string similar to Hops. /// public static string Hops { get { @@ -2329,7 +2347,7 @@ public static string Hops { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Host ähnelt. + /// Looks up a localized string similar to Host. /// public static string Host { get { @@ -2338,7 +2356,7 @@ public static string Host { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hostname ähnelt. + /// Looks up a localized string similar to Hostname. /// public static string Hostname { get { @@ -2347,7 +2365,7 @@ public static string Hostname { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hostname or IP address ähnelt. + /// Looks up a localized string similar to Hostname or IP address. /// public static string HostnameOrIPAddress { get { @@ -2356,7 +2374,7 @@ public static string HostnameOrIPAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hosts ähnelt. + /// Looks up a localized string similar to Hosts. /// public static string Hosts { get { @@ -2365,7 +2383,7 @@ public static string Hosts { } /// - /// Sucht eine lokalisierte Zeichenfolge, die HotKeys ähnelt. + /// Looks up a localized string similar to HotKeys. /// public static string HotKeys { get { @@ -2374,7 +2392,7 @@ public static string HotKeys { } /// - /// Sucht eine lokalisierte Zeichenfolge, die HTTP Headers ähnelt. + /// Looks up a localized string similar to HTTP Headers. /// public static string HTTPHeaders { get { @@ -2383,7 +2401,7 @@ public static string HTTPHeaders { } /// - /// Sucht eine lokalisierte Zeichenfolge, die ID ähnelt. + /// Looks up a localized string similar to ID. /// public static string ID { get { @@ -2392,7 +2410,7 @@ public static string ID { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Import ähnelt. + /// Looks up a localized string similar to Import. /// public static string Import { get { @@ -2401,7 +2419,7 @@ public static string Import { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Import / Export ähnelt. + /// Looks up a localized string similar to Import / Export. /// public static string ImportExport { get { @@ -2410,7 +2428,7 @@ public static string ImportExport { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Indigo ähnelt. + /// Looks up a localized string similar to Indigo. /// public static string Indigo { get { @@ -2419,7 +2437,7 @@ public static string Indigo { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Information ähnelt. + /// Looks up a localized string similar to Information. /// public static string Information { get { @@ -2428,7 +2446,7 @@ public static string Information { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Inherit host from default ähnelt. + /// Looks up a localized string similar to Inherit host from default. /// public static string InheritHostFromDefault { get { @@ -2437,7 +2455,7 @@ public static string InheritHostFromDefault { } /// - /// Sucht eine lokalisierte Zeichenfolge, die You must install the Remote Desktop Protocol (RDP) version 8.1 on your system to use the Remote Desktop functionality! ähnelt. + /// Looks up a localized string similar to You must install the Remote Desktop Protocol (RDP) version 8.1 on your system to use the Remote Desktop functionality!. /// public static string InstallRDP8dot1Message { get { @@ -2446,7 +2464,7 @@ public static string InstallRDP8dot1Message { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Interface ähnelt. + /// Looks up a localized string similar to Interface. /// public static string Interface { get { @@ -2455,7 +2473,7 @@ public static string Interface { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IP address ähnelt. + /// Looks up a localized string similar to IP address. /// public static string IPAddress { get { @@ -2464,7 +2482,7 @@ public static string IPAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IP addresses ähnelt. + /// Looks up a localized string similar to IP addresses. /// public static string IPAddresses { get { @@ -2473,7 +2491,7 @@ public static string IPAddresses { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IP range ähnelt. + /// Looks up a localized string similar to IP range. /// public static string IPRange { get { @@ -2482,7 +2500,7 @@ public static string IPRange { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IP Scanner ähnelt. + /// Looks up a localized string similar to IP Scanner. /// public static string IPScanner { get { @@ -2491,7 +2509,7 @@ public static string IPScanner { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Destination host unreachable. ähnelt. + /// Looks up a localized string similar to Destination host unreachable.. /// public static string IPStatus_DestinationHostUnreachable { get { @@ -2500,7 +2518,7 @@ public static string IPStatus_DestinationHostUnreachable { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Destination network unreachable. ähnelt. + /// Looks up a localized string similar to Destination network unreachable.. /// public static string IPStatus_DestinationNetworkUnreachable { get { @@ -2509,7 +2527,7 @@ public static string IPStatus_DestinationNetworkUnreachable { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Destination port unreachable. ähnelt. + /// Looks up a localized string similar to Destination port unreachable.. /// public static string IPStatus_DestinationPortUnreachable { get { @@ -2518,7 +2536,7 @@ public static string IPStatus_DestinationPortUnreachable { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Success ähnelt. + /// Looks up a localized string similar to Success. /// public static string IPStatus_Success { get { @@ -2527,7 +2545,7 @@ public static string IPStatus_Success { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Request timed out. ähnelt. + /// Looks up a localized string similar to Request timed out.. /// public static string IPStatus_TimedOut { get { @@ -2536,7 +2554,7 @@ public static string IPStatus_TimedOut { } /// - /// Sucht eine lokalisierte Zeichenfolge, die TTL expired in transit. ähnelt. + /// Looks up a localized string similar to TTL expired in transit.. /// public static string IPStatus_TtlExpired { get { @@ -2545,7 +2563,7 @@ public static string IPStatus_TtlExpired { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv4 ähnelt. + /// Looks up a localized string similar to IPv4. /// public static string IPv4 { get { @@ -2554,7 +2572,7 @@ public static string IPv4 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv4 address ähnelt. + /// Looks up a localized string similar to IPv4 address. /// public static string IPv4Address { get { @@ -2563,7 +2581,7 @@ public static string IPv4Address { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv4-Default-Gateway ähnelt. + /// Looks up a localized string similar to IPv4-Default-Gateway. /// public static string IPv4DefaultGateway { get { @@ -2572,7 +2590,7 @@ public static string IPv4DefaultGateway { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv6 ähnelt. + /// Looks up a localized string similar to IPv6. /// public static string IPv6 { get { @@ -2581,7 +2599,7 @@ public static string IPv6 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv6 address ähnelt. + /// Looks up a localized string similar to IPv6 address. /// public static string IPv6Address { get { @@ -2590,7 +2608,7 @@ public static string IPv6Address { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Link-local IPv6 address ähnelt. + /// Looks up a localized string similar to Link-local IPv6 address. /// public static string IPv6AddressLinkLocal { get { @@ -2599,7 +2617,7 @@ public static string IPv6AddressLinkLocal { } /// - /// Sucht eine lokalisierte Zeichenfolge, die IPv6-Default-Gateway ähnelt. + /// Looks up a localized string similar to IPv6-Default-Gateway. /// public static string IPv6DefaultGateway { get { @@ -2608,7 +2626,7 @@ public static string IPv6DefaultGateway { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Keyboard ähnelt. + /// Looks up a localized string similar to Keyboard. /// public static string Keyboard { get { @@ -2617,7 +2635,7 @@ public static string Keyboard { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Key must have 8 characters or more! ähnelt. + /// Looks up a localized string similar to Key must have 8 characters or more!. /// public static string KeyMustHave8CharactersOrMore { get { @@ -2626,7 +2644,7 @@ public static string KeyMustHave8CharactersOrMore { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Language ähnelt. + /// Looks up a localized string similar to Language. /// public static string Language { get { @@ -2635,7 +2653,7 @@ public static string Language { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Last usable IP address ähnelt. + /// Looks up a localized string similar to Last usable IP address. /// public static string LastUsableIPAddress { get { @@ -2644,7 +2662,7 @@ public static string LastUsableIPAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Libraries ähnelt. + /// Looks up a localized string similar to Libraries. /// public static string Libraries { get { @@ -2653,7 +2671,7 @@ public static string Libraries { } /// - /// Sucht eine lokalisierte Zeichenfolge, die License ähnelt. + /// Looks up a localized string similar to License. /// public static string License { get { @@ -2662,7 +2680,7 @@ public static string License { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Lime ähnelt. + /// Looks up a localized string similar to Lime. /// public static string Lime { get { @@ -2671,7 +2689,7 @@ public static string Lime { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Listeners ähnelt. + /// Looks up a localized string similar to Listeners. /// public static string Listeners { get { @@ -2680,7 +2698,7 @@ public static string Listeners { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Local devices and resources ähnelt. + /// Looks up a localized string similar to Local devices and resources. /// public static string LocalDevicesAndResources { get { @@ -2689,7 +2707,7 @@ public static string LocalDevicesAndResources { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Local IP address ähnelt. + /// Looks up a localized string similar to Local IP address. /// public static string LocalIPAddress { get { @@ -2698,7 +2716,7 @@ public static string LocalIPAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Local port ähnelt. + /// Looks up a localized string similar to Local port. /// public static string LocalPort { get { @@ -2707,7 +2725,7 @@ public static string LocalPort { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Location ähnelt. + /// Looks up a localized string similar to Location. /// public static string Location { get { @@ -2716,7 +2734,7 @@ public static string Location { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Location of the import file... ähnelt. + /// Looks up a localized string similar to Location of the import file.... /// public static string LocationOfTheImport { get { @@ -2725,7 +2743,7 @@ public static string LocationOfTheImport { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Lookup ähnelt. + /// Looks up a localized string similar to Lookup. /// public static string Lookup { get { @@ -2734,7 +2752,7 @@ public static string Lookup { } /// - /// Sucht eine lokalisierte Zeichenfolge, die MAC Address ähnelt. + /// Looks up a localized string similar to MAC Address. /// public static string MACAddress { get { @@ -2743,7 +2761,7 @@ public static string MACAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die MAC address or vendor ähnelt. + /// Looks up a localized string similar to MAC address or vendor. /// public static string MACAddressOrVendor { get { @@ -2752,7 +2770,7 @@ public static string MACAddressOrVendor { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Magenta ähnelt. + /// Looks up a localized string similar to Magenta. /// public static string Magenta { get { @@ -2761,7 +2779,7 @@ public static string Magenta { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Magic packet successfully sent! ähnelt. + /// Looks up a localized string similar to Magic packet successfully sent!. /// public static string MagicPacketSentMessage { get { @@ -2770,7 +2788,7 @@ public static string MagicPacketSentMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Master Password ähnelt. + /// Looks up a localized string similar to Master Password. /// public static string MasterPassword { get { @@ -2779,7 +2797,7 @@ public static string MasterPassword { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Mauve ähnelt. + /// Looks up a localized string similar to Mauve. /// public static string Mauve { get { @@ -2788,7 +2806,7 @@ public static string Mauve { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Maximum ähnelt. + /// Looks up a localized string similar to Maximum. /// public static string Maximum { get { @@ -2797,7 +2815,7 @@ public static string Maximum { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Maximum hops/router ähnelt. + /// Looks up a localized string similar to Maximum hops/router. /// public static string MaximumHopsRouter { get { @@ -2806,7 +2824,7 @@ public static string MaximumHopsRouter { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Maximum number ({0}) of hops/router reached! ähnelt. + /// Looks up a localized string similar to Maximum number ({0}) of hops/router reached!. /// public static string MaximumNumberOfHopsReached { get { @@ -2815,7 +2833,7 @@ public static string MaximumNumberOfHopsReached { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Message size ähnelt. + /// Looks up a localized string similar to Message size. /// public static string MessageSize { get { @@ -2824,7 +2842,7 @@ public static string MessageSize { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Minimize main window instead of terminating the application ähnelt. + /// Looks up a localized string similar to Minimize main window instead of terminating the application. /// public static string MinimizeInsteadOfTerminating { get { @@ -2833,7 +2851,7 @@ public static string MinimizeInsteadOfTerminating { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Minimize to tray instead of taskbar ähnelt. + /// Looks up a localized string similar to Minimize to tray instead of taskbar. /// public static string MinimizeToTrayInsteadOfTaskbar { get { @@ -2842,7 +2860,7 @@ public static string MinimizeToTrayInsteadOfTaskbar { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Minimum ähnelt. + /// Looks up a localized string similar to Minimum. /// public static string Minimum { get { @@ -2851,7 +2869,7 @@ public static string Minimum { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Mode ähnelt. + /// Looks up a localized string similar to Mode. /// public static string Mode { get { @@ -2860,7 +2878,7 @@ public static string Mode { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Move & Restart ähnelt. + /// Looks up a localized string similar to Move & Restart. /// public static string MoveAndRestart { get { @@ -2869,7 +2887,7 @@ public static string MoveAndRestart { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Multicast ähnelt. + /// Looks up a localized string similar to Multicast. /// public static string Multicast { get { @@ -2878,7 +2896,7 @@ public static string Multicast { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Multiple instances ähnelt. + /// Looks up a localized string similar to Multiple instances. /// public static string MultipleInstances { get { @@ -2887,7 +2905,7 @@ public static string MultipleInstances { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Multithreading ähnelt. + /// Looks up a localized string similar to Multithreading. /// public static string Multithreading { get { @@ -2896,7 +2914,7 @@ public static string Multithreading { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Name ähnelt. + /// Looks up a localized string similar to Name. /// public static string Name { get { @@ -2905,7 +2923,7 @@ public static string Name { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network ähnelt. + /// Looks up a localized string similar to Network. /// public static string Network { get { @@ -2914,7 +2932,7 @@ public static string Network { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network address ähnelt. + /// Looks up a localized string similar to Network address. /// public static string NetworkAddress { get { @@ -2923,7 +2941,7 @@ public static string NetworkAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network connections.... ähnelt. + /// Looks up a localized string similar to Network connections..... /// public static string NetworkConnectionsDots { get { @@ -2932,7 +2950,7 @@ public static string NetworkConnectionsDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Network Interface ähnelt. + /// Looks up a localized string similar to Network Interface. /// public static string NetworkInterface { get { @@ -2941,7 +2959,7 @@ public static string NetworkInterface { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The network address cannot be reached. Check if your computer is connected to the network. For information about network troubleshooting, see Windows Help. ähnelt. + /// Looks up a localized string similar to The network address cannot be reached. Check if your computer is connected to the network. For information about network troubleshooting, see Windows Help.. /// public static string NetworkLocationCannotBeReachedMessage { get { @@ -2950,7 +2968,7 @@ public static string NetworkLocationCannotBeReachedMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die New connection... ähnelt. + /// Looks up a localized string similar to New connection.... /// public static string NewConnectionDots { get { @@ -2959,7 +2977,7 @@ public static string NewConnectionDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die New subnetmask or CIDR ähnelt. + /// Looks up a localized string similar to New subnetmask or CIDR. /// public static string NewSubnetmaskOrCIDR { get { @@ -2968,7 +2986,7 @@ public static string NewSubnetmaskOrCIDR { } /// - /// Sucht eine lokalisierte Zeichenfolge, die New tab ähnelt. + /// Looks up a localized string similar to New tab. /// public static string NewTab { get { @@ -2977,7 +2995,7 @@ public static string NewTab { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No ähnelt. + /// Looks up a localized string similar to No. /// public static string No { get { @@ -2986,7 +3004,7 @@ public static string No { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No DNS record found for "{0}"! Check your input and the settings. ähnelt. + /// Looks up a localized string similar to No DNS record found for "{0}"! Check your input and the settings.. /// public static string NoDNSRecordFoundCheckYourInputAndSettings { get { @@ -2995,7 +3013,7 @@ public static string NoDNSRecordFoundCheckYourInputAndSettings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No enabled network adapters found! ähnelt. + /// Looks up a localized string similar to No enabled network adapters found!. /// public static string NoEnabledNetworkAdaptersFound { get { @@ -3004,7 +3022,7 @@ public static string NoEnabledNetworkAdaptersFound { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No ports found. Check your input! ähnelt. + /// Looks up a localized string similar to No ports found. Check your input!. /// public static string NoPortsFoundCheckYourInput { get { @@ -3013,7 +3031,7 @@ public static string NoPortsFoundCheckYourInput { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No profiles found! Create one... ähnelt. + /// Looks up a localized string similar to No profiles found! Create one.... /// public static string NoProfilesFoundCreateOne { get { @@ -3022,7 +3040,7 @@ public static string NoProfilesFoundCreateOne { } /// - /// Sucht eine lokalisierte Zeichenfolge, die (not changed) ähnelt. + /// Looks up a localized string similar to (not changed). /// public static string NotChanged { get { @@ -3031,7 +3049,7 @@ public static string NotChanged { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Nothing found! ähnelt. + /// Looks up a localized string similar to Nothing found!. /// public static string NothingFound { get { @@ -3040,7 +3058,7 @@ public static string NothingFound { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Nothing to do. Check your input! ähnelt. + /// Looks up a localized string similar to Nothing to do. Check your input!. /// public static string NothingToDoCheckYourInput { get { @@ -3049,7 +3067,7 @@ public static string NothingToDoCheckYourInput { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No update available! ähnelt. + /// Looks up a localized string similar to No update available!. /// public static string NoUpdateAvailable { get { @@ -3058,7 +3076,7 @@ public static string NoUpdateAvailable { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No valid file found to import. ähnelt. + /// Looks up a localized string similar to No valid file found to import.. /// public static string NoValidFileFoundToImport { get { @@ -3067,7 +3085,7 @@ public static string NoValidFileFoundToImport { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No vendor found. Check your input! ähnelt. + /// Looks up a localized string similar to No vendor found. Check your input!. /// public static string NoVendorFoundCheckYourInput { get { @@ -3076,7 +3094,7 @@ public static string NoVendorFoundCheckYourInput { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Number of errors after which is canceled: ähnelt. + /// Looks up a localized string similar to Number of errors after which is canceled:. /// public static string NumberOfErrorsAfterWhichIsCanceled { get { @@ -3085,7 +3103,7 @@ public static string NumberOfErrorsAfterWhichIsCanceled { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Number of stored entries ähnelt. + /// Looks up a localized string similar to Number of stored entries. /// public static string NumberOfStoredEntries { get { @@ -3094,7 +3112,7 @@ public static string NumberOfStoredEntries { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Obtain an IP address automatically ähnelt. + /// Looks up a localized string similar to Obtain an IP address automatically. /// public static string ObtainAnIPAddressAutomatically { get { @@ -3103,7 +3121,7 @@ public static string ObtainAnIPAddressAutomatically { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Obtain DNS server address automatically ähnelt. + /// Looks up a localized string similar to Obtain DNS server address automatically. /// public static string ObtainDNSServerAddressAutomatically { get { @@ -3112,7 +3130,7 @@ public static string ObtainDNSServerAddressAutomatically { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Off ähnelt. + /// Looks up a localized string similar to Off. /// public static string Off { get { @@ -3121,7 +3139,7 @@ public static string Off { } /// - /// Sucht eine lokalisierte Zeichenfolge, die OID ähnelt. + /// Looks up a localized string similar to OID. /// public static string OID { get { @@ -3130,7 +3148,7 @@ public static string OID { } /// - /// Sucht eine lokalisierte Zeichenfolge, die OK ähnelt. + /// Looks up a localized string similar to OK. /// public static string OK { get { @@ -3139,7 +3157,7 @@ public static string OK { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Olive ähnelt. + /// Looks up a localized string similar to Olive. /// public static string Olive { get { @@ -3148,7 +3166,7 @@ public static string Olive { } /// - /// Sucht eine lokalisierte Zeichenfolge, die On ähnelt. + /// Looks up a localized string similar to On. /// public static string On { get { @@ -3157,7 +3175,7 @@ public static string On { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Only numbers can be entered! ähnelt. + /// Looks up a localized string similar to Only numbers can be entered!. /// public static string OnlyNumbersCanBeEntered { get { @@ -3166,7 +3184,7 @@ public static string OnlyNumbersCanBeEntered { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Only when using the full screen ähnelt. + /// Looks up a localized string similar to Only when using the full screen. /// public static string OnlyWhenUsingTheFullScreen { get { @@ -3175,7 +3193,7 @@ public static string OnlyWhenUsingTheFullScreen { } /// - /// Sucht eine lokalisierte Zeichenfolge, die On the remote computer ähnelt. + /// Looks up a localized string similar to On the remote computer. /// public static string OnTheRemoteComputer { get { @@ -3184,7 +3202,7 @@ public static string OnTheRemoteComputer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die On this computer ähnelt. + /// Looks up a localized string similar to On this computer. /// public static string OnThisComputer { get { @@ -3193,7 +3211,7 @@ public static string OnThisComputer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open ähnelt. + /// Looks up a localized string similar to Open. /// public static string Open { get { @@ -3202,7 +3220,7 @@ public static string Open { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open license ähnelt. + /// Looks up a localized string similar to Open license. /// public static string OpenLicense { get { @@ -3211,7 +3229,7 @@ public static string OpenLicense { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open location ähnelt. + /// Looks up a localized string similar to Open location. /// public static string OpenLocation { get { @@ -3220,7 +3238,7 @@ public static string OpenLocation { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open project ähnelt. + /// Looks up a localized string similar to Open project. /// public static string OpenProject { get { @@ -3229,7 +3247,7 @@ public static string OpenProject { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open settings ähnelt. + /// Looks up a localized string similar to Open settings. /// public static string OpenSettings { get { @@ -3238,7 +3256,7 @@ public static string OpenSettings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open website ähnelt. + /// Looks up a localized string similar to Open website. /// public static string OpenWebsite { get { @@ -3247,7 +3265,7 @@ public static string OpenWebsite { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Orange ähnelt. + /// Looks up a localized string similar to Orange. /// public static string Orange { get { @@ -3256,7 +3274,7 @@ public static string Orange { } /// - /// Sucht eine lokalisierte Zeichenfolge, die OUI ähnelt. + /// Looks up a localized string similar to OUI. /// public static string OUI { get { @@ -3265,7 +3283,7 @@ public static string OUI { } /// - /// Sucht eine lokalisierte Zeichenfolge, die override ähnelt. + /// Looks up a localized string similar to override. /// public static string Override { get { @@ -3274,7 +3292,7 @@ public static string Override { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Overwrite ähnelt. + /// Looks up a localized string similar to Overwrite. /// public static string Overwrite { get { @@ -3283,7 +3301,7 @@ public static string Overwrite { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Overwrite? ähnelt. + /// Looks up a localized string similar to Overwrite?. /// public static string OverwriteQuestion { get { @@ -3292,9 +3310,9 @@ public static string OverwriteQuestion { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Overwrite settings in the destination folder? + /// Looks up a localized string similar to Overwrite settings in the destination folder? /// - ///If you click "Move & Restart", the remaining files will be copied and the application will be restarted with the new settings! ähnelt. + ///If you click "Move & Restart", the remaining files will be copied and the application will be restarted with the new settings!. /// public static string OverwriteSettingsInTheDestinationFolder { get { @@ -3303,7 +3321,7 @@ public static string OverwriteSettingsInTheDestinationFolder { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Packet loss ähnelt. + /// Looks up a localized string similar to Packet loss. /// public static string PacketLoss { get { @@ -3312,7 +3330,7 @@ public static string PacketLoss { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Packets transmitted ähnelt. + /// Looks up a localized string similar to Packets transmitted. /// public static string PacketsTransmitted { get { @@ -3321,7 +3339,7 @@ public static string PacketsTransmitted { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Password ähnelt. + /// Looks up a localized string similar to Password. /// public static string Password { get { @@ -3330,7 +3348,7 @@ public static string Password { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Passwords do not match! ähnelt. + /// Looks up a localized string similar to Passwords do not match!. /// public static string PasswordsDoNotMatch { get { @@ -3339,7 +3357,7 @@ public static string PasswordsDoNotMatch { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Paste ähnelt. + /// Looks up a localized string similar to Paste. /// public static string Paste { get { @@ -3348,7 +3366,7 @@ public static string Paste { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Path ähnelt. + /// Looks up a localized string similar to Path. /// public static string Path { get { @@ -3357,7 +3375,7 @@ public static string Path { } /// - /// Sucht eine lokalisierte Zeichenfolge, die PhysicalAddress ähnelt. + /// Looks up a localized string similar to PhysicalAddress. /// public static string PhysicalAddress { get { @@ -3366,7 +3384,7 @@ public static string PhysicalAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Ping ähnelt. + /// Looks up a localized string similar to Ping. /// public static string Ping { get { @@ -3375,7 +3393,7 @@ public static string Ping { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Pink ähnelt. + /// Looks up a localized string similar to Pink. /// public static string Pink { get { @@ -3384,7 +3402,7 @@ public static string Pink { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Port ähnelt. + /// Looks up a localized string similar to Port. /// public static string Port { get { @@ -3393,7 +3411,7 @@ public static string Port { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Portable ähnelt. + /// Looks up a localized string similar to Portable. /// public static string Portable { get { @@ -3402,7 +3420,7 @@ public static string Portable { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Port or service ähnelt. + /// Looks up a localized string similar to Port or service. /// public static string PortOrService { get { @@ -3411,7 +3429,7 @@ public static string PortOrService { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Port(s) ähnelt. + /// Looks up a localized string similar to Port(s). /// public static string Ports { get { @@ -3420,7 +3438,7 @@ public static string Ports { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Port Scanner ähnelt. + /// Looks up a localized string similar to Port Scanner. /// public static string PortScanner { get { @@ -3429,7 +3447,7 @@ public static string PortScanner { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. + /// Looks up a localized string similar to Closed. /// public static string PortState_Closed { get { @@ -3438,7 +3456,7 @@ public static string PortState_Closed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Open ähnelt. + /// Looks up a localized string similar to Open. /// public static string PortState_Open { get { @@ -3447,7 +3465,7 @@ public static string PortState_Open { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Preferred protocol when resolving hostname: ähnelt. + /// Looks up a localized string similar to Preferred protocol when resolving hostname:. /// public static string PreferredProtocolWhenResolvingHostname { get { @@ -3456,7 +3474,7 @@ public static string PreferredProtocolWhenResolvingHostname { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Primary DNS server ähnelt. + /// Looks up a localized string similar to Primary DNS server. /// public static string PrimaryDNSServer { get { @@ -3465,7 +3483,7 @@ public static string PrimaryDNSServer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Priv ähnelt. + /// Looks up a localized string similar to Priv. /// public static string Priv { get { @@ -3474,7 +3492,7 @@ public static string Priv { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Profile ähnelt. + /// Looks up a localized string similar to Profile. /// public static string Profile { get { @@ -3483,7 +3501,7 @@ public static string Profile { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Profiles ähnelt. + /// Looks up a localized string similar to Profiles. /// public static string Profiles { get { @@ -3492,7 +3510,7 @@ public static string Profiles { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Profiles reloaded ähnelt. + /// Looks up a localized string similar to Profiles reloaded. /// public static string ProfilesReloaded { get { @@ -3501,7 +3519,7 @@ public static string ProfilesReloaded { } /// - /// Sucht eine lokalisierte Zeichenfolge, die A profile with this name already exists! ähnelt. + /// Looks up a localized string similar to A profile with this name already exists!. /// public static string ProfileWithThisNameAlreadyExists { get { @@ -3510,7 +3528,7 @@ public static string ProfileWithThisNameAlreadyExists { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Protocol ähnelt. + /// Looks up a localized string similar to Protocol. /// public static string Protocol { get { @@ -3519,7 +3537,7 @@ public static string Protocol { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Purple ähnelt. + /// Looks up a localized string similar to Purple. /// public static string Purple { get { @@ -3528,7 +3546,7 @@ public static string Purple { } /// - /// Sucht eine lokalisierte Zeichenfolge, die PuTTY ähnelt. + /// Looks up a localized string similar to PuTTY. /// public static string PuTTY { get { @@ -3537,7 +3555,7 @@ public static string PuTTY { } /// - /// Sucht eine lokalisierte Zeichenfolge, die PuTTY location... ähnelt. + /// Looks up a localized string similar to PuTTY location.... /// public static string PuTTYLocationDots { get { @@ -3546,7 +3564,7 @@ public static string PuTTYLocationDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die PuTTY process has ended! ähnelt. + /// Looks up a localized string similar to PuTTY process has ended!. /// public static string PuTTYProcessHasEnded { get { @@ -3555,7 +3573,7 @@ public static string PuTTYProcessHasEnded { } /// - /// Sucht eine lokalisierte Zeichenfolge, die PuTTY profile ähnelt. + /// Looks up a localized string similar to PuTTY profile. /// public static string PuTTYProfile { get { @@ -3564,7 +3582,7 @@ public static string PuTTYProfile { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Query ähnelt. + /// Looks up a localized string similar to Query. /// public static string Query { get { @@ -3573,7 +3591,7 @@ public static string Query { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Questions ähnelt. + /// Looks up a localized string similar to Questions. /// public static string Questions { get { @@ -3582,7 +3600,7 @@ public static string Questions { } /// - /// Sucht eine lokalisierte Zeichenfolge, die RAW ähnelt. + /// Looks up a localized string similar to RAW. /// public static string RAW { get { @@ -3591,7 +3609,7 @@ public static string RAW { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Read the MAC address from the ARP cache ähnelt. + /// Looks up a localized string similar to Read the MAC address from the ARP cache. /// public static string ReadTheMACAddressFromTheArpCache { get { @@ -3600,7 +3618,7 @@ public static string ReadTheMACAddressFromTheArpCache { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Received / Lost ähnelt. + /// Looks up a localized string similar to Received / Lost. /// public static string ReceivedLost { get { @@ -3609,7 +3627,7 @@ public static string ReceivedLost { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Reconnect ähnelt. + /// Looks up a localized string similar to Reconnect. /// public static string Reconnect { get { @@ -3618,7 +3636,7 @@ public static string Reconnect { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Recursion ähnelt. + /// Looks up a localized string similar to Recursion. /// public static string Recursion { get { @@ -3627,7 +3645,7 @@ public static string Recursion { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Red ähnelt. + /// Looks up a localized string similar to Red. /// public static string Red { get { @@ -3636,7 +3654,7 @@ public static string Red { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect clipboard ähnelt. + /// Looks up a localized string similar to Redirect clipboard. /// public static string RedirectClipboard { get { @@ -3645,7 +3663,7 @@ public static string RedirectClipboard { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect devices ähnelt. + /// Looks up a localized string similar to Redirect devices. /// public static string RedirectDevices { get { @@ -3654,7 +3672,7 @@ public static string RedirectDevices { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect drives ähnelt. + /// Looks up a localized string similar to Redirect drives. /// public static string RedirectDrives { get { @@ -3663,7 +3681,7 @@ public static string RedirectDrives { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect ports ähnelt. + /// Looks up a localized string similar to Redirect ports. /// public static string RedirectPorts { get { @@ -3672,7 +3690,7 @@ public static string RedirectPorts { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect printers ähnelt. + /// Looks up a localized string similar to Redirect printers. /// public static string RedirectPrinters { get { @@ -3681,7 +3699,7 @@ public static string RedirectPrinters { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Redirect smartcards ähnelt. + /// Looks up a localized string similar to Redirect smartcards. /// public static string RedirectSmartcards { get { @@ -3690,7 +3708,7 @@ public static string RedirectSmartcards { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Refresh ähnelt. + /// Looks up a localized string similar to Refresh. /// public static string Refresh { get { @@ -3699,7 +3717,7 @@ public static string Refresh { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remaining time ähnelt. + /// Looks up a localized string similar to Remaining time. /// public static string RemainingTime { get { @@ -3708,7 +3726,7 @@ public static string RemainingTime { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop ähnelt. + /// Looks up a localized string similar to Remote Desktop. /// public static string RemoteDesktop { get { @@ -3717,7 +3735,7 @@ public static string RemoteDesktop { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Socket closed. ähnelt. + /// Looks up a localized string similar to Socket closed.. /// public static string RemoteDesktopDisconnectReason_AtClientWinsockFDCLOSE { get { @@ -3726,7 +3744,7 @@ public static string RemoteDesktopDisconnectReason_AtClientWinsockFDCLOSE { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote disconnect by server. ähnelt. + /// Looks up a localized string similar to Remote disconnect by server.. /// public static string RemoteDesktopDisconnectReason_ByServer { get { @@ -3735,7 +3753,7 @@ public static string RemoteDesktopDisconnectReason_ByServer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Decompression error. ähnelt. + /// Looks up a localized string similar to Decompression error.. /// public static string RemoteDesktopDisconnectReason_ClientDecompressionError { get { @@ -3744,7 +3762,7 @@ public static string RemoteDesktopDisconnectReason_ClientDecompressionError { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Connection timed out. ähnelt. + /// Looks up a localized string similar to Connection timed out.. /// public static string RemoteDesktopDisconnectReason_ConnectionTimedOut { get { @@ -3753,7 +3771,7 @@ public static string RemoteDesktopDisconnectReason_ConnectionTimedOut { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Decryption error. ähnelt. + /// Looks up a localized string similar to Decryption error.. /// public static string RemoteDesktopDisconnectReason_DecryptionError { get { @@ -3762,7 +3780,7 @@ public static string RemoteDesktopDisconnectReason_DecryptionError { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS name lookup failure. ähnelt. + /// Looks up a localized string similar to DNS name lookup failure.. /// public static string RemoteDesktopDisconnectReason_DNSLookupFailed { get { @@ -3771,7 +3789,7 @@ public static string RemoteDesktopDisconnectReason_DNSLookupFailed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DNS lookup failed. ähnelt. + /// Looks up a localized string similar to DNS lookup failed.. /// public static string RemoteDesktopDisconnectReason_DNSLookupFailed2 { get { @@ -3780,7 +3798,7 @@ public static string RemoteDesktopDisconnectReason_DNSLookupFailed2 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Encryption error. ähnelt. + /// Looks up a localized string similar to Encryption error.. /// public static string RemoteDesktopDisconnectReason_EncryptionError { get { @@ -3789,7 +3807,7 @@ public static string RemoteDesktopDisconnectReason_EncryptionError { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Windows Sockets gethostbyname call failed. ähnelt. + /// Looks up a localized string similar to Windows Sockets gethostbyname call failed.. /// public static string RemoteDesktopDisconnectReason_GetHostByNameFailed { get { @@ -3798,7 +3816,7 @@ public static string RemoteDesktopDisconnectReason_GetHostByNameFailed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Host not found. ähnelt. + /// Looks up a localized string similar to Host not found.. /// public static string RemoteDesktopDisconnectReason_HostNotFound { get { @@ -3807,7 +3825,7 @@ public static string RemoteDesktopDisconnectReason_HostNotFound { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Internal error. ähnelt. + /// Looks up a localized string similar to Internal error.. /// public static string RemoteDesktopDisconnectReason_InternalError { get { @@ -3816,7 +3834,7 @@ public static string RemoteDesktopDisconnectReason_InternalError { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Internal security error. ähnelt. + /// Looks up a localized string similar to Internal security error.. /// public static string RemoteDesktopDisconnectReason_InternalSecurityError { get { @@ -3825,7 +3843,7 @@ public static string RemoteDesktopDisconnectReason_InternalSecurityError { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Internal security error. ähnelt. + /// Looks up a localized string similar to Internal security error.. /// public static string RemoteDesktopDisconnectReason_InternalSecurityError2 { get { @@ -3834,7 +3852,7 @@ public static string RemoteDesktopDisconnectReason_InternalSecurityError2 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The encryption method specified is not valid. ähnelt. + /// Looks up a localized string similar to The encryption method specified is not valid.. /// public static string RemoteDesktopDisconnectReason_InvalidEncryption { get { @@ -3843,7 +3861,7 @@ public static string RemoteDesktopDisconnectReason_InvalidEncryption { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Bad IP address specified. ähnelt. + /// Looks up a localized string similar to Bad IP address specified.. /// public static string RemoteDesktopDisconnectReason_InvalidIP { get { @@ -3852,7 +3870,7 @@ public static string RemoteDesktopDisconnectReason_InvalidIP { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The IP address specified is not valid. ähnelt. + /// Looks up a localized string similar to The IP address specified is not valid.. /// public static string RemoteDesktopDisconnectReason_InvalidIPAddr { get { @@ -3861,7 +3879,7 @@ public static string RemoteDesktopDisconnectReason_InvalidIPAddr { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Security data is not valid. ähnelt. + /// Looks up a localized string similar to Security data is not valid.. /// public static string RemoteDesktopDisconnectReason_InvalidSecurityData { get { @@ -3870,7 +3888,7 @@ public static string RemoteDesktopDisconnectReason_InvalidSecurityData { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Server security data is not valid. ähnelt. + /// Looks up a localized string similar to Server security data is not valid.. /// public static string RemoteDesktopDisconnectReason_InvalidServerSecurityInfo { get { @@ -3879,7 +3897,7 @@ public static string RemoteDesktopDisconnectReason_InvalidServerSecurityInfo { } /// - /// Sucht eine lokalisierte Zeichenfolge, die License negotiation failed. ähnelt. + /// Looks up a localized string similar to License negotiation failed.. /// public static string RemoteDesktopDisconnectReason_LicensingFailed { get { @@ -3888,7 +3906,7 @@ public static string RemoteDesktopDisconnectReason_LicensingFailed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Licensing time-out. ähnelt. + /// Looks up a localized string similar to Licensing time-out.. /// public static string RemoteDesktopDisconnectReason_LicensingTimeout { get { @@ -3897,7 +3915,7 @@ public static string RemoteDesktopDisconnectReason_LicensingTimeout { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Local disconnection. ähnelt. + /// Looks up a localized string similar to Local disconnection.. /// public static string RemoteDesktopDisconnectReason_LocalNotError { get { @@ -3906,7 +3924,7 @@ public static string RemoteDesktopDisconnectReason_LocalNotError { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No information is available. ähnelt. + /// Looks up a localized string similar to No information is available.. /// public static string RemoteDesktopDisconnectReason_NoInfo { get { @@ -3915,7 +3933,7 @@ public static string RemoteDesktopDisconnectReason_NoInfo { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Out of memory. ähnelt. + /// Looks up a localized string similar to Out of memory.. /// public static string RemoteDesktopDisconnectReason_OutOfMemory { get { @@ -3924,7 +3942,7 @@ public static string RemoteDesktopDisconnectReason_OutOfMemory { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Out of memory. ähnelt. + /// Looks up a localized string similar to Out of memory.. /// public static string RemoteDesktopDisconnectReason_OutOfMemory2 { get { @@ -3933,7 +3951,7 @@ public static string RemoteDesktopDisconnectReason_OutOfMemory2 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Out of memory. ähnelt. + /// Looks up a localized string similar to Out of memory.. /// public static string RemoteDesktopDisconnectReason_OutOfMemory3 { get { @@ -3942,7 +3960,7 @@ public static string RemoteDesktopDisconnectReason_OutOfMemory3 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote disconnect by user. ähnelt. + /// Looks up a localized string similar to Remote disconnect by user.. /// public static string RemoteDesktopDisconnectReason_RemoteByUser { get { @@ -3951,7 +3969,7 @@ public static string RemoteDesktopDisconnectReason_RemoteByUser { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Failed to unpack server certificate. ähnelt. + /// Looks up a localized string similar to Failed to unpack server certificate.. /// public static string RemoteDesktopDisconnectReason_ServerCertificateUnpackErr { get { @@ -3960,7 +3978,7 @@ public static string RemoteDesktopDisconnectReason_ServerCertificateUnpackErr { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Windows Sockets connect failed. ähnelt. + /// Looks up a localized string similar to Windows Sockets connect failed.. /// public static string RemoteDesktopDisconnectReason_SocketConnectFailed { get { @@ -3969,7 +3987,7 @@ public static string RemoteDesktopDisconnectReason_SocketConnectFailed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Windows Sockets recv call failed. ähnelt. + /// Looks up a localized string similar to Windows Sockets recv call failed.. /// public static string RemoteDesktopDisconnectReason_SocketRecvFailed { get { @@ -3978,7 +3996,7 @@ public static string RemoteDesktopDisconnectReason_SocketRecvFailed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The account is disabled. ähnelt. + /// Looks up a localized string similar to The account is disabled.. /// public static string RemoteDesktopDisconnectReason_SslErrAccountDisabled { get { @@ -3987,7 +4005,7 @@ public static string RemoteDesktopDisconnectReason_SslErrAccountDisabled { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The account is expired. ähnelt. + /// Looks up a localized string similar to The account is expired.. /// public static string RemoteDesktopDisconnectReason_SslErrAccountExpired { get { @@ -3996,7 +4014,7 @@ public static string RemoteDesktopDisconnectReason_SslErrAccountExpired { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The account is locked out. ähnelt. + /// Looks up a localized string similar to The account is locked out.. /// public static string RemoteDesktopDisconnectReason_SslErrAccountLockedOut { get { @@ -4005,7 +4023,7 @@ public static string RemoteDesktopDisconnectReason_SslErrAccountLockedOut { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The account is restricted. ähnelt. + /// Looks up a localized string similar to The account is restricted.. /// public static string RemoteDesktopDisconnectReason_SslErrAccountRestriction { get { @@ -4014,7 +4032,7 @@ public static string RemoteDesktopDisconnectReason_SslErrAccountRestriction { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The received certificate is expired. ähnelt. + /// Looks up a localized string similar to The received certificate is expired.. /// public static string RemoteDesktopDisconnectReason_SslErrCertExpired { get { @@ -4023,7 +4041,7 @@ public static string RemoteDesktopDisconnectReason_SslErrCertExpired { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The policy does not support delegation of credentials to the target server. ähnelt. + /// Looks up a localized string similar to The policy does not support delegation of credentials to the target server.. /// public static string RemoteDesktopDisconnectReason_SslErrDelegationPolicy { get { @@ -4032,7 +4050,7 @@ public static string RemoteDesktopDisconnectReason_SslErrDelegationPolicy { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The server authentication policy does not allow connection requests using saved credentials. The user must enter new credentials. ähnelt. + /// Looks up a localized string similar to The server authentication policy does not allow connection requests using saved credentials. The user must enter new credentials.. /// public static string RemoteDesktopDisconnectReason_SslErrFreshCredRequiredByServer { get { @@ -4041,7 +4059,7 @@ public static string RemoteDesktopDisconnectReason_SslErrFreshCredRequiredByServ } /// - /// Sucht eine lokalisierte Zeichenfolge, die Login failed. ähnelt. + /// Looks up a localized string similar to Login failed.. /// public static string RemoteDesktopDisconnectReason_SslErrLogonFailure { get { @@ -4050,7 +4068,7 @@ public static string RemoteDesktopDisconnectReason_SslErrLogonFailure { } /// - /// Sucht eine lokalisierte Zeichenfolge, die No authority could be contacted for authentication. The domain name of the authenticating party could be wrong, the domain could be unreachable, or there might have been a trust relationship failure. ähnelt. + /// Looks up a localized string similar to No authority could be contacted for authentication. The domain name of the authenticating party could be wrong, the domain could be unreachable, or there might have been a trust relationship failure.. /// public static string RemoteDesktopDisconnectReason_SslErrNoAuthenticatingAuthority { get { @@ -4059,7 +4077,7 @@ public static string RemoteDesktopDisconnectReason_SslErrNoAuthenticatingAuthori } /// - /// Sucht eine lokalisierte Zeichenfolge, die The specified user has no account. ähnelt. + /// Looks up a localized string similar to The specified user has no account.. /// public static string RemoteDesktopDisconnectReason_SslErrNoSuchUser { get { @@ -4068,7 +4086,7 @@ public static string RemoteDesktopDisconnectReason_SslErrNoSuchUser { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The password is expired. ähnelt. + /// Looks up a localized string similar to The password is expired.. /// public static string RemoteDesktopDisconnectReason_SslErrPasswordExpired { get { @@ -4077,7 +4095,7 @@ public static string RemoteDesktopDisconnectReason_SslErrPasswordExpired { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The user password must be changed before logging on for the first time. ähnelt. + /// Looks up a localized string similar to The user password must be changed before logging on for the first time.. /// public static string RemoteDesktopDisconnectReason_SslErrPasswordMustChange { get { @@ -4086,7 +4104,7 @@ public static string RemoteDesktopDisconnectReason_SslErrPasswordMustChange { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Delegation of credentials to the target server is not allowed unless mutual authentication has been achieved. ähnelt. + /// Looks up a localized string similar to Delegation of credentials to the target server is not allowed unless mutual authentication has been achieved.. /// public static string RemoteDesktopDisconnectReason_SslErrPolicyNTLMOnly { get { @@ -4095,7 +4113,7 @@ public static string RemoteDesktopDisconnectReason_SslErrPolicyNTLMOnly { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The smart card is blocked. ähnelt. + /// Looks up a localized string similar to The smart card is blocked.. /// public static string RemoteDesktopDisconnectReason_SslErrSmartcardCardBlocked { get { @@ -4104,7 +4122,7 @@ public static string RemoteDesktopDisconnectReason_SslErrSmartcardCardBlocked { } /// - /// Sucht eine lokalisierte Zeichenfolge, die An incorrect PIN was presented to the smart card. ähnelt. + /// Looks up a localized string similar to An incorrect PIN was presented to the smart card.. /// public static string RemoteDesktopDisconnectReason_SslErrSmartcardWrongPIN { get { @@ -4113,7 +4131,7 @@ public static string RemoteDesktopDisconnectReason_SslErrSmartcardWrongPIN { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timeout occurred. ähnelt. + /// Looks up a localized string similar to Timeout occurred.. /// public static string RemoteDesktopDisconnectReason_TimeoutOccurred { get { @@ -4122,7 +4140,7 @@ public static string RemoteDesktopDisconnectReason_TimeoutOccurred { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Internal timer error. ähnelt. + /// Looks up a localized string similar to Internal timer error.. /// public static string RemoteDesktopDisconnectReason_TimerError { get { @@ -4131,7 +4149,7 @@ public static string RemoteDesktopDisconnectReason_TimerError { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Windows Sockets send call failed. ähnelt. + /// Looks up a localized string similar to Windows Sockets send call failed.. /// public static string RemoteDesktopDisconnectReason_WinsockSendFailed { get { @@ -4140,7 +4158,7 @@ public static string RemoteDesktopDisconnectReason_WinsockSendFailed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote IP address ähnelt. + /// Looks up a localized string similar to Remote IP address. /// public static string RemoteIPAddress { get { @@ -4149,7 +4167,7 @@ public static string RemoteIPAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Remote port ähnelt. + /// Looks up a localized string similar to Remote port. /// public static string RemotePort { get { @@ -4158,7 +4176,7 @@ public static string RemotePort { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Repeat ähnelt. + /// Looks up a localized string similar to Repeat. /// public static string Repeat { get { @@ -4167,7 +4185,7 @@ public static string Repeat { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Reset ähnelt. + /// Looks up a localized string similar to Reset. /// public static string Reset { get { @@ -4176,7 +4194,7 @@ public static string Reset { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Resolve CNAME on ANY requests ähnelt. + /// Looks up a localized string similar to Resolve CNAME on ANY requests. /// public static string ResolveCNAMEOnANYRequests { get { @@ -4185,7 +4203,7 @@ public static string ResolveCNAMEOnANYRequests { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Resolve hostname ähnelt. + /// Looks up a localized string similar to Resolve hostname. /// public static string ResolveHostname { get { @@ -4194,7 +4212,7 @@ public static string ResolveHostname { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Resolve PTR ähnelt. + /// Looks up a localized string similar to Resolve PTR. /// public static string ResolvePTR { get { @@ -4203,7 +4221,7 @@ public static string ResolvePTR { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Resources ähnelt. + /// Looks up a localized string similar to Resources. /// public static string Resources { get { @@ -4212,7 +4230,7 @@ public static string Resources { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Responses ähnelt. + /// Looks up a localized string similar to Responses. /// public static string Responses { get { @@ -4221,7 +4239,7 @@ public static string Responses { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Restart now ähnelt. + /// Looks up a localized string similar to Restart now. /// public static string RestartNow { get { @@ -4230,7 +4248,7 @@ public static string RestartNow { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Restart required ähnelt. + /// Looks up a localized string similar to Restart required. /// public static string RestartRequired { get { @@ -4239,7 +4257,7 @@ public static string RestartRequired { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Some settings are applied only after restarting the application! ähnelt. + /// Looks up a localized string similar to Some settings are applied only after restarting the application!. /// public static string RestartRequiredSettingsChangedMessage { get { @@ -4248,7 +4266,7 @@ public static string RestartRequiredSettingsChangedMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Restart the application so that all settings are applied! ähnelt. + /// Looks up a localized string similar to Restart the application so that all settings are applied!. /// public static string RestartTheApplicationSoThatAllChangesAreApplied { get { @@ -4257,7 +4275,7 @@ public static string RestartTheApplicationSoThatAllChangesAreApplied { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Result ähnelt. + /// Looks up a localized string similar to Result. /// public static string Result { get { @@ -4266,7 +4284,7 @@ public static string Result { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Rlogin ähnelt. + /// Looks up a localized string similar to Rlogin. /// public static string Rlogin { get { @@ -4275,7 +4293,7 @@ public static string Rlogin { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Route ähnelt. + /// Looks up a localized string similar to Route. /// public static string Route { get { @@ -4284,7 +4302,7 @@ public static string Route { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Save ähnelt. + /// Looks up a localized string similar to Save. /// public static string Save { get { @@ -4293,7 +4311,7 @@ public static string Save { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Save settings in the application folder ähnelt. + /// Looks up a localized string similar to Save settings in the application folder. /// public static string SaveSettingsInApplicationFolder { get { @@ -4302,7 +4320,7 @@ public static string SaveSettingsInApplicationFolder { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Scan ähnelt. + /// Looks up a localized string similar to Scan. /// public static string Scan { get { @@ -4311,7 +4329,7 @@ public static string Scan { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Scanned ähnelt. + /// Looks up a localized string similar to Scanned. /// public static string Scanned { get { @@ -4320,7 +4338,7 @@ public static string Scanned { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Search ähnelt. + /// Looks up a localized string similar to Search. /// public static string Search { get { @@ -4329,7 +4347,7 @@ public static string Search { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Search... ähnelt. + /// Looks up a localized string similar to Search.... /// public static string SearchDots { get { @@ -4338,7 +4356,7 @@ public static string SearchDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Searched application not found! ähnelt. + /// Looks up a localized string similar to Searched application not found!. /// public static string SearchedApplicationNotFound { get { @@ -4347,7 +4365,7 @@ public static string SearchedApplicationNotFound { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Searched language not found! ähnelt. + /// Looks up a localized string similar to Searched language not found!. /// public static string SearchedLanguageNotFound { get { @@ -4356,7 +4374,7 @@ public static string SearchedLanguageNotFound { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Searched setting not found! ähnelt. + /// Looks up a localized string similar to Searched setting not found!. /// public static string SearchedSettingNotFound { get { @@ -4365,7 +4383,7 @@ public static string SearchedSettingNotFound { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Secondary DNS server ähnelt. + /// Looks up a localized string similar to Secondary DNS server. /// public static string SecondaryDNSServer { get { @@ -4374,7 +4392,7 @@ public static string SecondaryDNSServer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Security ähnelt. + /// Looks up a localized string similar to Security. /// public static string Security { get { @@ -4383,7 +4401,7 @@ public static string Security { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select a profile... ähnelt. + /// Looks up a localized string similar to Select a profile.... /// public static string SelectAProfileDots { get { @@ -4392,7 +4410,7 @@ public static string SelectAProfileDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select a screen resolution ähnelt. + /// Looks up a localized string similar to Select a screen resolution. /// public static string SelectAScreenResolution { get { @@ -4401,7 +4419,7 @@ public static string SelectAScreenResolution { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The selected settings are overwritten. ähnelt. + /// Looks up a localized string similar to The selected settings are overwritten.. /// public static string SelectedSettingsAreOverwritten { get { @@ -4410,7 +4428,7 @@ public static string SelectedSettingsAreOverwritten { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The selected settings are reset. ähnelt. + /// Looks up a localized string similar to The selected settings are reset.. /// public static string SelectedSettingsAreReset { get { @@ -4419,7 +4437,7 @@ public static string SelectedSettingsAreReset { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to export: ähnelt. + /// Looks up a localized string similar to Select the settings you want to export:. /// public static string SelectTheSettingsYouWantToExport { get { @@ -4428,7 +4446,7 @@ public static string SelectTheSettingsYouWantToExport { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to import: ähnelt. + /// Looks up a localized string similar to Select the settings you want to import:. /// public static string SelectTheSettingsYouWantToImport { get { @@ -4437,7 +4455,7 @@ public static string SelectTheSettingsYouWantToImport { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Select the settings you want to reset: ähnelt. + /// Looks up a localized string similar to Select the settings you want to reset:. /// public static string SelectTheSettingsYouWantToReset { get { @@ -4446,7 +4464,7 @@ public static string SelectTheSettingsYouWantToReset { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Send ähnelt. + /// Looks up a localized string similar to Send. /// public static string Send { get { @@ -4455,7 +4473,7 @@ public static string Send { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Serial ähnelt. + /// Looks up a localized string similar to Serial. /// public static string Serial { get { @@ -4464,7 +4482,7 @@ public static string Serial { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SerialLine ähnelt. + /// Looks up a localized string similar to SerialLine. /// public static string SerialLine { get { @@ -4473,7 +4491,7 @@ public static string SerialLine { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Service ähnelt. + /// Looks up a localized string similar to Service. /// public static string Service { get { @@ -4482,7 +4500,7 @@ public static string Service { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Set Master Password ähnelt. + /// Looks up a localized string similar to Set Master Password. /// public static string SetMasterPassword { get { @@ -4491,7 +4509,7 @@ public static string SetMasterPassword { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Set Master Password... ähnelt. + /// Looks up a localized string similar to Set Master Password.... /// public static string SetMasterPasswordDots { get { @@ -4500,7 +4518,7 @@ public static string SetMasterPasswordDots { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Settings ähnelt. + /// Looks up a localized string similar to Settings. /// public static string Settings { get { @@ -4509,7 +4527,7 @@ public static string Settings { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The settings file found was corrupted or is not compatible with this version. All settings have been reset (profiles and credentials are not affected!) ähnelt. + /// Looks up a localized string similar to The settings file found was corrupted or is not compatible with this version. All settings have been reset (profiles and credentials are not affected!). /// public static string SettingsFileFoundWasCorruptOrNotCompatibleMessage { get { @@ -4518,7 +4536,7 @@ public static string SettingsFileFoundWasCorruptOrNotCompatibleMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Settings have been reset! ähnelt. + /// Looks up a localized string similar to Settings have been reset!. /// public static string SettingsHaveBeenReset { get { @@ -4527,7 +4545,7 @@ public static string SettingsHaveBeenReset { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully exported! ähnelt. + /// Looks up a localized string similar to Settings successfully exported!. /// public static string SettingsSuccessfullyExported { get { @@ -4536,7 +4554,7 @@ public static string SettingsSuccessfullyExported { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully imported! ähnelt. + /// Looks up a localized string similar to Settings successfully imported!. /// public static string SettingsSuccessfullyImported { get { @@ -4545,7 +4563,7 @@ public static string SettingsSuccessfullyImported { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Settings successfully reset! ähnelt. + /// Looks up a localized string similar to Settings successfully reset!. /// public static string SettingsSuccessfullyReset { get { @@ -4554,7 +4572,7 @@ public static string SettingsSuccessfullyReset { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show ähnelt. + /// Looks up a localized string similar to Show. /// public static string Show { get { @@ -4563,7 +4581,7 @@ public static string Show { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show closed ports ähnelt. + /// Looks up a localized string similar to Show closed ports. /// public static string ShowClosedPorts { get { @@ -4572,7 +4590,7 @@ public static string ShowClosedPorts { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show current application title ähnelt. + /// Looks up a localized string similar to Show current application title. /// public static string ShowCurrentApplicationTitle { get { @@ -4581,7 +4599,7 @@ public static string ShowCurrentApplicationTitle { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show local licenses ähnelt. + /// Looks up a localized string similar to Show local licenses. /// public static string ShowLocalLicenses { get { @@ -4590,7 +4608,7 @@ public static string ShowLocalLicenses { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show only most common query types ähnelt. + /// Looks up a localized string similar to Show only most common query types. /// public static string ShowOnlyMostCommonQueryTypes { get { @@ -4599,7 +4617,7 @@ public static string ShowOnlyMostCommonQueryTypes { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show scan result for all IP addresses ähnelt. + /// Looks up a localized string similar to Show scan result for all IP addresses. /// public static string ShowScanResultForAllIPAddresses { get { @@ -4608,7 +4626,7 @@ public static string ShowScanResultForAllIPAddresses { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show statistics ähnelt. + /// Looks up a localized string similar to Show statistics. /// public static string ShowStatistics { get { @@ -4617,7 +4635,7 @@ public static string ShowStatistics { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Show the following application on startup: ähnelt. + /// Looks up a localized string similar to Show the following application on startup:. /// public static string ShowTheFollowingApplicationOnStartup { get { @@ -4626,7 +4644,7 @@ public static string ShowTheFollowingApplicationOnStartup { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Sienna ähnelt. + /// Looks up a localized string similar to Sienna. /// public static string Sienna { get { @@ -4635,7 +4653,7 @@ public static string Sienna { } /// - /// Sucht eine lokalisierte Zeichenfolge, die A powerful tool for managing networks and troubleshoot network problems! ähnelt. + /// Looks up a localized string similar to A powerful tool for managing networks and troubleshoot network problems!. /// public static string Slogan { get { @@ -4644,7 +4662,7 @@ public static string Slogan { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SNMP ähnelt. + /// Looks up a localized string similar to SNMP. /// public static string SNMP { get { @@ -4653,7 +4671,7 @@ public static string SNMP { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Socket ähnelt. + /// Looks up a localized string similar to Socket. /// public static string Socket { get { @@ -4662,7 +4680,7 @@ public static string Socket { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Spaces are not allowed! ähnelt. + /// Looks up a localized string similar to Spaces are not allowed!. /// public static string SpacesAreNotAllowed { get { @@ -4671,7 +4689,7 @@ public static string SpacesAreNotAllowed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Speed ähnelt. + /// Looks up a localized string similar to Speed. /// public static string Speed { get { @@ -4680,7 +4698,7 @@ public static string Speed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SSH ähnelt. + /// Looks up a localized string similar to SSH. /// public static string SSH { get { @@ -4689,7 +4707,7 @@ public static string SSH { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Start minimized in tray ähnelt. + /// Looks up a localized string similar to Start minimized in tray. /// public static string StartMinimizedInTray { get { @@ -4698,7 +4716,7 @@ public static string StartMinimizedInTray { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Start time ähnelt. + /// Looks up a localized string similar to Start time. /// public static string StartTime { get { @@ -4707,7 +4725,7 @@ public static string StartTime { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Start with Windows (current user) ähnelt. + /// Looks up a localized string similar to Start with Windows (current user). /// public static string StartWithWindows { get { @@ -4716,7 +4734,7 @@ public static string StartWithWindows { } /// - /// Sucht eine lokalisierte Zeichenfolge, die State ähnelt. + /// Looks up a localized string similar to State. /// public static string State { get { @@ -4725,7 +4743,7 @@ public static string State { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Static IPv4 address ähnelt. + /// Looks up a localized string similar to Static IPv4 address. /// public static string StaticIPv4Address { get { @@ -4734,7 +4752,7 @@ public static string StaticIPv4Address { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Static IPv4 DNS server ähnelt. + /// Looks up a localized string similar to Static IPv4 DNS server. /// public static string StaticIPv4DNSServer { get { @@ -4743,7 +4761,7 @@ public static string StaticIPv4DNSServer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Statistics ähnelt. + /// Looks up a localized string similar to Statistics. /// public static string Statistics { get { @@ -4752,7 +4770,7 @@ public static string Statistics { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Status ähnelt. + /// Looks up a localized string similar to Status. /// public static string Status { get { @@ -4761,7 +4779,7 @@ public static string Status { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Steel ähnelt. + /// Looks up a localized string similar to Steel. /// public static string Steel { get { @@ -4770,7 +4788,7 @@ public static string Steel { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnet ähnelt. + /// Looks up a localized string similar to Subnet. /// public static string Subnet { get { @@ -4779,7 +4797,7 @@ public static string Subnet { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnet 1 ähnelt. + /// Looks up a localized string similar to Subnet 1. /// public static string Subnet1 { get { @@ -4788,7 +4806,7 @@ public static string Subnet1 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnet 2 ähnelt. + /// Looks up a localized string similar to Subnet 2. /// public static string Subnet2 { get { @@ -4797,7 +4815,7 @@ public static string Subnet2 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnet Calculator ähnelt. + /// Looks up a localized string similar to Subnet Calculator. /// public static string SubnetCalculator { get { @@ -4806,7 +4824,7 @@ public static string SubnetCalculator { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnetmask ähnelt. + /// Looks up a localized string similar to Subnetmask. /// public static string Subnetmask { get { @@ -4815,7 +4833,7 @@ public static string Subnetmask { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnetmask or CIDR ähnelt. + /// Looks up a localized string similar to Subnetmask or CIDR. /// public static string SubnetmaskOrCIDR { get { @@ -4824,7 +4842,7 @@ public static string SubnetmaskOrCIDR { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Subnetting ähnelt. + /// Looks up a localized string similar to Subnetting. /// public static string Subnetting { get { @@ -4833,7 +4851,7 @@ public static string Subnetting { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Success! ähnelt. + /// Looks up a localized string similar to Success!. /// public static string Success { get { @@ -4842,7 +4860,7 @@ public static string Success { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Supernetting ähnelt. + /// Looks up a localized string similar to Supernetting. /// public static string Supernetting { get { @@ -4851,7 +4869,7 @@ public static string Supernetting { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Tags ähnelt. + /// Looks up a localized string similar to Tags. /// public static string Tags { get { @@ -4860,7 +4878,7 @@ public static string Tags { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Taupe ähnelt. + /// Looks up a localized string similar to Taupe. /// public static string Taupe { get { @@ -4869,7 +4887,7 @@ public static string Taupe { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt. + /// Looks up a localized string similar to Closed. /// public static string TcpState_Closed { get { @@ -4878,7 +4896,7 @@ public static string TcpState_Closed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die CloseWait ähnelt. + /// Looks up a localized string similar to CloseWait. /// public static string TcpState_CloseWait { get { @@ -4887,7 +4905,7 @@ public static string TcpState_CloseWait { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Closing ähnelt. + /// Looks up a localized string similar to Closing. /// public static string TcpState_Closing { get { @@ -4896,7 +4914,7 @@ public static string TcpState_Closing { } /// - /// Sucht eine lokalisierte Zeichenfolge, die DeleteTcb ähnelt. + /// Looks up a localized string similar to DeleteTcb. /// public static string TcpState_DeleteTcb { get { @@ -4905,7 +4923,7 @@ public static string TcpState_DeleteTcb { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Established ähnelt. + /// Looks up a localized string similar to Established. /// public static string TcpState_Established { get { @@ -4914,7 +4932,7 @@ public static string TcpState_Established { } /// - /// Sucht eine lokalisierte Zeichenfolge, die FinWait1 ähnelt. + /// Looks up a localized string similar to FinWait1. /// public static string TcpState_FinWait1 { get { @@ -4923,7 +4941,7 @@ public static string TcpState_FinWait1 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die FinWait2 ähnelt. + /// Looks up a localized string similar to FinWait2. /// public static string TcpState_FinWait2 { get { @@ -4932,7 +4950,7 @@ public static string TcpState_FinWait2 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die LastAck ähnelt. + /// Looks up a localized string similar to LastAck. /// public static string TcpState_LastAck { get { @@ -4941,7 +4959,7 @@ public static string TcpState_LastAck { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Listen ähnelt. + /// Looks up a localized string similar to Listen. /// public static string TcpState_Listen { get { @@ -4950,7 +4968,7 @@ public static string TcpState_Listen { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SynReceived ähnelt. + /// Looks up a localized string similar to SynReceived. /// public static string TcpState_SynReceived { get { @@ -4959,7 +4977,7 @@ public static string TcpState_SynReceived { } /// - /// Sucht eine lokalisierte Zeichenfolge, die SynSent ähnelt. + /// Looks up a localized string similar to SynSent. /// public static string TcpState_SynSent { get { @@ -4968,7 +4986,7 @@ public static string TcpState_SynSent { } /// - /// Sucht eine lokalisierte Zeichenfolge, die TimeWait ähnelt. + /// Looks up a localized string similar to TimeWait. /// public static string TcpState_TimeWait { get { @@ -4977,7 +4995,7 @@ public static string TcpState_TimeWait { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Unkown ähnelt. + /// Looks up a localized string similar to Unkown. /// public static string TcpState_Unknown { get { @@ -4986,7 +5004,7 @@ public static string TcpState_Unknown { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Teal ähnelt. + /// Looks up a localized string similar to Teal. /// public static string Teal { get { @@ -4995,7 +5013,7 @@ public static string Teal { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Telnet ähnelt. + /// Looks up a localized string similar to Telnet. /// public static string Telnet { get { @@ -5004,7 +5022,7 @@ public static string Telnet { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The application can be started without parameters! ähnelt. + /// Looks up a localized string similar to The application can be started without parameters!. /// public static string TheApplicationCanBeStartedWithoutParameters { get { @@ -5013,7 +5031,7 @@ public static string TheApplicationCanBeStartedWithoutParameters { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The following hostnames could not be resolved: ähnelt. + /// Looks up a localized string similar to The following hostnames could not be resolved:. /// public static string TheFollowingHostnamesCouldNotBeResolved { get { @@ -5022,7 +5040,7 @@ public static string TheFollowingHostnamesCouldNotBeResolved { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The following parameters are available: ähnelt. + /// Looks up a localized string similar to The following parameters are available:. /// public static string TheFollowingParametersAreAvailable { get { @@ -5031,7 +5049,7 @@ public static string TheFollowingParametersAreAvailable { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The following parameters can not be processed: ähnelt. + /// Looks up a localized string similar to The following parameters can not be processed:. /// public static string TheFollowingParametersCanNotBeProcesses { get { @@ -5040,7 +5058,7 @@ public static string TheFollowingParametersCanNotBeProcesses { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Theme ähnelt. + /// Looks up a localized string similar to Theme. /// public static string Theme { get { @@ -5049,7 +5067,7 @@ public static string Theme { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The process can take up some time and resources (CPU / RAM). ähnelt. + /// Looks up a localized string similar to The process can take up some time and resources (CPU / RAM).. /// public static string TheProcessCanTakeUpSomeTimeAndResources { get { @@ -5058,7 +5076,7 @@ public static string TheProcessCanTakeUpSomeTimeAndResources { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The settings location is not affected ähnelt. + /// Looks up a localized string similar to The settings location is not affected. /// public static string TheSettingsLocationIsNotAffected { get { @@ -5067,7 +5085,7 @@ public static string TheSettingsLocationIsNotAffected { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Threads ähnelt. + /// Looks up a localized string similar to Threads. /// public static string Threads { get { @@ -5076,7 +5094,7 @@ public static string Threads { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Time ähnelt. + /// Looks up a localized string similar to Time. /// public static string Time { get { @@ -5085,7 +5103,7 @@ public static string Time { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Time 1 ähnelt. + /// Looks up a localized string similar to Time 1. /// public static string Time1 { get { @@ -5094,7 +5112,7 @@ public static string Time1 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Time 2 ähnelt. + /// Looks up a localized string similar to Time 2. /// public static string Time2 { get { @@ -5103,7 +5121,7 @@ public static string Time2 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Time 3 ähnelt. + /// Looks up a localized string similar to Time 3. /// public static string Time3 { get { @@ -5112,7 +5130,7 @@ public static string Time3 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timeout ähnelt. + /// Looks up a localized string similar to Timeout. /// public static string Timeout { get { @@ -5121,7 +5139,7 @@ public static string Timeout { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timeout (ms) ähnelt. + /// Looks up a localized string similar to Timeout (ms). /// public static string TimeoutMS { get { @@ -5130,7 +5148,7 @@ public static string TimeoutMS { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timeout on SNMP query. ähnelt. + /// Looks up a localized string similar to Timeout on SNMP query.. /// public static string TimeoutOnSNMPQuery { get { @@ -5139,7 +5157,7 @@ public static string TimeoutOnSNMPQuery { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timeout when querying the DNS server with the IP address "{0}"! ähnelt. + /// Looks up a localized string similar to Timeout when querying the DNS server with the IP address "{0}"!. /// public static string TimeoutWhenQueryingDNSServerMessage { get { @@ -5148,7 +5166,7 @@ public static string TimeoutWhenQueryingDNSServerMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Timestamp ähnelt. + /// Looks up a localized string similar to Timestamp. /// public static string Timestamp { get { @@ -5157,7 +5175,7 @@ public static string Timestamp { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Time to wait between each ping ähnelt. + /// Looks up a localized string similar to Time to wait between each ping. /// public static string TimeToWaitBetweenEachPing { get { @@ -5166,7 +5184,7 @@ public static string TimeToWaitBetweenEachPing { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Hour(s) ähnelt. + /// Looks up a localized string similar to Hour(s). /// public static string TimeUnit_Hour { get { @@ -5175,7 +5193,7 @@ public static string TimeUnit_Hour { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Minute(s) ähnelt. + /// Looks up a localized string similar to Minute(s). /// public static string TimeUnit_Minute { get { @@ -5184,7 +5202,7 @@ public static string TimeUnit_Minute { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Second(s) ähnelt. + /// Looks up a localized string similar to Second(s). /// public static string TimeUnit_Second { get { @@ -5193,7 +5211,7 @@ public static string TimeUnit_Second { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Trace ähnelt. + /// Looks up a localized string similar to Trace. /// public static string Trace { get { @@ -5202,7 +5220,7 @@ public static string Trace { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Traceroute ähnelt. + /// Looks up a localized string similar to Traceroute. /// public static string Traceroute { get { @@ -5211,7 +5229,7 @@ public static string Traceroute { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Transparency ähnelt. + /// Looks up a localized string similar to Transparency. /// public static string Transparency { get { @@ -5220,7 +5238,7 @@ public static string Transparency { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Tray ähnelt. + /// Looks up a localized string similar to Tray. /// public static string Tray { get { @@ -5229,7 +5247,7 @@ public static string Tray { } /// - /// Sucht eine lokalisierte Zeichenfolge, die TTL ähnelt. + /// Looks up a localized string similar to TTL. /// public static string TTL { get { @@ -5238,7 +5256,7 @@ public static string TTL { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Type ähnelt. + /// Looks up a localized string similar to Type. /// public static string Type { get { @@ -5247,7 +5265,7 @@ public static string Type { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Unkown error! ähnelt. + /// Looks up a localized string similar to Unkown error!. /// public static string UnkownError { get { @@ -5256,7 +5274,7 @@ public static string UnkownError { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Untray / Bring window to front ähnelt. + /// Looks up a localized string similar to Untray / Bring window to front. /// public static string UntrayBringWindowToFront { get { @@ -5265,7 +5283,7 @@ public static string UntrayBringWindowToFront { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Update ähnelt. + /// Looks up a localized string similar to Update. /// public static string Update { get { @@ -5274,7 +5292,7 @@ public static string Update { } /// - /// Sucht eine lokalisierte Zeichenfolge, die URL ähnelt. + /// Looks up a localized string similar to URL. /// public static string URL { get { @@ -5283,7 +5301,7 @@ public static string URL { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use credentials ähnelt. + /// Looks up a localized string similar to Use credentials. /// public static string UseCredentials { get { @@ -5292,7 +5310,7 @@ public static string UseCredentials { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use the current view size as the screen size ähnelt. + /// Looks up a localized string similar to Use the current view size as the screen size. /// public static string UseCurrentViewSize { get { @@ -5301,7 +5319,7 @@ public static string UseCurrentViewSize { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use custom DNS server ähnelt. + /// Looks up a localized string similar to Use custom DNS server. /// public static string UseCustomDNSServer { get { @@ -5310,7 +5328,7 @@ public static string UseCustomDNSServer { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use custom DNS suffix ähnelt. + /// Looks up a localized string similar to Use custom DNS suffix. /// public static string UseCustomDNSSuffix { get { @@ -5319,7 +5337,7 @@ public static string UseCustomDNSSuffix { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use resolver cache ähnelt. + /// Looks up a localized string similar to Use resolver cache. /// public static string UseResolverCache { get { @@ -5328,7 +5346,7 @@ public static string UseResolverCache { } /// - /// Sucht eine lokalisierte Zeichenfolge, die User interface locked! ähnelt. + /// Looks up a localized string similar to User interface locked!. /// public static string UserInterfaceLocked { get { @@ -5337,7 +5355,7 @@ public static string UserInterfaceLocked { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Username ähnelt. + /// Looks up a localized string similar to Username. /// public static string Username { get { @@ -5346,7 +5364,7 @@ public static string Username { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use the following DNS server addresses: ähnelt. + /// Looks up a localized string similar to Use the following DNS server addresses:. /// public static string UseTheFollowingDNSServerAddresses { get { @@ -5355,7 +5373,7 @@ public static string UseTheFollowingDNSServerAddresses { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Use the following IP address: ähnelt. + /// Looks up a localized string similar to Use the following IP address:. /// public static string UseTheFollowingIPAddress { get { @@ -5364,7 +5382,7 @@ public static string UseTheFollowingIPAddress { } /// - /// Sucht eine lokalisierte Zeichenfolge, die v1/v2c ähnelt. + /// Looks up a localized string similar to v1/v2c. /// public static string v1v2c { get { @@ -5373,7 +5391,7 @@ public static string v1v2c { } /// - /// Sucht eine lokalisierte Zeichenfolge, die v3 ähnelt. + /// Looks up a localized string similar to v3. /// public static string v3 { get { @@ -5382,7 +5400,7 @@ public static string v3 { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Validate ähnelt. + /// Looks up a localized string similar to Validate. /// public static string Validate { get { @@ -5391,7 +5409,7 @@ public static string Validate { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Validation failed! ähnelt. + /// Looks up a localized string similar to Validation failed!. /// public static string ValidationFailed { get { @@ -5400,7 +5418,7 @@ public static string ValidationFailed { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Vendor ähnelt. + /// Looks up a localized string similar to Vendor. /// public static string Vendor { get { @@ -5409,7 +5427,7 @@ public static string Vendor { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Version ähnelt. + /// Looks up a localized string similar to Version. /// public static string Version { get { @@ -5418,7 +5436,7 @@ public static string Version { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Version {0} is available! ähnelt. + /// Looks up a localized string similar to Version {0} is available!. /// public static string VersionxxIsAvailable { get { @@ -5427,7 +5445,7 @@ public static string VersionxxIsAvailable { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Violet ähnelt. + /// Looks up a localized string similar to Violet. /// public static string Violet { get { @@ -5436,7 +5454,7 @@ public static string Violet { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Visible applications ähnelt. + /// Looks up a localized string similar to Visible applications. /// public static string VisibleApplications { get { @@ -5445,7 +5463,7 @@ public static string VisibleApplications { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Visible applications in the bar: ähnelt. + /// Looks up a localized string similar to Visible applications in the bar:. /// public static string VisibleApplicationsInTheBar { get { @@ -5454,7 +5472,7 @@ public static string VisibleApplicationsInTheBar { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Wake on LAN ähnelt. + /// Looks up a localized string similar to Wake on LAN. /// public static string WakeOnLAN { get { @@ -5463,7 +5481,7 @@ public static string WakeOnLAN { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Wake up ähnelt. + /// Looks up a localized string similar to Wake up. /// public static string WakeUp { get { @@ -5472,7 +5490,7 @@ public static string WakeUp { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Walk mode ähnelt. + /// Looks up a localized string similar to Walk mode. /// public static string WalkMode { get { @@ -5481,7 +5499,7 @@ public static string WalkMode { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Some graphics cards / drivers have problems maximizing the application when transparency is enabled. The function must be disabled for using "Remote Desktop"! Enabling or disabling this feature requires a restart of the application. ähnelt. + /// Looks up a localized string similar to Some graphics cards / drivers have problems maximizing the application when transparency is enabled. The function must be disabled for using "Remote Desktop"! Enabling or disabling this feature requires a restart of the application.. /// public static string WarningMessage_SettingsGeneralAppearanceTransparency { get { @@ -5490,7 +5508,7 @@ public static string WarningMessage_SettingsGeneralAppearanceTransparency { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Website ähnelt. + /// Looks up a localized string similar to Website. /// public static string Website { get { @@ -5499,7 +5517,7 @@ public static string Website { } /// - /// Sucht eine lokalisierte Zeichenfolge, die White ähnelt. + /// Looks up a localized string similar to White. /// public static string White { get { @@ -5508,7 +5526,7 @@ public static string White { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Whois ähnelt. + /// Looks up a localized string similar to Whois. /// public static string Whois { get { @@ -5517,7 +5535,16 @@ public static string Whois { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Width ähnelt. + /// Looks up a localized string similar to Whois server not found for the domain: "{0}". + /// + public static string WhoisServerNotFoundForTheDomain { + get { + return ResourceManager.GetString("WhoisServerNotFoundForTheDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Width. /// public static string Width { get { @@ -5526,7 +5553,7 @@ public static string Width { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Window ähnelt. + /// Looks up a localized string similar to Window. /// public static string Window { get { @@ -5535,7 +5562,7 @@ public static string Window { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Wrong password! ähnelt. + /// Looks up a localized string similar to Wrong password!. /// public static string WrongPassword { get { @@ -5544,7 +5571,7 @@ public static string WrongPassword { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Credentials could not be decrypted with the given password. ähnelt. + /// Looks up a localized string similar to Credentials could not be decrypted with the given password.. /// public static string WrongPasswordDecryptionFailedMessage { get { @@ -5553,7 +5580,7 @@ public static string WrongPasswordDecryptionFailedMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The entered password is wrong. ähnelt. + /// Looks up a localized string similar to The entered password is wrong.. /// public static string WrongPasswordMessage { get { @@ -5562,7 +5589,7 @@ public static string WrongPasswordMessage { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Yellow ähnelt. + /// Looks up a localized string similar to Yellow. /// public static string Yellow { get { @@ -5571,7 +5598,7 @@ public static string Yellow { } /// - /// Sucht eine lokalisierte Zeichenfolge, die Yes ähnelt. + /// Looks up a localized string similar to Yes. /// public static string Yes { get { diff --git a/Source/NETworkManager/Resources/Localization/Strings.resx b/Source/NETworkManager/Resources/Localization/Strings.resx index 6c499a7c7e..af485ac014 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.resx +++ b/Source/NETworkManager/Resources/Localization/Strings.resx @@ -1958,4 +1958,13 @@ If you click "Move & Restart", the remaining files will be copied and the ap Whois + + Add a tab to query whois... + + + Enter a valid domain (like "example.com")! + + + Whois server not found for the domain: "{0}" + \ No newline at end of file diff --git a/Source/NETworkManager/Validators/DomainValidator.cs b/Source/NETworkManager/Validators/DomainValidator.cs index 02f17af328..4cd9ec205d 100644 --- a/Source/NETworkManager/Validators/DomainValidator.cs +++ b/Source/NETworkManager/Validators/DomainValidator.cs @@ -1,6 +1,7 @@ using System.Globalization; using System.Text.RegularExpressions; using System.Windows.Controls; +using NETworkManager.Resources.Localization; using NETworkManager.Utilities; namespace NETworkManager.Validators @@ -9,7 +10,7 @@ public class DomainValidator : ValidationRule { public override ValidationResult Validate(object value, CultureInfo cultureInfo) { - return Regex.IsMatch((string) value, RegexHelper.DomainRegex) ? ValidationResult.ValidResult : new ValidationResult(false,"** Enter string**"); + return Regex.IsMatch((string) value, RegexHelper.DomainRegex) ? ValidationResult.ValidResult : new ValidationResult(false,Strings.EnterValidDomain); } } } diff --git a/Source/NETworkManager/ViewModels/WhoisViewModel.cs b/Source/NETworkManager/ViewModels/WhoisViewModel.cs index f9ef4c47b5..5d95acf4f5 100644 --- a/Source/NETworkManager/ViewModels/WhoisViewModel.cs +++ b/Source/NETworkManager/ViewModels/WhoisViewModel.cs @@ -11,6 +11,7 @@ using System.Windows; using NETworkManager.Controls; using Dragablz; +using NETworkManager.Resources.Localization; namespace NETworkManager.ViewModels { @@ -162,14 +163,14 @@ public bool ExpandStatistics return; if (!_isLoading) - SettingsManager.Current.HTTPHeaders_ExpandStatistics = value; + SettingsManager.Current.Whois_ExpandStatistics = value; _expandStatistics = value; OnPropertyChanged(); } } - public bool ShowStatistics => SettingsManager.Current.HTTPHeaders_ShowStatistics; + public bool ShowStatistics => SettingsManager.Current.Whois_ShowStatistics; #endregion @@ -180,7 +181,7 @@ public WhoisViewModel(int tabId) _tabId = tabId; // Set collection view - WebsiteUriHistoryView = CollectionViewSource.GetDefaultView(SettingsManager.Current.Whois_WebsiteUriHistory); + WebsiteUriHistoryView = CollectionViewSource.GetDefaultView(SettingsManager.Current.Whois_DomainHistory); LoadSettings(); @@ -240,8 +241,17 @@ private async void Check() { var whoisServer = Whois.GetWhoisServer(Domain); - // check null - WhoisResult = await Whois.QueryAsync(Domain, whoisServer); + if (string.IsNullOrEmpty(whoisServer)) + { + StatusMessage = string.Format(Strings.WhoisServerNotFoundForTheDomain, Domain); + DisplayStatusMessage = true; + } + else + { + WhoisResult = await Whois.QueryAsync(Domain, whoisServer); + + AddDomainToHistory(Domain); + } } catch (Exception ex) { @@ -249,8 +259,6 @@ private async void Check() DisplayStatusMessage = true; } - AddWebsiteUriToHistory(Domain); - // Stop timer and stopwatch _stopwatch.Stop(); _dispatcherTimer.Stop(); @@ -268,17 +276,17 @@ public void OnClose() } - private void AddWebsiteUriToHistory(string websiteUri) + private void AddDomainToHistory(string websiteUri) { // Create the new list - var list = ListHelper.Modify(SettingsManager.Current.Whois_WebsiteUriHistory.ToList(), websiteUri, SettingsManager.Current.General_HistoryListEntries); + var list = ListHelper.Modify(SettingsManager.Current.Whois_DomainHistory.ToList(), websiteUri, SettingsManager.Current.General_HistoryListEntries); // Clear the old items - SettingsManager.Current.Whois_WebsiteUriHistory.Clear(); + SettingsManager.Current.Whois_DomainHistory.Clear(); OnPropertyChanged(nameof(Domain)); // Raise property changed again, after the collection has been cleared // Fill with the new items - list.ForEach(x => SettingsManager.Current.Whois_WebsiteUriHistory.Add(x)); + list.ForEach(x => SettingsManager.Current.Whois_DomainHistory.Add(x)); } #endregion diff --git a/Source/NETworkManager/Views/WhoisHostView.xaml b/Source/NETworkManager/Views/WhoisHostView.xaml index 41e8f18aff..a130765315 100644 --- a/Source/NETworkManager/Views/WhoisHostView.xaml +++ b/Source/NETworkManager/Views/WhoisHostView.xaml @@ -67,7 +67,7 @@ - + From 671752776fea6080b8ef10776c03fc2baabbff9a Mon Sep 17 00:00:00 2001 From: BornToBeRoot Date: Sat, 6 Oct 2018 00:58:39 +0200 Subject: [PATCH 9/9] Update --- Source/NETworkManager/MainWindow.xaml.cs | 2 ++ Source/NETworkManager/Models/Network/Whois.cs | 4 +--- .../Resources/Localization/Strings.Designer.cs | 9 +++++++++ .../NETworkManager/Resources/Localization/Strings.resx | 3 +++ Source/NETworkManager/Views/WhoisView.xaml | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/Source/NETworkManager/MainWindow.xaml.cs b/Source/NETworkManager/MainWindow.xaml.cs index ec218181ad..cdf9564fb3 100644 --- a/Source/NETworkManager/MainWindow.xaml.cs +++ b/Source/NETworkManager/MainWindow.xaml.cs @@ -591,6 +591,8 @@ private void RefreshApplicationView(ApplicationViewManager.Name name) break; case ApplicationViewManager.Name.Lookup: break; + case ApplicationViewManager.Name.Whois: + break; case ApplicationViewManager.Name.Connections: break; case ApplicationViewManager.Name.Listeners: diff --git a/Source/NETworkManager/Models/Network/Whois.cs b/Source/NETworkManager/Models/Network/Whois.cs index 665aceb2b7..f09fa65529 100644 --- a/Source/NETworkManager/Models/Network/Whois.cs +++ b/Source/NETworkManager/Models/Network/Whois.cs @@ -1,6 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Diagnostics; +using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Sockets; diff --git a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs index a118d73288..f6e7314d82 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.Designer.cs +++ b/Source/NETworkManager/Resources/Localization/Strings.Designer.cs @@ -1752,6 +1752,15 @@ public static string ExampleCredentialName { } } + /// + /// Looks up a localized string similar to example.com. + /// + public static string ExampleDomain { + get { + return ResourceManager.GetString("ExampleDomain", resourceCulture); + } + } + /// /// Looks up a localized string similar to Servers. /// diff --git a/Source/NETworkManager/Resources/Localization/Strings.resx b/Source/NETworkManager/Resources/Localization/Strings.resx index af485ac014..941cb01df8 100644 --- a/Source/NETworkManager/Resources/Localization/Strings.resx +++ b/Source/NETworkManager/Resources/Localization/Strings.resx @@ -1967,4 +1967,7 @@ If you click "Move & Restart", the remaining files will be copied and the ap Whois server not found for the domain: "{0}" + + example.com + \ No newline at end of file diff --git a/Source/NETworkManager/Views/WhoisView.xaml b/Source/NETworkManager/Views/WhoisView.xaml index 1641de6133..5bd35cfdc5 100644 --- a/Source/NETworkManager/Views/WhoisView.xaml +++ b/Source/NETworkManager/Views/WhoisView.xaml @@ -41,7 +41,7 @@ - +