From 39d69567bfe2876a038cf4d656aef19a685208f0 Mon Sep 17 00:00:00 2001
From: BornToBeRoot <16019165+BornToBeRoot@users.noreply.github.com>
Date: Sun, 16 Mar 2025 23:24:52 +0100
Subject: [PATCH 1/4] Feature: Hosts editor
---
Source/GlobalAssemblyInfo.cs | 4 +-
.../Resources/Strings.resx | 3 ++
.../ApplicationManager.cs | 7 +++-
.../NETworkManager.Models/ApplicationName.cs | 5 +++
.../SettingsManager.cs | 42 ++++++++++---------
5 files changed, 38 insertions(+), 23 deletions(-)
diff --git a/Source/GlobalAssemblyInfo.cs b/Source/GlobalAssemblyInfo.cs
index b557cda1cd..90884159c7 100644
--- a/Source/GlobalAssemblyInfo.cs
+++ b/Source/GlobalAssemblyInfo.cs
@@ -6,5 +6,5 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
-[assembly: AssemblyVersion("2025.1.18.0")]
-[assembly: AssemblyFileVersion("2025.1.18.0")]
+[assembly: AssemblyVersion("2025.3.16.0")]
+[assembly: AssemblyFileVersion("2025.3.16.0")]
diff --git a/Source/NETworkManager.Localization/Resources/Strings.resx b/Source/NETworkManager.Localization/Resources/Strings.resx
index b568f36d54..57e3d02432 100644
--- a/Source/NETworkManager.Localization/Resources/Strings.resx
+++ b/Source/NETworkManager.Localization/Resources/Strings.resx
@@ -3879,4 +3879,7 @@ Right-click for more options.
Profile file
+
+ Hosts Editor
+
\ No newline at end of file
diff --git a/Source/NETworkManager.Models/ApplicationManager.cs b/Source/NETworkManager.Models/ApplicationManager.cs
index 072dacd875..d2743582e7 100644
--- a/Source/NETworkManager.Models/ApplicationManager.cs
+++ b/Source/NETworkManager.Models/ApplicationManager.cs
@@ -1,8 +1,8 @@
-using System;
+using MahApps.Metro.IconPacks;
+using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Controls;
-using MahApps.Metro.IconPacks;
namespace NETworkManager.Models;
@@ -92,6 +92,9 @@ public static Canvas GetIcon(ApplicationName name)
case ApplicationName.SNTPLookup:
canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.ClockCheckOutline });
break;
+ case ApplicationName.HostsEditor:
+ canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.FileEditOutline });
+ break;
case ApplicationName.DiscoveryProtocol:
canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.SwapHorizontal });
break;
diff --git a/Source/NETworkManager.Models/ApplicationName.cs b/Source/NETworkManager.Models/ApplicationName.cs
index 63f0665cbb..903a1be447 100644
--- a/Source/NETworkManager.Models/ApplicationName.cs
+++ b/Source/NETworkManager.Models/ApplicationName.cs
@@ -90,6 +90,11 @@ public enum ApplicationName
///
SNTPLookup,
+ ///
+ /// Hosts editor application.
+ ///
+ HostsEditor,
+
///
/// Discovery protocol application.
///
diff --git a/Source/NETworkManager.Settings/SettingsManager.cs b/Source/NETworkManager.Settings/SettingsManager.cs
index 83056b5df5..91aef83eab 100644
--- a/Source/NETworkManager.Settings/SettingsManager.cs
+++ b/Source/NETworkManager.Settings/SettingsManager.cs
@@ -1,13 +1,10 @@
-using System;
-using System.Collections.ObjectModel;
+using log4net;
+using NETworkManager.Models;
+using NETworkManager.Models.Network;
+using System;
using System.IO;
using System.Linq;
using System.Xml.Serialization;
-using log4net;
-using NETworkManager.Controls;
-using NETworkManager.Models;
-using NETworkManager.Models.Network;
-using NETworkManager.Models.PowerShell;
namespace NETworkManager.Settings;
@@ -189,7 +186,7 @@ public static void Upgrade(Version fromVersion, Version toVersion)
if (fromVersion < new Version(2023, 11, 28, 0))
UpgradeTo_2023_11_28_0();
-
+
// 2024.11.11.0
if (fromVersion < new Version(2024, 11, 11, 0))
UpgradeTo_2024_11_11_0();
@@ -205,7 +202,7 @@ public static void Upgrade(Version fromVersion, Version toVersion)
Log.Info("Settings upgrade finished!");
}
- ///
+ ///
/// Method to apply changes for version 2023.3.7.0.
///
private static void UpgradeTo_2023_3_7_0()
@@ -217,14 +214,14 @@ private static void UpgradeTo_2023_3_7_0()
Current.General_ApplicationList.Add(ApplicationManager.GetDefaultList()
.First(x => x.Name == ApplicationName.SNTPLookup));
Current.SNTPLookup_SNTPServers =
- new ObservableCollection(SNTPServer.GetDefaultList());
+ [.. SNTPServer.GetDefaultList()];
// Add IP Scanner custom commands
foreach (var customCommand in from customCommand in IPScannerCustomCommand.GetDefaultList()
- let customCommandFound =
- Current.IPScanner_CustomCommands.FirstOrDefault(x => x.Name == customCommand.Name)
- where customCommandFound == null
- select customCommand)
+ let customCommandFound =
+ Current.IPScanner_CustomCommands.FirstOrDefault(x => x.Name == customCommand.Name)
+ where customCommandFound == null
+ select customCommand)
{
Log.Info($"Add \"{customCommand.Name}\" to \"IPScanner_CustomCommands\"...");
Current.IPScanner_CustomCommands.Add(customCommand);
@@ -251,7 +248,7 @@ private static void UpgradeTo_2023_3_7_0()
// Add new DNS lookup profiles
Log.Info("Init \"DNSLookup_DNSServers_v2\" with default DNS servers...");
Current.DNSLookup_DNSServers =
- new ObservableCollection(DNSServer.GetDefaultList());
+ [.. DNSServer.GetDefaultList()];
}
///
@@ -263,7 +260,7 @@ private static void UpgradeTo_2023_4_26_0()
// Add SNMP OID profiles
Log.Info("Add SNMP OID profiles...");
- Current.SNMP_OidProfiles = new ObservableCollection(SNMPOIDProfile.GetDefaultList());
+ Current.SNMP_OidProfiles = [.. SNMPOIDProfile.GetDefaultList()];
}
///
@@ -297,9 +294,9 @@ private static void UpgradeTo_2023_11_28_0()
// Add DNS lookup profiles after refactoring
Log.Info("Init \"DNSLookup_DNSServers\" with default DNS servers...");
Current.DNSLookup_DNSServers =
- new ObservableCollection(DNSServer.GetDefaultList());
+ [.. DNSServer.GetDefaultList()];
}
-
+
///
/// Method to apply changes for version 2024.11.11.0.
///
@@ -309,7 +306,7 @@ private static void UpgradeTo_2024_11_11_0()
Log.Info("Reset ApplicationList to default...");
Current.General_ApplicationList =
- new ObservableSetCollection(ApplicationManager.GetDefaultList());
+ [.. ApplicationManager.GetDefaultList()];
}
///
@@ -319,6 +316,13 @@ private static void UpgradeTo_2024_11_11_0()
private static void UpgradeToLatest(Version version)
{
Log.Info($"Apply upgrade to {version}...");
+
+ // Add Hosts editor application
+ Log.Info("Add new app \"Hosts Editor\"...");
+
+ Current.General_ApplicationList.Insert(
+ ApplicationManager.GetDefaultList().ToList().FindIndex(x => x.Name == ApplicationName.HostsEditor),
+ ApplicationManager.GetDefaultList().First(x => x.Name == ApplicationName.HostsEditor));
}
#endregion
From 420cb143c808a84c3ae7bf4d89e638a6abc6c096 Mon Sep 17 00:00:00 2001
From: BornToBeRoot <16019165+BornToBeRoot@users.noreply.github.com>
Date: Sun, 23 Mar 2025 03:40:37 +0100
Subject: [PATCH 2/4] Feature: Hosts file editor
---
.../Resources/Strings.Designer.cs | 2562 +++++++++--------
.../Resources/Strings.resx | 10 +-
.../NETworkManager.Models/AWS/AWSProfile.cs | 10 +-
.../AWS/AWSProfileInfo.cs | 4 +-
.../ApplicationManager.cs | 2 +-
.../NETworkManager.Models/ApplicationName.cs | 4 +-
.../HostsFileEditor/HostsFileEditor.cs | 112 +
.../HostsFileEditor/HostsFileEntry.cs | 68 +
.../NETworkManager.Models/Lookup/OUILookup.cs | 2 +-
.../Lookup/PortLookup.cs | 2 +-
.../SettingsManager.cs | 6 +-
.../NETworkManager.Utilities/RegexHelper.cs | 16 +
Source/NETworkManager/MainWindow.xaml.cs | 19 +
Source/NETworkManager/NETworkManager.csproj | 5 +
.../ViewModels/HostsFileEditorViewModel.cs | 121 +
.../Views/HostsFileEditorView.xaml | 51 +
.../Views/HostsFileEditorView.xaml.cs | 25 +
Source/NETworkManager/log4net.config | 3 +-
18 files changed, 1736 insertions(+), 1286 deletions(-)
create mode 100644 Source/NETworkManager.Models/HostsFileEditor/HostsFileEditor.cs
create mode 100644 Source/NETworkManager.Models/HostsFileEditor/HostsFileEntry.cs
create mode 100644 Source/NETworkManager/ViewModels/HostsFileEditorViewModel.cs
create mode 100644 Source/NETworkManager/Views/HostsFileEditorView.xaml
create mode 100644 Source/NETworkManager/Views/HostsFileEditorView.xaml.cs
diff --git a/Source/NETworkManager.Localization/Resources/Strings.Designer.cs b/Source/NETworkManager.Localization/Resources/Strings.Designer.cs
index 783c4482cd..959966a88d 100644
--- a/Source/NETworkManager.Localization/Resources/Strings.Designer.cs
+++ b/Source/NETworkManager.Localization/Resources/Strings.Designer.cs
@@ -1,10 +1,9 @@
//------------------------------------------------------------------------------
//
-// Dieser Code wurde von einem Tool generiert.
-// Laufzeitversion:4.0.30319.42000
+// This code was generated by a tool.
//
-// Ä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 +12,12 @@ namespace NETworkManager.Localization.Resources {
///
- /// 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", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
@@ -33,7 +32,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 +46,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 +60,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 +69,7 @@ public static string About {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Steel ähnelt.
+ /// Looks up a localized string similar to Steel.
///
public static string Accen_Steel {
get {
@@ -79,7 +78,7 @@ public static string Accen_Steel {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Accent ähnelt.
+ /// Looks up a localized string similar to Accent.
///
public static string Accent {
get {
@@ -88,7 +87,7 @@ public static string Accent {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Amber ähnelt.
+ /// Looks up a localized string similar to Amber.
///
public static string Accent_Amber {
get {
@@ -97,7 +96,7 @@ public static string Accent_Amber {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Black ähnelt.
+ /// Looks up a localized string similar to Black.
///
public static string Accent_Black {
get {
@@ -106,7 +105,7 @@ public static string Accent_Black {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Blue ähnelt.
+ /// Looks up a localized string similar to Blue.
///
public static string Accent_Blue {
get {
@@ -115,7 +114,7 @@ public static string Accent_Blue {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Brown ähnelt.
+ /// Looks up a localized string similar to Brown.
///
public static string Accent_Brown {
get {
@@ -124,7 +123,7 @@ public static string Accent_Brown {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Cobalt ähnelt.
+ /// Looks up a localized string similar to Cobalt.
///
public static string Accent_Cobalt {
get {
@@ -133,7 +132,7 @@ public static string Accent_Cobalt {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Crimson ähnelt.
+ /// Looks up a localized string similar to Crimson.
///
public static string Accent_Crimson {
get {
@@ -142,7 +141,7 @@ public static string Accent_Crimson {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Cyan ähnelt.
+ /// Looks up a localized string similar to Cyan.
///
public static string Accent_Cyan {
get {
@@ -151,7 +150,7 @@ public static string Accent_Cyan {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Emerald ähnelt.
+ /// Looks up a localized string similar to Emerald.
///
public static string Accent_Emerald {
get {
@@ -160,7 +159,7 @@ public static string Accent_Emerald {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Green ähnelt.
+ /// Looks up a localized string similar to Green.
///
public static string Accent_Green {
get {
@@ -169,7 +168,7 @@ public static string Accent_Green {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Indigo ähnelt.
+ /// Looks up a localized string similar to Indigo.
///
public static string Accent_Indigo {
get {
@@ -178,7 +177,7 @@ public static string Accent_Indigo {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Lime ähnelt.
+ /// Looks up a localized string similar to Lime.
///
public static string Accent_Lime {
get {
@@ -187,7 +186,7 @@ public static string Accent_Lime {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Magenta ähnelt.
+ /// Looks up a localized string similar to Magenta.
///
public static string Accent_Magenta {
get {
@@ -196,7 +195,7 @@ public static string Accent_Magenta {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Mauve ähnelt.
+ /// Looks up a localized string similar to Mauve.
///
public static string Accent_Mauve {
get {
@@ -205,7 +204,7 @@ public static string Accent_Mauve {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Olive ähnelt.
+ /// Looks up a localized string similar to Olive.
///
public static string Accent_Olive {
get {
@@ -214,7 +213,7 @@ public static string Accent_Olive {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Orange ähnelt.
+ /// Looks up a localized string similar to Orange.
///
public static string Accent_Orange {
get {
@@ -223,7 +222,7 @@ public static string Accent_Orange {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Purple ähnelt.
+ /// Looks up a localized string similar to Purple.
///
public static string Accent_Purple {
get {
@@ -232,7 +231,7 @@ public static string Accent_Purple {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Red ähnelt.
+ /// Looks up a localized string similar to Red.
///
public static string Accent_Red {
get {
@@ -241,7 +240,7 @@ public static string Accent_Red {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Sienna ähnelt.
+ /// Looks up a localized string similar to Sienna.
///
public static string Accent_Sienna {
get {
@@ -250,7 +249,7 @@ public static string Accent_Sienna {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Steel ähnelt.
+ /// Looks up a localized string similar to Steel.
///
public static string Accent_Steel {
get {
@@ -259,7 +258,7 @@ public static string Accent_Steel {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Taupe ähnelt.
+ /// Looks up a localized string similar to Taupe.
///
public static string Accent_Taupe {
get {
@@ -268,7 +267,7 @@ public static string Accent_Taupe {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Teal ähnelt.
+ /// Looks up a localized string similar to Teal.
///
public static string Accent_Teal {
get {
@@ -277,7 +276,7 @@ public static string Accent_Teal {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Pink ähnelt.
+ /// Looks up a localized string similar to Pink.
///
public static string Accent_Violet {
get {
@@ -286,7 +285,7 @@ public static string Accent_Violet {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Yellow ähnelt.
+ /// Looks up a localized string similar to Yellow.
///
public static string Accent_Yellow {
get {
@@ -295,7 +294,7 @@ public static string Accent_Yellow {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add ähnelt.
+ /// Looks up a localized string similar to Add.
///
public static string Add {
get {
@@ -304,7 +303,7 @@ public static string Add {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add a host to monitor ähnelt.
+ /// Looks up a localized string similar to Add a host to monitor.
///
public static string AddAHostToMonitor {
get {
@@ -313,7 +312,7 @@ public static string AddAHostToMonitor {
}
///
- /// 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 {
@@ -322,7 +321,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 {
@@ -331,7 +330,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 {
@@ -340,7 +339,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 {
@@ -349,7 +348,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 {
@@ -358,7 +357,7 @@ public static string AddATabToPerformAPortScan {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a SNTP lookup... ähnelt.
+ /// Looks up a localized string similar to Add a tab to perform a SNTP lookup....
///
public static string AddATabToPerformASNTPLookup {
get {
@@ -367,7 +366,7 @@ public static string AddATabToPerformASNTPLookup {
}
///
- /// 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 {
@@ -376,7 +375,7 @@ public static string AddATabToPerformATrace {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to query the IP geolocation... ähnelt.
+ /// Looks up a localized string similar to Add a tab to query the IP geolocation....
///
public static string AddATabToQueryTheIPGeolocation {
get {
@@ -385,7 +384,7 @@ public static string AddATabToQueryTheIPGeolocation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to query whois... ähnelt.
+ /// Looks up a localized string similar to Add a tab to query whois....
///
public static string AddATabToQueryWhois {
get {
@@ -394,7 +393,7 @@ public static string AddATabToQueryWhois {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add AWS profile ähnelt.
+ /// Looks up a localized string similar to Add AWS profile.
///
public static string AddAWSProfile {
get {
@@ -403,7 +402,7 @@ public static string AddAWSProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add credentials ähnelt.
+ /// Looks up a localized string similar to Add credentials.
///
public static string AddCredentials {
get {
@@ -412,7 +411,7 @@ public static string AddCredentials {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add custom command ähnelt.
+ /// Looks up a localized string similar to Add custom command.
///
public static string AddCustomCommand {
get {
@@ -421,7 +420,7 @@ public static string AddCustomCommand {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add DNS server ähnelt.
+ /// Looks up a localized string similar to Add DNS server.
///
public static string AddDNSServer {
get {
@@ -430,7 +429,7 @@ public static string AddDNSServer {
}
///
- /// 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 {
@@ -439,7 +438,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 {
@@ -448,7 +447,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 {
@@ -457,7 +456,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 {
@@ -466,7 +465,7 @@ public static string AddEntryDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add group ähnelt.
+ /// Looks up a localized string similar to Add group.
///
public static string AddGroup {
get {
@@ -475,7 +474,7 @@ public static string AddGroup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add host ähnelt.
+ /// Looks up a localized string similar to Add host.
///
public static string AddHost {
get {
@@ -484,7 +483,7 @@ public static string AddHost {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add IPv4 address ähnelt.
+ /// Looks up a localized string similar to Add IPv4 address.
///
public static string AddIPv4Address {
get {
@@ -493,7 +492,7 @@ public static string AddIPv4Address {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add IPv4 address... ähnelt.
+ /// Looks up a localized string similar to Add IPv4 address....
///
public static string AddIPv4AddressDots {
get {
@@ -502,7 +501,7 @@ public static string AddIPv4AddressDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Additional command line ähnelt.
+ /// Looks up a localized string similar to Additional command line.
///
public static string AdditionalCommandLine {
get {
@@ -511,7 +510,7 @@ public static string AdditionalCommandLine {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Additional config... ähnelt.
+ /// Looks up a localized string similar to Additional config....
///
public static string AdditionalConfigDots {
get {
@@ -520,7 +519,7 @@ public static string AdditionalConfigDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Additionals ähnelt.
+ /// Looks up a localized string similar to Additionals.
///
public static string Additionals {
get {
@@ -529,7 +528,7 @@ public static string Additionals {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add OID profile ähnelt.
+ /// Looks up a localized string similar to Add OID profile.
///
public static string AddOIDProfile {
get {
@@ -538,7 +537,7 @@ public static string AddOIDProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add port profile ähnelt.
+ /// Looks up a localized string similar to Add port profile.
///
public static string AddPortProfile {
get {
@@ -547,7 +546,7 @@ public static string AddPortProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add profile ähnelt.
+ /// Looks up a localized string similar to Add profile.
///
public static string AddProfile {
get {
@@ -556,7 +555,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 {
@@ -565,7 +564,7 @@ public static string AddProfileDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add profile file ähnelt.
+ /// Looks up a localized string similar to Add profile file.
///
public static string AddProfileFile {
get {
@@ -574,7 +573,7 @@ public static string AddProfileFile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add server ähnelt.
+ /// Looks up a localized string similar to Add server.
///
public static string AddServer {
get {
@@ -583,7 +582,7 @@ public static string AddServer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add SNTP server ähnelt.
+ /// Looks up a localized string similar to Add SNTP server.
///
public static string AddSNTPServer {
get {
@@ -592,7 +591,7 @@ public static string AddSNTPServer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add tab ähnelt.
+ /// Looks up a localized string similar to Add tab.
///
public static string AddTab {
get {
@@ -601,7 +600,7 @@ public static string AddTab {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Add tab... ähnelt.
+ /// Looks up a localized string similar to Add tab....
///
public static string AddTabDots {
get {
@@ -610,7 +609,7 @@ public static string AddTabDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Adjust screen ähnelt.
+ /// Looks up a localized string similar to Adjust screen.
///
public static string AdjustScreen {
get {
@@ -619,7 +618,7 @@ public static string AdjustScreen {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Adjust screen automatically ähnelt.
+ /// Looks up a localized string similar to Adjust screen automatically.
///
public static string AdjustScreenAutomatically {
get {
@@ -628,7 +627,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 {
@@ -637,7 +636,7 @@ public static string Administrator {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die All ähnelt.
+ /// Looks up a localized string similar to All.
///
public static string All {
get {
@@ -646,7 +645,7 @@ public static string All {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die All settings can be changed later in the settings! ähnelt.
+ /// Looks up a localized string similar to All settings can be changed later in the settings!.
///
public static string AllSettingsCanBeChangedLaterInTheSettings {
get {
@@ -655,7 +654,7 @@ public static string AllSettingsCanBeChangedLaterInTheSettings {
}
///
- /// 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 {
@@ -664,7 +663,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 {
@@ -673,7 +672,7 @@ public static string Amber {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die An AWS region named "{0}" does not exist! ähnelt.
+ /// Looks up a localized string similar to An AWS region named "{0}" does not exist!.
///
public static string AnAWSRegionNamedXDoesNotExist {
get {
@@ -682,7 +681,7 @@ public static string AnAWSRegionNamedXDoesNotExist {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die An error occurred while exporting the data. See error message for details: ähnelt.
+ /// Looks up a localized string similar to An error occurred while exporting the data. See error message for details:.
///
public static string AnErrorOccurredWhileExportingTheData {
get {
@@ -691,7 +690,7 @@ public static string AnErrorOccurredWhileExportingTheData {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Answers ähnelt.
+ /// Looks up a localized string similar to Answers.
///
public static string Answers {
get {
@@ -700,7 +699,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 {
@@ -709,7 +708,7 @@ public static string Appearance {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ARP Table ähnelt.
+ /// Looks up a localized string similar to ARP Table.
///
public static string ApplicationName_ARPTable {
get {
@@ -718,7 +717,7 @@ public static string ApplicationName_ARPTable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die AWS Session Manager ähnelt.
+ /// Looks up a localized string similar to AWS Session Manager.
///
public static string ApplicationName_AWSSessionManager {
get {
@@ -727,7 +726,7 @@ public static string ApplicationName_AWSSessionManager {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Bit Calculator ähnelt.
+ /// Looks up a localized string similar to Bit Calculator.
///
public static string ApplicationName_BitCalculator {
get {
@@ -736,7 +735,7 @@ public static string ApplicationName_BitCalculator {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt.
+ /// Looks up a localized string similar to Connections.
///
public static string ApplicationName_Connections {
get {
@@ -745,7 +744,7 @@ public static string ApplicationName_Connections {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Dashboard ähnelt.
+ /// Looks up a localized string similar to Dashboard.
///
public static string ApplicationName_Dashboard {
get {
@@ -754,7 +753,7 @@ public static string ApplicationName_Dashboard {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Discovery Protocol ähnelt.
+ /// Looks up a localized string similar to Discovery Protocol.
///
public static string ApplicationName_DiscoveryProtocol {
get {
@@ -763,7 +762,7 @@ public static string ApplicationName_DiscoveryProtocol {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die DNS Lookup ähnelt.
+ /// Looks up a localized string similar to DNS Lookup.
///
public static string ApplicationName_DNSLookup {
get {
@@ -772,7 +771,16 @@ public static string ApplicationName_DNSLookup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die HTTP Headers ähnelt.
+ /// Looks up a localized string similar to Hosts File Editor.
+ ///
+ public static string ApplicationName_HostsFileEditor {
+ get {
+ return ResourceManager.GetString("ApplicationName_HostsFileEditor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HTTP Headers.
///
public static string ApplicationName_HTTPHeaders {
get {
@@ -781,7 +789,7 @@ public static string ApplicationName_HTTPHeaders {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die IP Geolocation ähnelt.
+ /// Looks up a localized string similar to IP Geolocation.
///
public static string ApplicationName_IPGeolocation {
get {
@@ -790,7 +798,7 @@ public static string ApplicationName_IPGeolocation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die IP Scanner ähnelt.
+ /// Looks up a localized string similar to IP Scanner.
///
public static string ApplicationName_IPScanner {
get {
@@ -799,7 +807,7 @@ public static string ApplicationName_IPScanner {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Listeners ähnelt.
+ /// Looks up a localized string similar to Listeners.
///
public static string ApplicationName_Listeners {
get {
@@ -808,7 +816,7 @@ public static string ApplicationName_Listeners {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Lookup ähnelt.
+ /// Looks up a localized string similar to Lookup.
///
public static string ApplicationName_Lookup {
get {
@@ -817,7 +825,7 @@ public static string ApplicationName_Lookup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Network Interface ähnelt.
+ /// Looks up a localized string similar to Network Interface.
///
public static string ApplicationName_NetworkInterface {
get {
@@ -826,7 +834,7 @@ public static string ApplicationName_NetworkInterface {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Ping ähnelt.
+ /// Looks up a localized string similar to Ping.
///
public static string ApplicationName_Ping {
get {
@@ -835,7 +843,7 @@ public static string ApplicationName_Ping {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Ping Monitor ähnelt.
+ /// Looks up a localized string similar to Ping Monitor.
///
public static string ApplicationName_PingMonitor {
get {
@@ -844,7 +852,7 @@ public static string ApplicationName_PingMonitor {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Port Scanner ähnelt.
+ /// Looks up a localized string similar to Port Scanner.
///
public static string ApplicationName_PortScanner {
get {
@@ -853,7 +861,7 @@ public static string ApplicationName_PortScanner {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die PowerShell ähnelt.
+ /// Looks up a localized string similar to PowerShell.
///
public static string ApplicationName_PowerShell {
get {
@@ -862,7 +870,7 @@ public static string ApplicationName_PowerShell {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die PuTTY ähnelt.
+ /// Looks up a localized string similar to PuTTY.
///
public static string ApplicationName_PuTTY {
get {
@@ -871,7 +879,7 @@ public static string ApplicationName_PuTTY {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop ähnelt.
+ /// Looks up a localized string similar to Remote Desktop.
///
public static string ApplicationName_RemoteDesktop {
get {
@@ -880,7 +888,7 @@ public static string ApplicationName_RemoteDesktop {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SNMP ähnelt.
+ /// Looks up a localized string similar to SNMP.
///
public static string ApplicationName_SNMP {
get {
@@ -889,7 +897,7 @@ public static string ApplicationName_SNMP {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SNTP Lookup ähnelt.
+ /// Looks up a localized string similar to SNTP Lookup.
///
public static string ApplicationName_SNTPLookup {
get {
@@ -898,7 +906,7 @@ public static string ApplicationName_SNTPLookup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Subnet Calculator ähnelt.
+ /// Looks up a localized string similar to Subnet Calculator.
///
public static string ApplicationName_SubnetCalculator {
get {
@@ -907,7 +915,7 @@ public static string ApplicationName_SubnetCalculator {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die TigerVNC ähnelt.
+ /// Looks up a localized string similar to TigerVNC.
///
public static string ApplicationName_TigerVNC {
get {
@@ -916,7 +924,7 @@ public static string ApplicationName_TigerVNC {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Traceroute ähnelt.
+ /// Looks up a localized string similar to Traceroute.
///
public static string ApplicationName_Traceroute {
get {
@@ -925,7 +933,7 @@ public static string ApplicationName_Traceroute {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Wake on LAN ähnelt.
+ /// Looks up a localized string similar to Wake on LAN.
///
public static string ApplicationName_WakeOnLAN {
get {
@@ -934,7 +942,7 @@ public static string ApplicationName_WakeOnLAN {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Web Console ähnelt.
+ /// Looks up a localized string similar to Web Console.
///
public static string ApplicationName_WebConsole {
get {
@@ -943,7 +951,7 @@ public static string ApplicationName_WebConsole {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Whois ähnelt.
+ /// Looks up a localized string similar to Whois.
///
public static string ApplicationName_Whois {
get {
@@ -952,7 +960,7 @@ public static string ApplicationName_Whois {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die WiFi ähnelt.
+ /// Looks up a localized string similar to WiFi.
///
public static string ApplicationName_WiFi {
get {
@@ -961,7 +969,7 @@ public static string ApplicationName_WiFi {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Applications ähnelt.
+ /// Looks up a localized string similar to Applications.
///
public static string Applications {
get {
@@ -970,7 +978,7 @@ public static string Applications {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The application will be restarted afterwards! ähnelt.
+ /// Looks up a localized string similar to The application will be restarted afterwards!.
///
public static string ApplicationWillBeRestartedAfterwards {
get {
@@ -979,7 +987,7 @@ public static string ApplicationWillBeRestartedAfterwards {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Apply ähnelt.
+ /// Looks up a localized string similar to Apply.
///
public static string Apply {
get {
@@ -988,7 +996,7 @@ public static string Apply {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Apply theme to PowerShell console ähnelt.
+ /// Looks up a localized string similar to Apply theme to PowerShell console.
///
public static string ApplyThemeToPowerShellConsole {
get {
@@ -997,7 +1005,7 @@ public static string ApplyThemeToPowerShellConsole {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Apply Windows key combinations ähnelt.
+ /// Looks up a localized string similar to Apply Windows key combinations.
///
public static string ApplyWindowsKeyCombinations {
get {
@@ -1006,7 +1014,7 @@ public static string ApplyWindowsKeyCombinations {
}
///
- /// 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 {
@@ -1015,7 +1023,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 {
@@ -1024,7 +1032,7 @@ public static string AreYouSure {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Arguments ähnelt.
+ /// Looks up a localized string similar to Arguments.
///
public static string Arguments {
get {
@@ -1033,7 +1041,7 @@ public static string Arguments {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ARP ähnelt.
+ /// Looks up a localized string similar to ARP.
///
public static string ARP {
get {
@@ -1042,7 +1050,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 {
@@ -1051,7 +1059,7 @@ public static string ARPTable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ASN ähnelt.
+ /// Looks up a localized string similar to ASN.
///
public static string ASN {
get {
@@ -1060,7 +1068,7 @@ public static string ASN {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die AS Name ähnelt.
+ /// Looks up a localized string similar to AS Name.
///
public static string ASName {
get {
@@ -1069,7 +1077,7 @@ public static string ASName {
}
///
- /// 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 {
@@ -1078,7 +1086,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 {
@@ -1087,7 +1095,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 {
@@ -1096,7 +1104,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 {
@@ -1105,7 +1113,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 {
@@ -1114,7 +1122,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 {
@@ -1123,7 +1131,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 {
@@ -1132,7 +1140,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 {
@@ -1141,7 +1149,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 {
@@ -1150,7 +1158,7 @@ public static string AverageTime {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die AWS CLI v2 is installed! ähnelt.
+ /// Looks up a localized string similar to AWS CLI v2 is installed!.
///
public static string AWSCLIv2IsInstalled {
get {
@@ -1159,7 +1167,7 @@ public static string AWSCLIv2IsInstalled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die AWS CLI v2 is not installed! ähnelt.
+ /// Looks up a localized string similar to AWS CLI v2 is not installed!.
///
public static string AWSCLIv2IsNotInstalled {
get {
@@ -1168,7 +1176,7 @@ public static string AWSCLIv2IsNotInstalled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die AWS Session Manager ähnelt.
+ /// Looks up a localized string similar to AWS Session Manager.
///
public static string AWSSessionManager {
get {
@@ -1177,7 +1185,7 @@ public static string AWSSessionManager {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die AWS Session Manager Plugin is installed! ähnelt.
+ /// Looks up a localized string similar to AWS Session Manager Plugin is installed!.
///
public static string AWSSessionManagerPluginIsInstalled {
get {
@@ -1186,7 +1194,7 @@ public static string AWSSessionManagerPluginIsInstalled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die AWS Session Manager Plugin is not installed! ähnelt.
+ /// Looks up a localized string similar to AWS Session Manager Plugin is not installed!.
///
public static string AWSSessionManagerPluginIsNotInstalled {
get {
@@ -1195,7 +1203,7 @@ public static string AWSSessionManagerPluginIsNotInstalled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die back ähnelt.
+ /// Looks up a localized string similar to back.
///
public static string Back {
get {
@@ -1204,7 +1212,7 @@ public static string Back {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Background job ähnelt.
+ /// Looks up a localized string similar to Background job.
///
public static string BackgroundJob {
get {
@@ -1213,7 +1221,7 @@ public static string BackgroundJob {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Backup ähnelt.
+ /// Looks up a localized string similar to Backup.
///
public static string Backup {
get {
@@ -1222,7 +1230,7 @@ public static string Backup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Bandwidth ähnelt.
+ /// Looks up a localized string similar to Bandwidth.
///
public static string Bandwidth {
get {
@@ -1231,7 +1239,7 @@ public static string Bandwidth {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Baud ähnelt.
+ /// Looks up a localized string similar to Baud.
///
public static string Baud {
get {
@@ -1240,7 +1248,7 @@ public static string Baud {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Baud rate ähnelt.
+ /// Looks up a localized string similar to Baud rate.
///
public static string BaudRate {
get {
@@ -1249,7 +1257,7 @@ public static string BaudRate {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Beacon interval ähnelt.
+ /// Looks up a localized string similar to Beacon interval.
///
public static string BeaconInterval {
get {
@@ -1258,7 +1266,7 @@ public static string BeaconInterval {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Bit Calculator ähnelt.
+ /// Looks up a localized string similar to Bit Calculator.
///
public static string BitCalculator {
get {
@@ -1267,7 +1275,7 @@ public static string BitCalculator {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Bits ähnelt.
+ /// Looks up a localized string similar to Bits.
///
public static string Bits {
get {
@@ -1276,7 +1284,7 @@ public static string Bits {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Black ähnelt.
+ /// Looks up a localized string similar to Black.
///
public static string Black {
get {
@@ -1285,7 +1293,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 {
@@ -1294,7 +1302,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 {
@@ -1303,7 +1311,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 {
@@ -1312,7 +1320,7 @@ public static string Brown {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Browser ähnelt.
+ /// Looks up a localized string similar to Browser.
///
public static string Browser {
get {
@@ -1321,7 +1329,7 @@ public static string Browser {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die BSSID ähnelt.
+ /// Looks up a localized string similar to BSSID.
///
public static string BSSID {
get {
@@ -1330,7 +1338,7 @@ public static string BSSID {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Buffer ähnelt.
+ /// Looks up a localized string similar to Buffer.
///
public static string Buffer {
get {
@@ -1339,7 +1347,7 @@ public static string Buffer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Bypass for local addresses ähnelt.
+ /// Looks up a localized string similar to Bypass for local addresses.
///
public static string BypassForLocalAddresses {
get {
@@ -1348,7 +1356,7 @@ public static string BypassForLocalAddresses {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Bytes ähnelt.
+ /// Looks up a localized string similar to Bytes.
///
public static string Bytes {
get {
@@ -1357,7 +1365,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 {
@@ -1366,7 +1374,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 {
@@ -1375,7 +1383,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 {
@@ -1384,7 +1392,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 {
@@ -1393,7 +1401,7 @@ public static string CanceledByUserMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Host cannot be set while other hosts are being added. Please wait until the process is complete and try again. ähnelt.
+ /// Looks up a localized string similar to Host cannot be set while other hosts are being added. Please wait until the process is complete and try again..
///
public static string CannotSetHostWhileRunningMessage {
get {
@@ -1402,7 +1410,7 @@ public static string CannotSetHostWhileRunningMessage {
}
///
- /// 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 {
@@ -1411,7 +1419,7 @@ public static string CapsLockIsEnabled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Capture ähnelt.
+ /// Looks up a localized string similar to Capture.
///
public static string Capture {
get {
@@ -1420,7 +1428,7 @@ public static string Capture {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Capture network packets to view LLDP or CDP information! ähnelt.
+ /// Looks up a localized string similar to Capture network packets to view LLDP or CDP information!.
///
public static string CaptureNetworkPacketsToViewLLDPorCDPInformation {
get {
@@ -1429,7 +1437,7 @@ public static string CaptureNetworkPacketsToViewLLDPorCDPInformation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Capturing network packages... ähnelt.
+ /// Looks up a localized string similar to Capturing network packages....
///
public static string CapturingNetworkPackagesDots {
get {
@@ -1438,7 +1446,7 @@ public static string CapturingNetworkPackagesDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Change ähnelt.
+ /// Looks up a localized string similar to Change.
///
public static string Change {
get {
@@ -1447,7 +1455,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 ChangeMasterPassword {
get {
@@ -1456,7 +1464,7 @@ public static string ChangeMasterPassword {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Change Master Password... ähnelt.
+ /// Looks up a localized string similar to Change Master Password....
///
public static string ChangeMasterPasswordDots {
get {
@@ -1465,7 +1473,7 @@ public static string ChangeMasterPasswordDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Channel ähnelt.
+ /// Looks up a localized string similar to Channel.
///
public static string Channel {
get {
@@ -1474,7 +1482,7 @@ public static string Channel {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Channels ähnelt.
+ /// Looks up a localized string similar to Channels.
///
public static string Channels {
get {
@@ -1483,7 +1491,7 @@ public static string Channels {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Chassis Id ähnelt.
+ /// Looks up a localized string similar to Chassis Id.
///
public static string ChassisId {
get {
@@ -1492,7 +1500,7 @@ public static string ChassisId {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Check ähnelt.
+ /// Looks up a localized string similar to Check.
///
public static string Check {
get {
@@ -1501,7 +1509,7 @@ public static string Check {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Check DNS resolver ähnelt.
+ /// Looks up a localized string similar to Check DNS resolver.
///
public static string CheckDNSResolver {
get {
@@ -1510,7 +1518,7 @@ public static string CheckDNSResolver {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Check for pre-releases ähnelt.
+ /// Looks up a localized string similar to Check for pre-releases.
///
public static string CheckForPreReleases {
get {
@@ -1519,7 +1527,7 @@ public static string CheckForPreReleases {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Check for updates ähnelt.
+ /// Looks up a localized string similar to Check for updates.
///
public static string CheckForUpdates {
get {
@@ -1528,7 +1536,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 {
@@ -1537,7 +1545,7 @@ public static string CheckForUpdatesAtStartup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Checking DNS resolver... ähnelt.
+ /// Looks up a localized string similar to Checking DNS resolver....
///
public static string CheckingDNSResolverDots {
get {
@@ -1546,7 +1554,7 @@ public static string CheckingDNSResolverDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Checking IP geolocation... ähnelt.
+ /// Looks up a localized string similar to Checking IP geolocation....
///
public static string CheckingIPGeolocationDots {
get {
@@ -1555,7 +1563,7 @@ public static string CheckingIPGeolocationDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Checking WPS... ähnelt.
+ /// Looks up a localized string similar to Checking WPS....
///
public static string CheckingWPSDots {
get {
@@ -1564,7 +1572,7 @@ public static string CheckingWPSDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Check IP geolocation ähnelt.
+ /// Looks up a localized string similar to Check IP geolocation.
///
public static string CheckIPGeolocation {
get {
@@ -1573,7 +1581,7 @@ public static string CheckIPGeolocation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Check is disabled! ähnelt.
+ /// Looks up a localized string similar to Check is disabled!.
///
public static string CheckIsDisabled {
get {
@@ -1582,7 +1590,7 @@ public static string CheckIsDisabled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Check your network adapter configuration (dns) and if your dns server is configured correctly. ähnelt.
+ /// Looks up a localized string similar to Check your network adapter configuration (dns) and if your dns server is configured correctly..
///
public static string CheckNetworkAdapterConfigurationAndDNSServerConfigurationMessage {
get {
@@ -1591,7 +1599,7 @@ public static string CheckNetworkAdapterConfigurationAndDNSServerConfigurationMe
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Check your network adapter configuration (dhcp, static ip) and if you are connected to a network. ähnelt.
+ /// Looks up a localized string similar to Check your network adapter configuration (dhcp, static ip) and if you are connected to a network..
///
public static string CheckNetworkAdapterConfigurationAndNetworkConnectionMessage {
get {
@@ -1600,7 +1608,7 @@ public static string CheckNetworkAdapterConfigurationAndNetworkConnectionMessage
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Check your network connection and try again in a few seconds. ähnelt.
+ /// Looks up a localized string similar to Check your network connection and try again in a few seconds..
///
public static string CheckNetworkConnectionTryAgainMessage {
get {
@@ -1609,7 +1617,7 @@ public static string CheckNetworkConnectionTryAgainMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Check public IP address ähnelt.
+ /// Looks up a localized string similar to Check public IP address.
///
public static string CheckPublicIPAddress {
get {
@@ -1618,7 +1626,7 @@ public static string CheckPublicIPAddress {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die CIDR ähnelt.
+ /// Looks up a localized string similar to CIDR.
///
public static string CIDR {
get {
@@ -1627,7 +1635,7 @@ public static string CIDR {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die City ähnelt.
+ /// Looks up a localized string similar to City.
///
public static string City {
get {
@@ -1636,7 +1644,7 @@ public static string City {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Class ähnelt.
+ /// Looks up a localized string similar to Class.
///
public static string Class {
get {
@@ -1645,7 +1653,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 {
@@ -1654,7 +1662,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 {
@@ -1663,7 +1671,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 {
@@ -1672,7 +1680,7 @@ public static string Close {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Close all ähnelt.
+ /// Looks up a localized string similar to Close all.
///
public static string CloseAll {
get {
@@ -1681,7 +1689,7 @@ public static string CloseAll {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt.
+ /// Looks up a localized string similar to Closed.
///
public static string Closed {
get {
@@ -1690,7 +1698,7 @@ public static string Closed {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Close group ähnelt.
+ /// Looks up a localized string similar to Close group.
///
public static string CloseGroup {
get {
@@ -1699,7 +1707,7 @@ public static string CloseGroup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Closing in {0} seconds... ähnelt.
+ /// Looks up a localized string similar to Closing in {0} seconds....
///
public static string ClosingInXSecondsDots {
get {
@@ -1708,7 +1716,7 @@ public static string ClosingInXSecondsDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not export file! See error message: "{0}" ähnelt.
+ /// Looks up a localized string similar to Could not export file! See error message: "{0}".
///
public static string ClouldNotExportFileSeeErrorMessageXX {
get {
@@ -1717,7 +1725,7 @@ public static string ClouldNotExportFileSeeErrorMessageXX {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not import file! See error message: "{0}" ähnelt.
+ /// Looks up a localized string similar to Could not import file! See error message: "{0}".
///
public static string ClouldNotImportFileSeeErrorMessageXX {
get {
@@ -1726,7 +1734,7 @@ public static string ClouldNotImportFileSeeErrorMessageXX {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Cobalt ähnelt.
+ /// Looks up a localized string similar to Cobalt.
///
public static string Cobalt {
get {
@@ -1735,7 +1743,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 {
@@ -1744,7 +1752,7 @@ public static string ColorDepthBit {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Command ähnelt.
+ /// Looks up a localized string similar to Command.
///
public static string Command {
get {
@@ -1753,7 +1761,7 @@ public static string Command {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Command Line Arguments ähnelt.
+ /// Looks up a localized string similar to Command Line Arguments.
///
public static string CommandLineArguments {
get {
@@ -1762,7 +1770,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 {
@@ -1771,7 +1779,7 @@ public static string Community {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Computer ähnelt.
+ /// Looks up a localized string similar to Computer.
///
public static string Computer {
get {
@@ -1780,7 +1788,7 @@ public static string Computer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Computer name ähnelt.
+ /// Looks up a localized string similar to Computer name.
///
public static string ComputerName {
get {
@@ -1789,7 +1797,7 @@ public static string ComputerName {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Configure ähnelt.
+ /// Looks up a localized string similar to Configure.
///
public static string Configure {
get {
@@ -1798,7 +1806,7 @@ public static string Configure {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Configure the path to PowerShell in the settings... ähnelt.
+ /// Looks up a localized string similar to Configure the path to PowerShell in the settings....
///
public static string ConfigureThePathToPowerShellInTheSettingsDots {
get {
@@ -1807,7 +1815,7 @@ public static string ConfigureThePathToPowerShellInTheSettingsDots {
}
///
- /// 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 {
@@ -1816,7 +1824,7 @@ public static string ConfigureThePathToPuTTYInTheSettingsDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Configure the path to TigerVNC in the settings... ähnelt.
+ /// Looks up a localized string similar to Configure the path to TigerVNC in the settings....
///
public static string ConfigureThePathToTigerVNCInTheSettingsDots {
get {
@@ -1825,7 +1833,7 @@ public static string ConfigureThePathToTigerVNCInTheSettingsDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Confirm ähnelt.
+ /// Looks up a localized string similar to Confirm.
///
public static string Confirm {
get {
@@ -1834,7 +1842,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 {
@@ -1843,7 +1851,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 {
@@ -1852,7 +1860,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 {
@@ -1861,7 +1869,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 {
@@ -1870,7 +1878,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 {
@@ -1879,7 +1887,7 @@ public static string ConnectAsDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Connect automatically ähnelt.
+ /// Looks up a localized string similar to Connect automatically.
///
public static string ConnectAutomatically {
get {
@@ -1888,7 +1896,7 @@ public static string ConnectAutomatically {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Connect... ähnelt.
+ /// Looks up a localized string similar to Connect....
///
public static string ConnectDots {
get {
@@ -1897,7 +1905,7 @@ public static string ConnectDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Connected ähnelt.
+ /// Looks up a localized string similar to Connected.
///
public static string Connected {
get {
@@ -1906,7 +1914,7 @@ public static string Connected {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Connect external ähnelt.
+ /// Looks up a localized string similar to Connect external.
///
public static string ConnectExternal {
get {
@@ -1915,7 +1923,7 @@ public static string ConnectExternal {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Connecting... ähnelt.
+ /// Looks up a localized string similar to Connecting....
///
public static string ConnectingDots {
get {
@@ -1924,7 +1932,7 @@ public static string ConnectingDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Connecting to {0}... ähnelt.
+ /// Looks up a localized string similar to Connecting to {0}....
///
public static string ConnectingToXXX {
get {
@@ -1933,7 +1941,7 @@ public static string ConnectingToXXX {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Connection ähnelt.
+ /// Looks up a localized string similar to Connection.
///
public static string Connection {
get {
@@ -1942,7 +1950,7 @@ public static string Connection {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt.
+ /// Looks up a localized string similar to Connections.
///
public static string Connections {
get {
@@ -1951,7 +1959,7 @@ public static string Connections {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Error ähnelt.
+ /// Looks up a localized string similar to Error.
///
public static string ConnectionState_Error {
get {
@@ -1960,7 +1968,7 @@ public static string ConnectionState_Error {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die OK ähnelt.
+ /// Looks up a localized string similar to OK.
///
public static string ConnectionState_OK {
get {
@@ -1969,7 +1977,7 @@ public static string ConnectionState_OK {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Warning ähnelt.
+ /// Looks up a localized string similar to Warning.
///
public static string ConnectionState_Warning {
get {
@@ -1978,7 +1986,7 @@ public static string ConnectionState_Warning {
}
///
- /// 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 {
@@ -1987,7 +1995,7 @@ public static string ConnectTheNetworkCardToConfigureIt {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Connect to {0} ähnelt.
+ /// Looks up a localized string similar to Connect to {0}.
///
public static string ConnectToXXX {
get {
@@ -1996,7 +2004,7 @@ public static string ConnectToXXX {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Continent ähnelt.
+ /// Looks up a localized string similar to Continent.
///
public static string Continent {
get {
@@ -2005,7 +2013,7 @@ public static string Continent {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Continue ähnelt.
+ /// Looks up a localized string similar to Continue.
///
public static string Continue {
get {
@@ -2014,7 +2022,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 {
@@ -2023,7 +2031,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 {
@@ -2032,7 +2040,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 {
@@ -2041,7 +2049,7 @@ public static string CopyDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Copy ähnelt.
+ /// Looks up a localized string similar to Copy.
///
public static string CopyNoun {
get {
@@ -2050,7 +2058,7 @@ public static string CopyNoun {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Copy profile ähnelt.
+ /// Looks up a localized string similar to Copy profile.
///
public static string CopyProfile {
get {
@@ -2059,7 +2067,7 @@ public static string CopyProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not connect to "{0}"! ähnelt.
+ /// Looks up a localized string similar to Could not connect to "{0}"!.
///
public static string CouldNotConnectToXXXMessage {
get {
@@ -2068,7 +2076,7 @@ public static string CouldNotConnectToXXXMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not connect to {0} ({1})! ähnelt.
+ /// Looks up a localized string similar to Could not connect to {0} ({1})!.
///
public static string CouldNotConnectToXXXReasonXXX {
get {
@@ -2077,7 +2085,7 @@ public static string CouldNotConnectToXXXReasonXXX {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not detect gateway ip address! ähnelt.
+ /// Looks up a localized string similar to Could not detect gateway ip address!.
///
public static string CouldNotDetectGatewayIPAddressMessage {
get {
@@ -2086,7 +2094,7 @@ public static string CouldNotDetectGatewayIPAddressMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not detect local ip address! ähnelt.
+ /// Looks up a localized string similar to Could not detect local ip address!.
///
public static string CouldNotDetectLocalIPAddressMessage {
get {
@@ -2095,7 +2103,7 @@ public static string CouldNotDetectLocalIPAddressMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not detect subnetmask! ähnelt.
+ /// Looks up a localized string similar to Could not detect subnetmask!.
///
public static string CouldNotDetectSubnetmask {
get {
@@ -2104,7 +2112,7 @@ public static string CouldNotDetectSubnetmask {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not find the application "{0}". Maybe the application was hidden in the settings? ähnelt.
+ /// Looks up a localized string similar to Could not find the application "{0}". Maybe the application was hidden in the settings?.
///
public static string CouldNotFindApplicationXXXMessage {
get {
@@ -2113,7 +2121,7 @@ public static string CouldNotFindApplicationXXXMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not get public ip address via WebRequest (http/https) from "{0}"! Check your network connection (firewall, proxy, etc.). ähnelt.
+ /// Looks up a localized string similar to Could not get public ip address via WebRequest (http/https) from "{0}"! Check your network connection (firewall, proxy, etc.)..
///
public static string CouldNotGetPublicIPAddressFromXXXMessage {
get {
@@ -2122,7 +2130,7 @@ public static string CouldNotGetPublicIPAddressFromXXXMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not parse public ip address from "{0}"! Try another service or use the default... ähnelt.
+ /// Looks up a localized string similar to Could not parse public ip address from "{0}"! Try another service or use the default... .
///
public static string CouldNotParsePublicIPAddressFromXXXMessage {
get {
@@ -2131,7 +2139,7 @@ public static string CouldNotParsePublicIPAddressFromXXXMessage {
}
///
- /// 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 {
@@ -2140,7 +2148,7 @@ public static string CouldNotResolveHostnameFor {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not resolve ip address for: "{0}" ähnelt.
+ /// Looks up a localized string similar to Could not resolve ip address for: "{0}".
///
public static string CouldNotResolveIPAddressFor {
get {
@@ -2149,7 +2157,7 @@ public static string CouldNotResolveIPAddressFor {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not send keystroke! ähnelt.
+ /// Looks up a localized string similar to Could not send keystroke!.
///
public static string CouldNotSendKeystroke {
get {
@@ -2158,7 +2166,7 @@ public static string CouldNotSendKeystroke {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Country ähnelt.
+ /// Looks up a localized string similar to Country.
///
public static string Country {
get {
@@ -2167,7 +2175,7 @@ public static string Country {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Credential ähnelt.
+ /// Looks up a localized string similar to Credential.
///
public static string Credential {
get {
@@ -2176,7 +2184,7 @@ public static string Credential {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Credentials ähnelt.
+ /// Looks up a localized string similar to Credentials.
///
public static string Credentials {
get {
@@ -2185,7 +2193,7 @@ public static string Credentials {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Credential Security Support Provider ähnelt.
+ /// Looks up a localized string similar to Credential Security Support Provider.
///
public static string CredentialSecuritySupportProvider {
get {
@@ -2194,7 +2202,7 @@ public static string CredentialSecuritySupportProvider {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Crimson ähnelt.
+ /// Looks up a localized string similar to Crimson.
///
public static string Crimson {
get {
@@ -2203,7 +2211,7 @@ public static string Crimson {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Ctrl+Alt+Del ähnelt.
+ /// Looks up a localized string similar to Ctrl+Alt+Del.
///
public static string CtrlAltDel {
get {
@@ -2212,7 +2220,7 @@ public static string CtrlAltDel {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Currency ähnelt.
+ /// Looks up a localized string similar to Currency.
///
public static string Currency {
get {
@@ -2221,7 +2229,7 @@ public static string Currency {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Current download speed ähnelt.
+ /// Looks up a localized string similar to Current download speed.
///
public static string CurrentDownloadSpeed {
get {
@@ -2230,7 +2238,7 @@ public static string CurrentDownloadSpeed {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Currently downloaded ähnelt.
+ /// Looks up a localized string similar to Currently downloaded.
///
public static string CurrentlyDownloaded {
get {
@@ -2239,7 +2247,7 @@ public static string CurrentlyDownloaded {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Currently uploaded ähnelt.
+ /// Looks up a localized string similar to Currently uploaded.
///
public static string CurrentlyUploaded {
get {
@@ -2248,7 +2256,7 @@ public static string CurrentlyUploaded {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Current password ähnelt.
+ /// Looks up a localized string similar to Current password.
///
public static string CurrentPassword {
get {
@@ -2257,7 +2265,7 @@ public static string CurrentPassword {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Current upload speed ähnelt.
+ /// Looks up a localized string similar to Current upload speed.
///
public static string CurrentUploadSpeed {
get {
@@ -2266,7 +2274,7 @@ public static string CurrentUploadSpeed {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Custom ähnelt.
+ /// Looks up a localized string similar to Custom.
///
public static string Custom {
get {
@@ -2275,7 +2283,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 {
@@ -2284,7 +2292,7 @@ public static string CustomColon {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Custom commands ähnelt.
+ /// Looks up a localized string similar to Custom commands.
///
public static string CustomCommands {
get {
@@ -2293,7 +2301,7 @@ public static string CustomCommands {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Custom screen size: ähnelt.
+ /// Looks up a localized string similar to Custom screen size:.
///
public static string CustomScreenSize {
get {
@@ -2302,7 +2310,7 @@ public static string CustomScreenSize {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Custom themes ähnelt.
+ /// Looks up a localized string similar to Custom themes.
///
public static string CustomThemes {
get {
@@ -2311,7 +2319,7 @@ public static string CustomThemes {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Cut ähnelt.
+ /// Looks up a localized string similar to Cut.
///
public static string Cut {
get {
@@ -2320,7 +2328,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 {
@@ -2329,7 +2337,7 @@ public static string Cyan {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Dashboard ähnelt.
+ /// Looks up a localized string similar to Dashboard.
///
public static string Dashboard {
get {
@@ -2338,7 +2346,7 @@ public static string Dashboard {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Data ähnelt.
+ /// Looks up a localized string similar to Data.
///
public static string Data {
get {
@@ -2347,7 +2355,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 {
@@ -2356,7 +2364,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 {
@@ -2365,7 +2373,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 {
@@ -2374,7 +2382,7 @@ public static string DecryptAndLoadDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Decryption error ähnelt.
+ /// Looks up a localized string similar to Decryption error.
///
public static string DecryptionError {
get {
@@ -2383,7 +2391,7 @@ public static string DecryptionError {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not decrypt file. You may report this issue on GitHub. ähnelt.
+ /// Looks up a localized string similar to Could not decrypt file. You may report this issue on GitHub..
///
public static string DecryptionErrorMessage {
get {
@@ -2392,7 +2400,7 @@ public static string DecryptionErrorMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Default ähnelt.
+ /// Looks up a localized string similar to Default.
///
public static string Default {
get {
@@ -2401,7 +2409,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 {
@@ -2410,7 +2418,7 @@ public static string DefaultApplication {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Default-Gateway ähnelt.
+ /// Looks up a localized string similar to Default-Gateway.
///
public static string DefaultGateway {
get {
@@ -2419,7 +2427,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 {
@@ -2428,7 +2436,7 @@ public static string DefaultPort {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Default profile ähnelt.
+ /// Looks up a localized string similar to Default profile.
///
public static string DefaultProfile {
get {
@@ -2437,7 +2445,7 @@ public static string DefaultProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Default region ähnelt.
+ /// Looks up a localized string similar to Default region.
///
public static string DefaultRegion {
get {
@@ -2446,7 +2454,7 @@ public static string DefaultRegion {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete ähnelt.
+ /// Looks up a localized string similar to Delete.
///
public static string Delete {
get {
@@ -2455,7 +2463,7 @@ public static string Delete {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete AWS profile ähnelt.
+ /// Looks up a localized string similar to Delete AWS profile.
///
public static string DeleteAWSProfile {
get {
@@ -2464,9 +2472,9 @@ public static string DeleteAWSProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The selected AWS profile is permanently deleted.
+ /// Looks up a localized string similar to The selected AWS profile is permanently deleted.
///
- ///The profile is not removed from the ~\.aws\credentials file. ähnelt.
+ ///The profile is not removed from the ~\.aws\credentials file..
///
public static string DeleteAWSProfileMessage {
get {
@@ -2475,7 +2483,7 @@ public static string DeleteAWSProfileMessage {
}
///
- /// 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 {
@@ -2484,7 +2492,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 {
@@ -2493,7 +2501,7 @@ public static string DeleteCredentials {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete custom command ähnelt.
+ /// Looks up a localized string similar to Delete custom command.
///
public static string DeleteCustomCommand {
get {
@@ -2502,7 +2510,7 @@ public static string DeleteCustomCommand {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The selected custom command will be deleted permanently. ähnelt.
+ /// Looks up a localized string similar to The selected custom command will be deleted permanently..
///
public static string DeleteCustomCommandMessage {
get {
@@ -2511,7 +2519,7 @@ public static string DeleteCustomCommandMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete DNS server ähnelt.
+ /// Looks up a localized string similar to Delete DNS server.
///
public static string DeleteDNSServer {
get {
@@ -2520,7 +2528,7 @@ public static string DeleteDNSServer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The selected DNS server will be deleted permanently. ähnelt.
+ /// Looks up a localized string similar to The selected DNS server will be deleted permanently..
///
public static string DeleteDNSServerMessage {
get {
@@ -2529,7 +2537,7 @@ public static string DeleteDNSServerMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete... ähnelt.
+ /// Looks up a localized string similar to Delete....
///
public static string DeleteDots {
get {
@@ -2538,7 +2546,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 {
@@ -2547,7 +2555,7 @@ public static string DeleteEntry {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete group ähnelt.
+ /// Looks up a localized string similar to Delete group.
///
public static string DeleteGroup {
get {
@@ -2556,7 +2564,7 @@ public static string DeleteGroup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Selected group and all profiles inside this group will be deleted permanently. ähnelt.
+ /// Looks up a localized string similar to Selected group and all profiles inside this group will be deleted permanently..
///
public static string DeleteGroupMessage {
get {
@@ -2565,7 +2573,7 @@ public static string DeleteGroupMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete OID profile ähnelt.
+ /// Looks up a localized string similar to Delete OID profile.
///
public static string DeleteOIDProfile {
get {
@@ -2574,7 +2582,7 @@ public static string DeleteOIDProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The selected OID profile will be deleted permanently. ähnelt.
+ /// Looks up a localized string similar to The selected OID profile will be deleted permanently..
///
public static string DeleteOIDProfileMessage {
get {
@@ -2583,7 +2591,7 @@ public static string DeleteOIDProfileMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete port profile ähnelt.
+ /// Looks up a localized string similar to Delete port profile.
///
public static string DeletePortProfile {
get {
@@ -2592,7 +2600,7 @@ public static string DeletePortProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The selected port profile will be deleted permanently. ähnelt.
+ /// Looks up a localized string similar to The selected port profile will be deleted permanently..
///
public static string DeletePortProfileMessage {
get {
@@ -2601,7 +2609,7 @@ public static string DeletePortProfileMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete profile ähnelt.
+ /// Looks up a localized string similar to Delete profile.
///
public static string DeleteProfile {
get {
@@ -2610,7 +2618,7 @@ public static string DeleteProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete profile file ähnelt.
+ /// Looks up a localized string similar to Delete profile file.
///
public static string DeleteProfileFile {
get {
@@ -2619,7 +2627,7 @@ public static string DeleteProfileFile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Selected profile file will be deleted permanently. ähnelt.
+ /// Looks up a localized string similar to Selected profile file will be deleted permanently..
///
public static string DeleteProfileFileMessage {
get {
@@ -2628,7 +2636,7 @@ public static string DeleteProfileFileMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Selected profile will be deleted permanently. ähnelt.
+ /// Looks up a localized string similar to Selected profile will be deleted permanently..
///
public static string DeleteProfileMessage {
get {
@@ -2637,7 +2645,7 @@ public static string DeleteProfileMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete profiles ähnelt.
+ /// Looks up a localized string similar to Delete profiles.
///
public static string DeleteProfiles {
get {
@@ -2646,7 +2654,7 @@ public static string DeleteProfiles {
}
///
- /// 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 DeleteProfilesMessage {
get {
@@ -2655,7 +2663,7 @@ public static string DeleteProfilesMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete SNTP server ähnelt.
+ /// Looks up a localized string similar to Delete SNTP server.
///
public static string DeleteSNTPServer {
get {
@@ -2664,7 +2672,7 @@ public static string DeleteSNTPServer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The selected SNTP server will be deleted permanently. ähnelt.
+ /// Looks up a localized string similar to The selected SNTP server will be deleted permanently..
///
public static string DeleteSNTPServerMessage {
get {
@@ -2673,7 +2681,7 @@ public static string DeleteSNTPServerMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Delete table ähnelt.
+ /// Looks up a localized string similar to Delete table.
///
public static string DeleteTable {
get {
@@ -2682,7 +2690,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 {
@@ -2691,7 +2699,7 @@ public static string Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Design ähnelt.
+ /// Looks up a localized string similar to Design.
///
public static string Design {
get {
@@ -2700,7 +2708,7 @@ public static string Design {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Desktop background ähnelt.
+ /// Looks up a localized string similar to Desktop background.
///
public static string DesktopBackground {
get {
@@ -2709,7 +2717,7 @@ public static string DesktopBackground {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Desktop composition ähnelt.
+ /// Looks up a localized string similar to Desktop composition.
///
public static string DesktopComposition {
get {
@@ -2718,7 +2726,7 @@ public static string DesktopComposition {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Destination ähnelt.
+ /// Looks up a localized string similar to Destination.
///
public static string Destination {
get {
@@ -2727,7 +2735,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 {
@@ -2736,7 +2744,7 @@ public static string Details {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Detecting network... ähnelt.
+ /// Looks up a localized string similar to Detecting network....
///
public static string DetectingNetworkDots {
get {
@@ -2745,7 +2753,7 @@ public static string DetectingNetworkDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Detect local ip address and subnetmask ähnelt.
+ /// Looks up a localized string similar to Detect local ip address and subnetmask.
///
public static string DetectLocalIPAddressAndSubnetmask {
get {
@@ -2754,7 +2762,7 @@ public static string DetectLocalIPAddressAndSubnetmask {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Developed and maintained by {0} with the help of the ähnelt.
+ /// Looks up a localized string similar to Developed and maintained by {0} with the help of the.
///
public static string DevelopedAndMaintainedByX {
get {
@@ -2763,7 +2771,7 @@ public static string DevelopedAndMaintainedByX {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Device ähnelt.
+ /// Looks up a localized string similar to Device.
///
public static string Device {
get {
@@ -2772,7 +2780,7 @@ public static string Device {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Device description ähnelt.
+ /// Looks up a localized string similar to Device description.
///
public static string DeviceDescription {
get {
@@ -2781,7 +2789,7 @@ public static string DeviceDescription {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die DHCP enabled ähnelt.
+ /// Looks up a localized string similar to DHCP enabled.
///
public static string DHCPEnabled {
get {
@@ -2790,7 +2798,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 {
@@ -2799,7 +2807,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 {
@@ -2808,7 +2816,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 {
@@ -2817,7 +2825,7 @@ public static string DHCPServer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Disable encryption... ähnelt.
+ /// Looks up a localized string similar to Disable encryption....
///
public static string DisableEncryptionDots {
get {
@@ -2826,7 +2834,7 @@ public static string DisableEncryptionDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Disclaimer ähnelt.
+ /// Looks up a localized string similar to Disclaimer.
///
public static string Disclaimer {
get {
@@ -2835,7 +2843,7 @@ public static string Disclaimer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Disconnect ähnelt.
+ /// Looks up a localized string similar to Disconnect.
///
public static string Disconnect {
get {
@@ -2844,7 +2852,7 @@ public static string Disconnect {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Disconnected ähnelt.
+ /// Looks up a localized string similar to Disconnected.
///
public static string Disconnected {
get {
@@ -2853,7 +2861,7 @@ public static string Disconnected {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Discovery Protocol ähnelt.
+ /// Looks up a localized string similar to Discovery Protocol.
///
public static string DiscoveryProtocol {
get {
@@ -2862,7 +2870,7 @@ public static string DiscoveryProtocol {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die CDP ähnelt.
+ /// Looks up a localized string similar to CDP.
///
public static string DiscoveryProtocol_Cdp {
get {
@@ -2871,7 +2879,7 @@ public static string DiscoveryProtocol_Cdp {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die LLDP ähnelt.
+ /// Looks up a localized string similar to LLDP.
///
public static string DiscoveryProtocol_Lldp {
get {
@@ -2880,7 +2888,7 @@ public static string DiscoveryProtocol_Lldp {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die LLDP / CDP ähnelt.
+ /// Looks up a localized string similar to LLDP / CDP.
///
public static string DiscoveryProtocol_LldpCdp {
get {
@@ -2889,7 +2897,7 @@ public static string DiscoveryProtocol_LldpCdp {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Display ähnelt.
+ /// Looks up a localized string similar to Display.
///
public static string Display {
get {
@@ -2898,7 +2906,7 @@ public static string Display {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die District ähnelt.
+ /// Looks up a localized string similar to District.
///
public static string District {
get {
@@ -2907,7 +2915,7 @@ public static string District {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die DNS ähnelt.
+ /// Looks up a localized string similar to DNS.
///
public static string DNS {
get {
@@ -2916,7 +2924,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 {
@@ -2925,7 +2933,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 {
@@ -2934,7 +2942,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 {
@@ -2943,7 +2951,7 @@ public static string DNSLookupDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die DNS resolver ähnelt.
+ /// Looks up a localized string similar to DNS resolver.
///
public static string DNSResolver {
get {
@@ -2952,7 +2960,7 @@ public static string DNSResolver {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die DNS server ähnelt.
+ /// Looks up a localized string similar to DNS server.
///
public static string DNSServer {
get {
@@ -2961,7 +2969,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 {
@@ -2970,7 +2978,7 @@ public static string DNSServers {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die A DNS server with this name already exists! ähnelt.
+ /// Looks up a localized string similar to A DNS server with this name already exists!.
///
public static string DNSServerWithThisNameAlreadyExists {
get {
@@ -2979,7 +2987,7 @@ public static string DNSServerWithThisNameAlreadyExists {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die DNS suffix ähnelt.
+ /// Looks up a localized string similar to DNS suffix.
///
public static string DNSSuffix {
get {
@@ -2988,7 +2996,7 @@ public static string DNSSuffix {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Domain ähnelt.
+ /// Looks up a localized string similar to Domain.
///
public static string Domain {
get {
@@ -2997,7 +3005,7 @@ public static string Domain {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Domain name ähnelt.
+ /// Looks up a localized string similar to Domain name.
///
public static string DomainName {
get {
@@ -3006,7 +3014,7 @@ public static string DomainName {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Donate ähnelt.
+ /// Looks up a localized string similar to Donate.
///
public static string Donate {
get {
@@ -3015,7 +3023,7 @@ public static string Donate {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Don't fragment ähnelt.
+ /// Looks up a localized string similar to Don't fragment.
///
public static string DontFragment {
get {
@@ -3024,7 +3032,7 @@ public static string DontFragment {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Download ähnelt.
+ /// Looks up a localized string similar to Download.
///
public static string Download {
get {
@@ -3033,7 +3041,7 @@ public static string Download {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Download Microsoft Edge WebView2 Runtime ähnelt.
+ /// Looks up a localized string similar to Download Microsoft Edge WebView2 Runtime.
///
public static string DownloadMicrosoftEdgeWebView2Runtime {
get {
@@ -3042,8 +3050,8 @@ public static string DownloadMicrosoftEdgeWebView2Runtime {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Drag and drop the applications to reorder them.
- ///Right-click for more options. ähnelt.
+ /// Looks up a localized string similar to Drag and drop the applications to reorder them.
+ ///Right-click for more options..
///
public static string DragDropApplicationsToReorderRightClickForMoreOptions {
get {
@@ -3052,7 +3060,7 @@ public static string DragDropApplicationsToReorderRightClickForMoreOptions {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Duration ähnelt.
+ /// Looks up a localized string similar to Duration.
///
public static string Duration {
get {
@@ -3061,7 +3069,7 @@ public static string Duration {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Duration (s) ähnelt.
+ /// Looks up a localized string similar to Duration (s).
///
public static string DurationS {
get {
@@ -3070,7 +3078,7 @@ public static string DurationS {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Dynamic IPv4 address ähnelt.
+ /// Looks up a localized string similar to Dynamic IPv4 address.
///
public static string DynamicIPv4Address {
get {
@@ -3079,7 +3087,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 {
@@ -3088,7 +3096,7 @@ public static string DynamicIPv4DNSServer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Edit AWS profile ähnelt.
+ /// Looks up a localized string similar to Edit AWS profile.
///
public static string EditAWSProfile {
get {
@@ -3097,7 +3105,7 @@ public static string EditAWSProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Edit credentials ähnelt.
+ /// Looks up a localized string similar to Edit credentials.
///
public static string EditCredentials {
get {
@@ -3106,7 +3114,7 @@ public static string EditCredentials {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Edit custom command ähnelt.
+ /// Looks up a localized string similar to Edit custom command.
///
public static string EditCustomCommand {
get {
@@ -3115,7 +3123,7 @@ public static string EditCustomCommand {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Edit DNS server ähnelt.
+ /// Looks up a localized string similar to Edit DNS server.
///
public static string EditDNSServer {
get {
@@ -3124,7 +3132,7 @@ public static string EditDNSServer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Edit... ähnelt.
+ /// Looks up a localized string similar to Edit....
///
public static string EditDots {
get {
@@ -3133,7 +3141,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 {
@@ -3142,7 +3150,7 @@ public static string EditGroup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Edit group... ähnelt.
+ /// Looks up a localized string similar to Edit group....
///
public static string EditGroupDots {
get {
@@ -3151,7 +3159,7 @@ public static string EditGroupDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Edit OID profile ähnelt.
+ /// Looks up a localized string similar to Edit OID profile.
///
public static string EditOIDProfile {
get {
@@ -3160,7 +3168,7 @@ public static string EditOIDProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Edit port profile ähnelt.
+ /// Looks up a localized string similar to Edit port profile.
///
public static string EditPortProfile {
get {
@@ -3169,7 +3177,7 @@ public static string EditPortProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Edit profile ähnelt.
+ /// Looks up a localized string similar to Edit profile.
///
public static string EditProfile {
get {
@@ -3178,7 +3186,7 @@ public static string EditProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Edit profile file ähnelt.
+ /// Looks up a localized string similar to Edit profile file.
///
public static string EditProfileFile {
get {
@@ -3187,7 +3195,7 @@ public static string EditProfileFile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Edit SNTP server ähnelt.
+ /// Looks up a localized string similar to Edit SNTP server.
///
public static string EditSNTPServer {
get {
@@ -3196,7 +3204,7 @@ public static string EditSNTPServer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die EDNS ähnelt.
+ /// Looks up a localized string similar to EDNS.
///
public static string EDNS {
get {
@@ -3205,7 +3213,7 @@ public static string EDNS {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Emerald ähnelt.
+ /// Looks up a localized string similar to Emerald.
///
public static string Emerald {
get {
@@ -3214,7 +3222,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 {
@@ -3223,7 +3231,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 {
@@ -3232,7 +3240,7 @@ public static string EnableCredentialSecuritySupportProvider {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enabled ähnelt.
+ /// Looks up a localized string similar to Enabled.
///
public static string Enabled {
get {
@@ -3241,7 +3249,7 @@ public static string Enabled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enable encryption... ähnelt.
+ /// Looks up a localized string similar to Enable encryption....
///
public static string EnableEncryptionDots {
get {
@@ -3250,7 +3258,7 @@ public static string EnableEncryptionDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enable gateway server ähnelt.
+ /// Looks up a localized string similar to Enable gateway server.
///
public static string EnableGatewayServer {
get {
@@ -3259,7 +3267,7 @@ public static string EnableGatewayServer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enable log ähnelt.
+ /// Looks up a localized string similar to Enable log.
///
public static string EnableLog {
get {
@@ -3268,7 +3276,7 @@ public static string EnableLog {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Encryption ähnelt.
+ /// Looks up a localized string similar to Encryption.
///
public static string Encryption {
get {
@@ -3277,7 +3285,7 @@ public static string Encryption {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Encryption... ähnelt.
+ /// Looks up a localized string similar to Encryption....
///
public static string EncryptionDots {
get {
@@ -3286,7 +3294,7 @@ public static string EncryptionDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Encryption error ähnelt.
+ /// Looks up a localized string similar to Encryption error.
///
public static string EncryptionError {
get {
@@ -3295,7 +3303,7 @@ public static string EncryptionError {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not encrpyt file. You may report this issue on GitHub. ähnelt.
+ /// Looks up a localized string similar to Could not encrpyt file. You may report this issue on GitHub..
///
public static string EncryptionErrorMessage {
get {
@@ -3304,7 +3312,7 @@ public static string EncryptionErrorMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die End time ähnelt.
+ /// Looks up a localized string similar to End time.
///
public static string EndTime {
get {
@@ -3313,7 +3321,7 @@ public static string EndTime {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter a domain to query whois... ähnelt.
+ /// Looks up a localized string similar to Enter a domain to query whois....
///
public static string EnterADomainToQueryWhoisDots {
get {
@@ -3322,7 +3330,7 @@ public static string EnterADomainToQueryWhoisDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter a number and select a unit to calculate the units... ähnelt.
+ /// Looks up a localized string similar to Enter a number and select a unit to calculate the units....
///
public static string EnterANumberAndSelectAUnitToCalculateTheUnitsDots {
get {
@@ -3331,7 +3339,7 @@ public static string EnterANumberAndSelectAUnitToCalculateTheUnitsDots {
}
///
- /// 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 EnterASubnetToCalculateItDots {
get {
@@ -3340,7 +3348,7 @@ public static string EnterASubnetToCalculateItDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter host to query IP geolocation... ähnelt.
+ /// Looks up a localized string similar to Enter host to query IP geolocation....
///
public static string EnterHostToQueryIPGeolocationDots {
get {
@@ -3349,7 +3357,7 @@ public static string EnterHostToQueryIPGeolocationDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter location... ähnelt.
+ /// Looks up a localized string similar to Enter location....
///
public static string EnterLocationDots {
get {
@@ -3358,7 +3366,7 @@ public static string EnterLocationDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter master password to unlock the profile file: ähnelt.
+ /// Looks up a localized string similar to Enter master password to unlock the profile file:.
///
public static string EnterMasterPasswordToUnlockProfile {
get {
@@ -3367,7 +3375,7 @@ public static string EnterMasterPasswordToUnlockProfile {
}
///
- /// 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 {
@@ -3376,7 +3384,7 @@ public static string EnterOneOrMoreValidIPAddresses {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter password... ähnelt.
+ /// Looks up a localized string similar to Enter password....
///
public static string EnterPasswordDots {
get {
@@ -3385,7 +3393,7 @@ public static string EnterPasswordDots {
}
///
- /// 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 {
@@ -3394,7 +3402,7 @@ public static string EnterSubnetAndANewSubnetmaskToCreateSubnets {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter subnets to create a wide subnet... ähnelt.
+ /// Looks up a localized string similar to Enter subnets to create a wide subnet....
///
public static string EnterSubnetsToCreateAWideSubnet {
get {
@@ -3403,7 +3411,7 @@ public static string EnterSubnetsToCreateAWideSubnet {
}
///
- /// 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 {
@@ -3412,7 +3420,7 @@ public static string EnterValidBaud {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid domain (like "example.com")! ähnelt.
+ /// Looks up a localized string similar to Enter a valid domain (like "example.com")!.
///
public static string EnterValidDomain {
get {
@@ -3421,7 +3429,7 @@ public static string EnterValidDomain {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid file name! ähnelt.
+ /// Looks up a localized string similar to Enter a valid file name!.
///
public static string EnterValidFileName {
get {
@@ -3430,7 +3438,7 @@ public static string EnterValidFileName {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid file path! ähnelt.
+ /// Looks up a localized string similar to Enter a valid file path!.
///
public static string EnterValidFilePath {
get {
@@ -3439,7 +3447,7 @@ public static string EnterValidFilePath {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid hostname! ähnelt.
+ /// Looks up a localized string similar to Enter a valid hostname!.
///
public static string EnterValidHostname {
get {
@@ -3448,7 +3456,7 @@ public static string EnterValidHostname {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid hostname and port! ähnelt.
+ /// Looks up a localized string similar to Enter a valid hostname and port!.
///
public static string EnterValidHostnameAndPort {
get {
@@ -3457,7 +3465,7 @@ public static string EnterValidHostnameAndPort {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid hostname (like "server-01" or "example.com") or a valid IP address (like 192.168.178.1)! ähnelt.
+ /// Looks up a localized string similar to Enter a valid hostname (like "server-01" or "example.com") or a valid IP address (like 192.168.178.1)!.
///
public static string EnterValidHostnameOrIPAddress {
get {
@@ -3466,7 +3474,7 @@ public static string EnterValidHostnameOrIPAddress {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter valid hosts (multiple hosts can not end with ";")! ähnelt.
+ /// Looks up a localized string similar to Enter valid hosts (multiple hosts can not end with ";")!.
///
public static string EnterValidHosts {
get {
@@ -3475,7 +3483,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 {
@@ -3484,7 +3492,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 {
@@ -3493,7 +3501,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 {
@@ -3502,7 +3510,7 @@ public static string EnterValidIPv4Address {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid IPv6 address! ähnelt.
+ /// Looks up a localized string similar to Enter a valid IPv6 address!.
///
public static string EnterValidIPv6Address {
get {
@@ -3511,7 +3519,7 @@ public static string EnterValidIPv6Address {
}
///
- /// 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 {
@@ -3520,7 +3528,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 {
@@ -3529,7 +3537,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 {
@@ -3538,7 +3546,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 {
@@ -3547,7 +3555,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 {
@@ -3556,7 +3564,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 {
@@ -3565,7 +3573,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 {
@@ -3574,7 +3582,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 {
@@ -3583,7 +3591,7 @@ public static string EnterValidSubnetmaskOrCIDR {
}
///
- /// 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 {
@@ -3592,7 +3600,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 {
@@ -3601,7 +3609,7 @@ public static string Error {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Couldn't connect to 'api.github.com', check your network connection! ähnelt.
+ /// Looks up a localized string similar to Couldn't connect to 'api.github.com', check your network connection!.
///
public static string ErrorCheckingApiGithubComVerifyYourNetworkConnection {
get {
@@ -3610,7 +3618,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 {
@@ -3619,7 +3627,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 {
@@ -3628,7 +3636,7 @@ public static string ErrorInResponseCheckIfYouHaveWritePermissions {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The name is already used! ähnelt.
+ /// Looks up a localized string similar to The name is already used!.
///
public static string ErrorMessage_NameIsAlreadyUsed {
get {
@@ -3637,7 +3645,7 @@ public static string ErrorMessage_NameIsAlreadyUsed {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The settings on this page contain errors. Correct them to be able to save. ähnelt.
+ /// Looks up a localized string similar to The settings on this page contain errors. Correct them to be able to save..
///
public static string ErrorMessage_TabPageHasError {
get {
@@ -3646,7 +3654,7 @@ public static string ErrorMessage_TabPageHasError {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Error while scanning WiFi adapter "{0}" with error: "{1}" ähnelt.
+ /// Looks up a localized string similar to Error while scanning WiFi adapter "{0}" with error: "{1}".
///
public static string ErrorWhileScanningWiFiAdapterXXXWithErrorXXX {
get {
@@ -3655,7 +3663,7 @@ public static string ErrorWhileScanningWiFiAdapterXXXWithErrorXXX {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Everything ähnelt.
+ /// Looks up a localized string similar to Everything.
///
public static string Everything {
get {
@@ -3664,7 +3672,7 @@ public static string Everything {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Linux servers running in AWS... ähnelt.
+ /// Looks up a localized string similar to Linux servers running in AWS....
///
public static string ExampleGroupDescription {
get {
@@ -3673,7 +3681,7 @@ public static string ExampleGroupDescription {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Ubuntu Server running Docker with Nextcloud and Traefik... ähnelt.
+ /// Looks up a localized string similar to Ubuntu Server running Docker with Nextcloud and Traefik....
///
public static string ExampleProfileDescription {
get {
@@ -3682,7 +3690,7 @@ public static string ExampleProfileDescription {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Customer 1 ähnelt.
+ /// Looks up a localized string similar to Customer 1.
///
public static string ExampleProfileFileName {
get {
@@ -3691,7 +3699,7 @@ public static string ExampleProfileFileName {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Execution Policy ähnelt.
+ /// Looks up a localized string similar to Execution Policy.
///
public static string ExecutionPolicy {
get {
@@ -3700,7 +3708,7 @@ public static string ExecutionPolicy {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Expand ähnelt.
+ /// Looks up a localized string similar to Expand.
///
public static string Expand {
get {
@@ -3709,7 +3717,7 @@ public static string Expand {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Expand and open search... ähnelt.
+ /// Looks up a localized string similar to Expand and open search....
///
public static string ExpandAndOpenSearchDots {
get {
@@ -3718,7 +3726,7 @@ public static string ExpandAndOpenSearchDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Expand host view ähnelt.
+ /// Looks up a localized string similar to Expand host view.
///
public static string ExpandHostView {
get {
@@ -3727,7 +3735,7 @@ public static string ExpandHostView {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Experience ähnelt.
+ /// Looks up a localized string similar to Experience.
///
public static string Experience {
get {
@@ -3736,7 +3744,7 @@ public static string Experience {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Experimental ähnelt.
+ /// Looks up a localized string similar to Experimental.
///
public static string Experimental {
get {
@@ -3745,7 +3753,7 @@ public static string Experimental {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Experimental features ähnelt.
+ /// Looks up a localized string similar to Experimental features.
///
public static string ExperimentalFeatures {
get {
@@ -3754,7 +3762,7 @@ public static string ExperimentalFeatures {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Export ähnelt.
+ /// Looks up a localized string similar to Export.
///
public static string Export {
get {
@@ -3763,7 +3771,7 @@ public static string Export {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Export all ähnelt.
+ /// Looks up a localized string similar to Export all.
///
public static string ExportAll {
get {
@@ -3772,7 +3780,7 @@ public static string ExportAll {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Export... ähnelt.
+ /// Looks up a localized string similar to Export....
///
public static string ExportDots {
get {
@@ -3781,7 +3789,7 @@ public static string ExportDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Export selected ähnelt.
+ /// Looks up a localized string similar to Export selected.
///
public static string ExportSelected {
get {
@@ -3790,7 +3798,7 @@ public static string ExportSelected {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die IP Geolocation API - Fast, accurate, reliable ähnelt.
+ /// Looks up a localized string similar to IP Geolocation API - Fast, accurate, reliable.
///
public static string ExternalService_ip_api_Description {
get {
@@ -3799,7 +3807,7 @@ public static string ExternalService_ip_api_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die A Simple Public IP Address API ähnelt.
+ /// Looks up a localized string similar to A Simple Public IP Address API.
///
public static string ExternalService_ipify_Description {
get {
@@ -3808,7 +3816,7 @@ public static string ExternalService_ipify_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die External services ähnelt.
+ /// Looks up a localized string similar to External services.
///
public static string ExternalServices {
get {
@@ -3817,7 +3825,7 @@ public static string ExternalServices {
}
///
- /// 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 {
@@ -3826,7 +3834,7 @@ public static string FieldCannotBeEmpty {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die File ähnelt.
+ /// Looks up a localized string similar to File.
///
public static string File {
get {
@@ -3835,7 +3843,7 @@ public static string File {
}
///
- /// 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 {
@@ -3844,7 +3852,7 @@ public static string FileDoesNotExist {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die File exported to "{0}"! ähnelt.
+ /// Looks up a localized string similar to File exported to "{0}"!.
///
public static string FileExportedToXX {
get {
@@ -3853,7 +3861,7 @@ public static string FileExportedToXX {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die File path ähnelt.
+ /// Looks up a localized string similar to File path.
///
public static string FilePath {
get {
@@ -3862,7 +3870,7 @@ public static string FilePath {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Filter ähnelt.
+ /// Looks up a localized string similar to Filter.
///
public static string Filter {
get {
@@ -3871,7 +3879,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 {
@@ -3880,7 +3888,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 {
@@ -3889,7 +3897,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 {
@@ -3898,7 +3906,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 {
@@ -3907,7 +3915,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 {
@@ -3916,7 +3924,7 @@ public static string FolderDoesNotExist {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Font smoothing ähnelt.
+ /// Looks up a localized string similar to Font smoothing.
///
public static string FontSmoothing {
get {
@@ -3925,7 +3933,7 @@ public static string FontSmoothing {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Format ähnelt.
+ /// Looks up a localized string similar to Format.
///
public static string Format {
get {
@@ -3934,7 +3942,7 @@ public static string Format {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Found ähnelt.
+ /// Looks up a localized string similar to Found.
///
public static string Found {
get {
@@ -3943,7 +3951,7 @@ public static string Found {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Frequency ähnelt.
+ /// Looks up a localized string similar to Frequency.
///
public static string Frequency {
get {
@@ -3952,7 +3960,7 @@ public static string Frequency {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die (from profile) ähnelt.
+ /// Looks up a localized string similar to (from profile).
///
public static string FromProfile {
get {
@@ -3961,7 +3969,7 @@ public static string FromProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Fullscreen ähnelt.
+ /// Looks up a localized string similar to Fullscreen.
///
public static string Fullscreen {
get {
@@ -3970,7 +3978,7 @@ public static string Fullscreen {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Gateway ähnelt.
+ /// Looks up a localized string similar to Gateway.
///
public static string Gateway {
get {
@@ -3979,7 +3987,7 @@ public static string Gateway {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Gateway / Router ähnelt.
+ /// Looks up a localized string similar to Gateway / Router.
///
public static string GatewayRouter {
get {
@@ -3988,7 +3996,7 @@ public static string GatewayRouter {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Gateway server ähnelt.
+ /// Looks up a localized string similar to Gateway server.
///
public static string GatewayServer {
get {
@@ -3997,7 +4005,7 @@ public static string GatewayServer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt.
+ /// Looks up a localized string similar to General.
///
public static string General {
get {
@@ -4006,7 +4014,7 @@ public static string General {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Geolocation ähnelt.
+ /// Looks up a localized string similar to Geolocation.
///
public static string Geolocation {
get {
@@ -4015,7 +4023,7 @@ public static string Geolocation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die 2.4 GHz ähnelt.
+ /// Looks up a localized string similar to 2.4 GHz.
///
public static string GHz2dot4 {
get {
@@ -4024,7 +4032,7 @@ public static string GHz2dot4 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die 5 GHz ähnelt.
+ /// Looks up a localized string similar to 5 GHz.
///
public static string GHz5 {
get {
@@ -4033,7 +4041,7 @@ public static string GHz5 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die 6 GHz ähnelt.
+ /// Looks up a localized string similar to 6 GHz.
///
public static string GHz6 {
get {
@@ -4042,7 +4050,7 @@ public static string GHz6 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Gigabits ähnelt.
+ /// Looks up a localized string similar to Gigabits.
///
public static string Gigabits {
get {
@@ -4051,7 +4059,7 @@ public static string Gigabits {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Gigabytes ähnelt.
+ /// Looks up a localized string similar to Gigabytes.
///
public static string Gigabytes {
get {
@@ -4060,7 +4068,7 @@ public static string Gigabytes {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Got "{0}" as public ip address from "{1}"! ähnelt.
+ /// Looks up a localized string similar to Got "{0}" as public ip address from "{1}"!.
///
public static string GotXXXAsPublicIPAddressFromXXXMessage {
get {
@@ -4069,7 +4077,7 @@ public static string GotXXXAsPublicIPAddressFromXXXMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Green ähnelt.
+ /// Looks up a localized string similar to Green.
///
public static string Green {
get {
@@ -4078,7 +4086,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 {
@@ -4087,7 +4095,7 @@ public static string Group {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Group / domain name ähnelt.
+ /// Looks up a localized string similar to Group / domain name.
///
public static string GroupDomainName {
get {
@@ -4096,7 +4104,7 @@ public static string GroupDomainName {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Group name cannot start with "{0}"! ähnelt.
+ /// Looks up a localized string similar to Group name cannot start with "{0}"!.
///
public static string GroupNameCannotStartWithX {
get {
@@ -4105,7 +4113,7 @@ public static string GroupNameCannotStartWithX {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Groups ähnelt.
+ /// Looks up a localized string similar to Groups.
///
public static string Groups {
get {
@@ -4114,7 +4122,7 @@ public static string Groups {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Headers ähnelt.
+ /// Looks up a localized string similar to Headers.
///
public static string Headers {
get {
@@ -4123,7 +4131,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 {
@@ -4132,7 +4140,7 @@ public static string Height {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Help ähnelt.
+ /// Looks up a localized string similar to Help.
///
public static string Help {
get {
@@ -4141,11 +4149,11 @@ public static string Help {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die If you enable this option, the default PowerShell console settings in the registry under HKCU:\Console are overridden so that the PowerShell console window matches the application theme. This is a global system setting that may affect the appearance of the normal PowerShell window.
+ /// Looks up a localized string similar to If you enable this option, the default PowerShell console settings in the registry under HKCU:\Console are overridden so that the PowerShell console window matches the application theme. This is a global system setting that may affect the appearance of the normal PowerShell window.
///
///Only the PowerShell consoles configured in the PowerShell and AWS Session Manager settings are modified. Both Windows PowerShell and PWSH (PowerShell 7 and higher) are supported.
///
- ///Click in the upper right corner on the help [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt.
+ ///Click in the upper right corner on the help [rest of string was truncated]";.
///
public static string HelpMessage_ApplyThemeToPowerShellConsole {
get {
@@ -4154,7 +4162,7 @@ public static string HelpMessage_ApplyThemeToPowerShellConsole {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die If not set, the default AWS CLI settings are used. ähnelt.
+ /// Looks up a localized string similar to If not set, the default AWS CLI settings are used..
///
public static string HelpMessage_AWSCLIDefaultsAreUsedIfNotSet {
get {
@@ -4163,9 +4171,9 @@ public static string HelpMessage_AWSCLIDefaultsAreUsedIfNotSet {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profile which is used by manually created profiles to connect to an EC2 instance via AWS CLI.
+ /// Looks up a localized string similar to Profile which is used by manually created profiles to connect to an EC2 instance via AWS CLI.
///
- ///If not set, the default AWS CLI settings are used. ähnelt.
+ ///If not set, the default AWS CLI settings are used..
///
public static string HelpMessage_AWSSessionManagerProfile {
get {
@@ -4174,7 +4182,7 @@ public static string HelpMessage_AWSSessionManagerProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die To synchronize EC2 instances from AWS, the AWS CLI must be configured on the system. The EC2 instances can be queried for multiple AWS accounts (profiles) and multiple regions. To do this, the profile stored in the file "~/.aws/credentials" must be configured along with the region to query. ähnelt.
+ /// Looks up a localized string similar to To synchronize EC2 instances from AWS, the AWS CLI must be configured on the system. The EC2 instances can be queried for multiple AWS accounts (profiles) and multiple regions. To do this, the profile stored in the file "~/.aws/credentials" must be configured along with the region to query..
///
public static string HelpMessage_AWSSessionManagerProfilesAndRegionsToSync {
get {
@@ -4183,9 +4191,9 @@ public static string HelpMessage_AWSSessionManagerProfilesAndRegionsToSync {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Region which is used by manually created profiles to connect to an EC2 instance via AWS CLI .
+ /// Looks up a localized string similar to Region which is used by manually created profiles to connect to an EC2 instance via AWS CLI .
///
- ///If not set, the default AWS CLI settings are used. ähnelt.
+ ///If not set, the default AWS CLI settings are used..
///
public static string HelpMessage_AWSSessionManagerRegion {
get {
@@ -4194,11 +4202,11 @@ public static string HelpMessage_AWSSessionManagerRegion {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The background job will save settings and profiles every x-minutes.
+ /// Looks up a localized string similar to The background job will save settings and profiles every x-minutes.
///
///Value 0 will disable this feature.
///
- ///Changes to this value will take effect after restarting the application. ähnelt.
+ ///Changes to this value will take effect after restarting the application..
///
public static string HelpMessage_BackgroundJob {
get {
@@ -4207,9 +4215,9 @@ public static string HelpMessage_BackgroundJob {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The DNS resolver is determined via ip-api.com.
+ /// Looks up a localized string similar to The DNS resolver is determined via ip-api.com.
///
- ///URL: https://edns.ip-api.com/ ähnelt.
+ ///URL: https://edns.ip-api.com/.
///
public static string HelpMessage_CheckDNSResolver {
get {
@@ -4218,9 +4226,9 @@ public static string HelpMessage_CheckDNSResolver {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die When starting the program, it checks in the background whether a new program version is available on GitHub.
+ /// Looks up a localized string similar to When starting the program, it checks in the background whether a new program version is available on GitHub.
///
- ///URL: https://api.github.com/ ähnelt.
+ ///URL: https://api.github.com/.
///
public static string HelpMessage_CheckForUpdatesAtStartup {
get {
@@ -4229,9 +4237,9 @@ public static string HelpMessage_CheckForUpdatesAtStartup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The IP geolocation is determined via ip-api.com.
+ /// Looks up a localized string similar to The IP geolocation is determined via ip-api.com.
///
- ///URL: http://ip-api.com/ ähnelt.
+ ///URL: http://ip-api.com/.
///
public static string HelpMessage_CheckIPGeolocation {
get {
@@ -4240,9 +4248,9 @@ public static string HelpMessage_CheckIPGeolocation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The public IP address is determined via ipify.org.
+ /// Looks up a localized string similar to The public IP address is determined via ipify.org.
///
- ///URL: https://api.ipify.org and https://api6.ipify.org ähnelt.
+ ///URL: https://api.ipify.org and https://api6.ipify.org.
///
public static string HelpMessage_CheckPublicIPAddress {
get {
@@ -4251,7 +4259,7 @@ public static string HelpMessage_CheckPublicIPAddress {
}
///
- /// 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 {
@@ -4260,10 +4268,10 @@ public static string HelpMessage_Credentials {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The following variables are available:
+ /// Looks up a localized string similar to The following variables are available:
///
///$$ipaddress$$ --> IP adresse
- ///$$hostname$$ --> Hostname ähnelt.
+ ///$$hostname$$ --> Hostname.
///
public static string HelpMessage_CustomCommandVariables {
get {
@@ -4272,7 +4280,7 @@ public static string HelpMessage_CustomCommandVariables {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die URL to a web service that can be reached via http or https and returns an IPv4 address like "xx.xx.xx.xx" as response. ähnelt.
+ /// Looks up a localized string similar to URL to a web service that can be reached via http or https and returns an IPv4 address like "xx.xx.xx.xx" as response..
///
public static string HelpMessage_CustomPublicIPv4AddressAPI {
get {
@@ -4281,7 +4289,7 @@ public static string HelpMessage_CustomPublicIPv4AddressAPI {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die URL to a web service that can be reached via http or https and returns an IPv6 address like "xxxx:xx:xxx::xx" as response. ähnelt.
+ /// Looks up a localized string similar to URL to a web service that can be reached via http or https and returns an IPv6 address like "xxxx:xx:xxx::xx" as response..
///
public static string HelpMessage_CustomPublicIPv6AddressAPI {
get {
@@ -4290,7 +4298,7 @@ public static string HelpMessage_CustomPublicIPv6AddressAPI {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enable experimental features to test new functions. These are not yet complete, contain bugs, can crash the application and may change again until release. ähnelt.
+ /// Looks up a localized string similar to Enable experimental features to test new functions. These are not yet complete, contain bugs, can crash the application and may change again until release..
///
public static string HelpMessage_ExperimentalFeatures {
get {
@@ -4299,7 +4307,7 @@ public static string HelpMessage_ExperimentalFeatures {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Application that is displayed at startup. ähnelt.
+ /// Looks up a localized string similar to Application that is displayed at startup..
///
public static string HelpMessage_ParameterApplication {
get {
@@ -4308,7 +4316,7 @@ public static string HelpMessage_ParameterApplication {
}
///
- /// 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 {
@@ -4317,7 +4325,7 @@ public static string HelpMessage_ParameterHelp {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resets all application settings. ähnelt.
+ /// Looks up a localized string similar to Resets all application settings..
///
public static string HelpMessage_ParameterResetSettings {
get {
@@ -4326,7 +4334,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 {
@@ -4335,7 +4343,7 @@ public static string HelpMessage_PasswordNotDisplayedCanBeOverwritten {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Public IPv4 address reachable via ICMP. ähnelt.
+ /// Looks up a localized string similar to Public IPv4 address reachable via ICMP..
///
public static string HelpMessage_PublicIPv4Address {
get {
@@ -4344,7 +4352,7 @@ public static string HelpMessage_PublicIPv4Address {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Public IPv6 address reachable via ICMP. ähnelt.
+ /// Looks up a localized string similar to Public IPv6 address reachable via ICMP..
///
public static string HelpMessage_PublicIPv6Address {
get {
@@ -4353,7 +4361,7 @@ public static string HelpMessage_PublicIPv6Address {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SSH hostkey to use for the connection (like "71:b8:f2:6e..."). Only available if the mode is "SSH". ähnelt.
+ /// Looks up a localized string similar to SSH hostkey to use for the connection (like "71:b8:f2:6e..."). Only available if the mode is "SSH"..
///
public static string HelpMessage_PuTTYHostkey {
get {
@@ -4362,7 +4370,7 @@ public static string HelpMessage_PuTTYHostkey {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Full path to the private key file (like "C:\Users\BornToBeRoot\SSH\private_key.ppk"). Only available if the mode is "SSH". ähnelt.
+ /// Looks up a localized string similar to Full path to the private key file (like "C:\Users\BornToBeRoot\SSH\private_key.ppk"). Only available if the mode is "SSH"..
///
public static string HelpMessage_PuTTYPrivateKeyFile {
get {
@@ -4371,7 +4379,7 @@ public static string HelpMessage_PuTTYPrivateKeyFile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Username that will be passed into the PuTTY session. Only available if the mode is "SSH", "Telnet" or "Rlogin". ähnelt.
+ /// Looks up a localized string similar to Username that will be passed into the PuTTY session. Only available if the mode is "SSH", "Telnet" or "Rlogin"..
///
public static string HelpMessage_PuTTYUsername {
get {
@@ -4380,10 +4388,10 @@ public static string HelpMessage_PuTTYUsername {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die [0] If server authentication fails, connect to the computer without warning.
+ /// Looks up a localized string similar to [0] If server authentication fails, connect to the computer without warning.
///[1] If server authentication fails, do not establish a connection.
///[2] If server authentication fails, show a warning and allow me to connect or refuse the connection.
- ///[3] No authentication requirement is specified. ähnelt.
+ ///[3] No authentication requirement is specified..
///
public static string HelpMessage_RDPAuthenticationLevel {
get {
@@ -4392,7 +4400,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 {
@@ -4401,13 +4409,13 @@ public static string HelpMessage_Tags {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die This setting specifies the minimum number of threads that will be created from the application's ThreadPool on demand. This can improve the performance for example of the IP scanner or port scanner.
+ /// Looks up a localized string similar to This setting specifies the minimum number of threads that will be created from the application's ThreadPool on demand. This can improve the performance for example of the IP scanner or port scanner.
///
///The value is added to the default min. threads (number of CPU threads). The value 0 leaves the default settings. If the value is higher than the default max. threads of the ThreadPool, this value is used.
///
///If the value is too high, performance problems may occur.
///
- ///Changes to this value will take effect a [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt.
+ ///Changes to this value will take effect a [rest of string was truncated]";.
///
public static string HelpMessage_ThreadPoolAdditionalMinThreads {
get {
@@ -4416,7 +4424,7 @@ public static string HelpMessage_ThreadPoolAdditionalMinThreads {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Hidden applications ähnelt.
+ /// Looks up a localized string similar to Hidden applications.
///
public static string HiddenApplications {
get {
@@ -4425,7 +4433,7 @@ public static string HiddenApplications {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Hidden Network ähnelt.
+ /// Looks up a localized string similar to Hidden Network.
///
public static string HiddenNetwork {
get {
@@ -4434,7 +4442,7 @@ public static string HiddenNetwork {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Hide ähnelt.
+ /// Looks up a localized string similar to Hide.
///
public static string Hide {
get {
@@ -4443,7 +4451,7 @@ public static string Hide {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Highlight timeouts ähnelt.
+ /// Looks up a localized string similar to Highlight timeouts.
///
public static string HighlightTimeouts {
get {
@@ -4452,7 +4460,7 @@ public static string HighlightTimeouts {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die History ähnelt.
+ /// Looks up a localized string similar to History.
///
public static string History {
get {
@@ -4461,7 +4469,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 {
@@ -4470,7 +4478,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 {
@@ -4479,7 +4487,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 {
@@ -4488,7 +4496,7 @@ public static string Host {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Hosting ähnelt.
+ /// Looks up a localized string similar to Hosting.
///
public static string Hosting {
get {
@@ -4497,7 +4505,7 @@ public static string Hosting {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Hostkey ähnelt.
+ /// Looks up a localized string similar to Hostkey.
///
public static string Hostkey {
get {
@@ -4506,7 +4514,7 @@ public static string Hostkey {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Hostname ähnelt.
+ /// Looks up a localized string similar to Hostname.
///
public static string Hostname {
get {
@@ -4515,7 +4523,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 {
@@ -4524,7 +4532,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 {
@@ -4533,7 +4541,25 @@ public static string Hosts {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die HotKeys ähnelt.
+ /// Looks up a localized string similar to Hosts File Editor.
+ ///
+ public static string HostsFileEditor {
+ get {
+ return ResourceManager.GetString("HostsFileEditor", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to To edit the hosts file, the application must be started with elevated rights!.
+ ///
+ public static string HostsFileEditorAdminMessage {
+ get {
+ return ResourceManager.GetString("HostsFileEditorAdminMessage", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HotKeys.
///
public static string HotKeys {
get {
@@ -4542,7 +4568,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 {
@@ -4551,7 +4577,7 @@ public static string HTTPHeaders {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die HTTP status code ähnelt.
+ /// Looks up a localized string similar to HTTP status code.
///
public static string HTTPStatusCode {
get {
@@ -4560,7 +4586,7 @@ public static string HTTPStatusCode {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ICMPv4 ähnelt.
+ /// Looks up a localized string similar to ICMPv4.
///
public static string ICMPv4 {
get {
@@ -4569,7 +4595,7 @@ public static string ICMPv4 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ICMPv6 ähnelt.
+ /// Looks up a localized string similar to ICMPv6.
///
public static string ICMPv6 {
get {
@@ -4578,7 +4604,7 @@ public static string ICMPv6 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ID ähnelt.
+ /// Looks up a localized string similar to ID.
///
public static string ID {
get {
@@ -4587,7 +4613,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 {
@@ -4596,7 +4622,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 {
@@ -4605,7 +4631,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 {
@@ -4614,7 +4640,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 {
@@ -4623,7 +4649,7 @@ public static string Information {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Infrastructure ähnelt.
+ /// Looks up a localized string similar to Infrastructure.
///
public static string Infrastructure {
get {
@@ -4632,7 +4658,7 @@ public static string Infrastructure {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Inherit host from general ähnelt.
+ /// Looks up a localized string similar to Inherit host from general.
///
public static string InheritHostFromGeneral {
get {
@@ -4641,7 +4667,7 @@ public static string InheritHostFromGeneral {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Input ähnelt.
+ /// Looks up a localized string similar to Input.
///
public static string Input {
get {
@@ -4650,7 +4676,7 @@ public static string Input {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Input cannot end with a ";"! ähnelt.
+ /// Looks up a localized string similar to Input cannot end with a ";"!.
///
public static string InputCannotEndWithSemicolon {
get {
@@ -4659,7 +4685,7 @@ public static string InputCannotEndWithSemicolon {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Input does not contain any text! ähnelt.
+ /// Looks up a localized string similar to Input does not contain any text!.
///
public static string InputDoesNotContainAnyText {
get {
@@ -4668,7 +4694,7 @@ public static string InputDoesNotContainAnyText {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Instance ID ähnelt.
+ /// Looks up a localized string similar to Instance ID.
///
public static string InstanceId {
get {
@@ -4677,7 +4703,7 @@ public static string InstanceId {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Interface ähnelt.
+ /// Looks up a localized string similar to Interface.
///
public static string Interface {
get {
@@ -4686,7 +4712,7 @@ public static string Interface {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Internet ähnelt.
+ /// Looks up a localized string similar to Internet.
///
public static string Internet {
get {
@@ -4695,7 +4721,7 @@ public static string Internet {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die IP address ähnelt.
+ /// Looks up a localized string similar to IP address.
///
public static string IPAddress {
get {
@@ -4704,7 +4730,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 {
@@ -4713,7 +4739,7 @@ public static string IPAddresses {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die IP address to detect local ip address based on routing ähnelt.
+ /// Looks up a localized string similar to IP address to detect local ip address based on routing.
///
public static string IPAddressToDetectLocalIPAddressBasedOnRouting {
get {
@@ -4722,8 +4748,8 @@ public static string IPAddressToDetectLocalIPAddressBasedOnRouting {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ip-api.com rate limit reached (too many requests from your network)!
- ///Try again in a few seconds. ähnelt.
+ /// Looks up a localized string similar to ip-api.com rate limit reached (too many requests from your network)!
+ ///Try again in a few seconds..
///
public static string IPApiRateLimitMessage {
get {
@@ -4732,7 +4758,7 @@ public static string IPApiRateLimitMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die IP endpoint ähnelt.
+ /// Looks up a localized string similar to IP endpoint.
///
public static string IPEndPoint {
get {
@@ -4741,7 +4767,7 @@ public static string IPEndPoint {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die IP geolocation ähnelt.
+ /// Looks up a localized string similar to IP geolocation.
///
public static string IPGeolocation {
get {
@@ -4750,7 +4776,7 @@ public static string IPGeolocation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die IP range ähnelt.
+ /// Looks up a localized string similar to IP range.
///
public static string IPRange {
get {
@@ -4759,7 +4785,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 {
@@ -4768,7 +4794,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 {
@@ -4777,7 +4803,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 {
@@ -4786,7 +4812,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 {
@@ -4795,7 +4821,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 {
@@ -4804,7 +4830,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 {
@@ -4813,7 +4839,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 {
@@ -4822,7 +4848,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 {
@@ -4831,7 +4857,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 {
@@ -4840,7 +4866,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 {
@@ -4849,7 +4875,7 @@ public static string IPv4DefaultGateway {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die IPv4 protocol available ähnelt.
+ /// Looks up a localized string similar to IPv4 protocol available.
///
public static string IPv4ProtocolAvailable {
get {
@@ -4858,7 +4884,7 @@ public static string IPv4ProtocolAvailable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die IPv6 ähnelt.
+ /// Looks up a localized string similar to IPv6.
///
public static string IPv6 {
get {
@@ -4867,7 +4893,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 {
@@ -4876,7 +4902,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 {
@@ -4885,7 +4911,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 {
@@ -4894,7 +4920,7 @@ public static string IPv6DefaultGateway {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die IPv6 protocol available ähnelt.
+ /// Looks up a localized string similar to IPv6 protocol available.
///
public static string IPv6ProtocolAvailable {
get {
@@ -4903,7 +4929,7 @@ public static string IPv6ProtocolAvailable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Is encrypted ähnelt.
+ /// Looks up a localized string similar to Is encrypted.
///
public static string IsEncrypted {
get {
@@ -4912,7 +4938,7 @@ public static string IsEncrypted {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ISP ähnelt.
+ /// Looks up a localized string similar to ISP.
///
public static string ISP {
get {
@@ -4921,7 +4947,7 @@ public static string ISP {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Keyboard ähnelt.
+ /// Looks up a localized string similar to Keyboard.
///
public static string Keyboard {
get {
@@ -4930,7 +4956,7 @@ public static string Keyboard {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Keyboard shortcuts ähnelt.
+ /// Looks up a localized string similar to Keyboard shortcuts.
///
public static string KeyboardShortcuts {
get {
@@ -4939,7 +4965,7 @@ public static string KeyboardShortcuts {
}
///
- /// 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 {
@@ -4948,7 +4974,7 @@ public static string KeyMustHave8CharactersOrMore {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Kilobits ähnelt.
+ /// Looks up a localized string similar to Kilobits.
///
public static string Kilobits {
get {
@@ -4957,7 +4983,7 @@ public static string Kilobits {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Kilobytes ähnelt.
+ /// Looks up a localized string similar to Kilobytes.
///
public static string Kilobytes {
get {
@@ -4966,7 +4992,7 @@ public static string Kilobytes {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Language ähnelt.
+ /// Looks up a localized string similar to Language.
///
public static string Language {
get {
@@ -4975,7 +5001,7 @@ public static string Language {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Last scan at {0} ähnelt.
+ /// Looks up a localized string similar to Last scan at {0}.
///
public static string LastScanAtX {
get {
@@ -4984,7 +5010,7 @@ public static string LastScanAtX {
}
///
- /// 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 {
@@ -4993,7 +5019,7 @@ public static string LastUsableIPAddress {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Latitude ähnelt.
+ /// Looks up a localized string similar to Latitude.
///
public static string Latitude {
get {
@@ -5002,7 +5028,7 @@ public static string Latitude {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Libraries ähnelt.
+ /// Looks up a localized string similar to Libraries.
///
public static string Libraries {
get {
@@ -5011,7 +5037,7 @@ public static string Libraries {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die AirspacePanel fixes all Airspace issues with WPF-hosted Winforms. ähnelt.
+ /// Looks up a localized string similar to AirspacePanel fixes all Airspace issues with WPF-hosted Winforms..
///
public static string Library_AirspaceFixer_Description {
get {
@@ -5020,7 +5046,7 @@ public static string Library_AirspaceFixer_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die AWS SDK for .NET to work with Amazon Elastic Compute Cloud (Amazon EC2) in Amazon Web Services (AWS). ähnelt.
+ /// Looks up a localized string similar to AWS SDK for .NET to work with Amazon Elastic Compute Cloud (Amazon EC2) in Amazon Web Services (AWS)..
///
public static string Library_AWSSDKdotEC2_Description {
get {
@@ -5029,7 +5055,7 @@ public static string Library_AWSSDKdotEC2_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Shared Controlz for WPF and ... more ähnelt.
+ /// Looks up a localized string similar to Shared Controlz for WPF and ... more.
///
public static string Library_ControlzEx_Description {
get {
@@ -5038,7 +5064,7 @@ public static string Library_ControlzEx_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die C#/WinRT provides packaged WinRT projection support for the C# language. ähnelt.
+ /// Looks up a localized string similar to C#/WinRT provides packaged WinRT projection support for the C# language..
///
public static string Library_CsWinRT_Description {
get {
@@ -5047,7 +5073,7 @@ public static string Library_CsWinRT_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die DnsClient.NET is a simple yet very powerful and high performant open source library for the .NET Framework to do DNS lookups ähnelt.
+ /// Looks up a localized string similar to DnsClient.NET is a simple yet very powerful and high performant open source library for the .NET Framework to do DNS lookups.
///
public static string Library_DnsClientNET_Description {
get {
@@ -5056,7 +5082,7 @@ public static string Library_DnsClientNET_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Dragable and tearable tab control for WPF ähnelt.
+ /// Looks up a localized string similar to Dragable and tearable tab control for WPF.
///
public static string Library_Dragablz_Description {
get {
@@ -5065,7 +5091,7 @@ public static string Library_Dragablz_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die An easy to use drag'n'drop framework for WPF. ähnelt.
+ /// Looks up a localized string similar to An easy to use drag'n'drop framework for WPF..
///
public static string Library_GongSolutionsWpfDragDrop_Description {
get {
@@ -5074,7 +5100,7 @@ public static string Library_GongSolutionsWpfDragDrop_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die C# library take care of complex network, IP, IPv4, IPv6, netmask, CIDR, subnet, subnetting, supernet, and supernetting calculation for .NET developers. ähnelt.
+ /// Looks up a localized string similar to C# library take care of complex network, IP, IPv4, IPv6, netmask, CIDR, subnet, subnetting, supernet, and supernetting calculation for .NET developers..
///
public static string Library_IPNetwork_Description {
get {
@@ -5083,7 +5109,7 @@ public static string Library_IPNetwork_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Simple, flexible, interactive & powerful charts, maps and gauges for .Net ähnelt.
+ /// Looks up a localized string similar to Simple, flexible, interactive & powerful charts, maps and gauges for .Net.
///
public static string Library_LiveCharts_Description {
get {
@@ -5092,7 +5118,7 @@ public static string Library_LiveCharts_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die A collection of loading indicators for WPF ähnelt.
+ /// Looks up a localized string similar to A collection of loading indicators for WPF.
///
public static string Library_LoadingIndicatorsWPF_Description {
get {
@@ -5101,7 +5127,7 @@ public static string Library_LoadingIndicatorsWPF_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die log4net is a tool to help the programmer output log statements to a variety of output targets. ähnelt.
+ /// Looks up a localized string similar to log4net is a tool to help the programmer output log statements to a variety of output targets..
///
public static string Library_log4net_Description {
get {
@@ -5110,7 +5136,7 @@ public static string Library_log4net_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die A toolkit for creating Metro / Modern UI styled WPF apps. ähnelt.
+ /// Looks up a localized string similar to A toolkit for creating Metro / Modern UI styled WPF apps..
///
public static string Library_MahAppsMetro_Description {
get {
@@ -5119,7 +5145,7 @@ public static string Library_MahAppsMetro_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Some awesome icons for WPF and UWP all together... ähnelt.
+ /// Looks up a localized string similar to Some awesome icons for WPF and UWP all together....
///
public static string Library_MahAppsMetroIconPacks_Description {
get {
@@ -5128,7 +5154,7 @@ public static string Library_MahAppsMetroIconPacks_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Json.NET is a popular high-performance JSON framework for .NET ähnelt.
+ /// Looks up a localized string similar to Json.NET is a popular high-performance JSON framework for .NET.
///
public static string Library_NewtonsoftJson_Description {
get {
@@ -5137,7 +5163,7 @@ public static string Library_NewtonsoftJson_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Move a .NET Framework/.NET Core app runtime components and dependencies into a sub-directory and make it beauty. ähnelt.
+ /// Looks up a localized string similar to Move a .NET Framework/.NET Core app runtime components and dependencies into a sub-directory and make it beauty..
///
public static string Library_nulastudioNetBeauty_Description {
get {
@@ -5146,7 +5172,7 @@ public static string Library_nulastudioNetBeauty_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die A GitHub API client library for .NET ähnelt.
+ /// Looks up a localized string similar to A GitHub API client library for .NET.
///
public static string Library_Octokit_Description {
get {
@@ -5155,7 +5181,7 @@ public static string Library_Octokit_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Runtime for hosting PowerShell ähnelt.
+ /// Looks up a localized string similar to Runtime for hosting PowerShell.
///
public static string Library_PowerShellSDK_Description {
get {
@@ -5164,7 +5190,7 @@ public static string Library_PowerShellSDK_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Capture and parse CDP and LLDP packets on local or remote computers ähnelt.
+ /// Looks up a localized string similar to Capture and parse CDP and LLDP packets on local or remote computers.
///
public static string Library_PSDicoveryProtocol_Description {
get {
@@ -5173,7 +5199,7 @@ public static string Library_PSDicoveryProtocol_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Sharp SNMP Library - Open Source SNMP for .NET and Mono ähnelt.
+ /// Looks up a localized string similar to Sharp SNMP Library - Open Source SNMP for .NET and Mono.
///
public static string Library_SharpSNMP_Description {
get {
@@ -5182,7 +5208,7 @@ public static string Library_SharpSNMP_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The WebView2 control enables you to embed web technologies (HTML, CSS, and JavaScript) in your native applications powered by Microsoft Edge (Chromium). ähnelt.
+ /// Looks up a localized string similar to The WebView2 control enables you to embed web technologies (HTML, CSS, and JavaScript) in your native applications powered by Microsoft Edge (Chromium)..
///
public static string Library_WebView2_Description {
get {
@@ -5191,7 +5217,7 @@ public static string Library_WebView2_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Easily add interactivity to your apps using XAML Behaviors for WPF. ähnelt.
+ /// Looks up a localized string similar to Easily add interactivity to your apps using XAML Behaviors for WPF..
///
public static string Library_XamlBehaviorsWpf_Description {
get {
@@ -5200,7 +5226,7 @@ public static string Library_XamlBehaviorsWpf_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die License ähnelt.
+ /// Looks up a localized string similar to License.
///
public static string License {
get {
@@ -5209,7 +5235,7 @@ public static string License {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Apache License 2.0 ähnelt.
+ /// Looks up a localized string similar to Apache License 2.0.
///
public static string License_ApacheLicense2dot0 {
get {
@@ -5218,7 +5244,7 @@ public static string License_ApacheLicense2dot0 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die BSD-2-Clause ähnelt.
+ /// Looks up a localized string similar to BSD-2-Clause.
///
public static string License_BDS2Clause {
get {
@@ -5227,7 +5253,7 @@ public static string License_BDS2Clause {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die BSD-3-Clause ähnelt.
+ /// Looks up a localized string similar to BSD-3-Clause.
///
public static string License_BDS3Clause {
get {
@@ -5236,7 +5262,7 @@ public static string License_BDS3Clause {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Microsoft WebView2 License ähnelt.
+ /// Looks up a localized string similar to Microsoft WebView2 License.
///
public static string License_MicrosoftWebView2License {
get {
@@ -5245,7 +5271,7 @@ public static string License_MicrosoftWebView2License {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die MIT License ähnelt.
+ /// Looks up a localized string similar to MIT License.
///
public static string License_MITLicense {
get {
@@ -5254,7 +5280,7 @@ public static string License_MITLicense {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Unlicense ähnelt.
+ /// Looks up a localized string similar to Unlicense.
///
public static string License_Unlicense {
get {
@@ -5263,7 +5289,7 @@ public static string License_Unlicense {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Lime ähnelt.
+ /// Looks up a localized string similar to Lime.
///
public static string Lime {
get {
@@ -5272,7 +5298,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 {
@@ -5281,7 +5307,7 @@ public static string Listeners {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die LLDP / CDP ähnelt.
+ /// Looks up a localized string similar to LLDP / CDP.
///
public static string LldpCdp {
get {
@@ -5290,7 +5316,7 @@ public static string LldpCdp {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Local connection ähnelt.
+ /// Looks up a localized string similar to Local connection.
///
public static string LocalConnection {
get {
@@ -5299,7 +5325,7 @@ public static string LocalConnection {
}
///
- /// 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 {
@@ -5308,7 +5334,7 @@ public static string LocalDevicesAndResources {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Local end time ähnelt.
+ /// Looks up a localized string similar to Local end time.
///
public static string LocalEndTime {
get {
@@ -5317,7 +5343,7 @@ public static string LocalEndTime {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Local interface ähnelt.
+ /// Looks up a localized string similar to Local interface.
///
public static string LocalInterface {
get {
@@ -5326,7 +5352,7 @@ public static string LocalInterface {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Local IP address ähnelt.
+ /// Looks up a localized string similar to Local IP address.
///
public static string LocalIPAddress {
get {
@@ -5335,7 +5361,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 {
@@ -5344,7 +5370,7 @@ public static string LocalPort {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Local start time ähnelt.
+ /// Looks up a localized string similar to Local start time.
///
public static string LocalStartTime {
get {
@@ -5353,7 +5379,7 @@ public static string LocalStartTime {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Location ähnelt.
+ /// Looks up a localized string similar to Location.
///
public static string Location {
get {
@@ -5362,7 +5388,7 @@ public static string Location {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Location cannot be changed in portable version! ähnelt.
+ /// Looks up a localized string similar to Location cannot be changed in portable version!.
///
public static string LocationCannotBeChangedInThePortableVersion {
get {
@@ -5371,7 +5397,7 @@ public static string LocationCannotBeChangedInThePortableVersion {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Location... ähnelt.
+ /// Looks up a localized string similar to Location....
///
public static string LocationDots {
get {
@@ -5380,7 +5406,7 @@ public static string LocationDots {
}
///
- /// 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 {
@@ -5389,7 +5415,7 @@ public static string LocationOfTheImport {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Log ähnelt.
+ /// Looks up a localized string similar to Log.
///
public static string Log {
get {
@@ -5398,7 +5424,7 @@ public static string Log {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Log file name ähnelt.
+ /// Looks up a localized string similar to Log file name.
///
public static string LogFileName {
get {
@@ -5407,7 +5433,7 @@ public static string LogFileName {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Log mode ähnelt.
+ /// Looks up a localized string similar to Log mode.
///
public static string LogMode {
get {
@@ -5416,7 +5442,7 @@ public static string LogMode {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Logon method ähnelt.
+ /// Looks up a localized string similar to Logon method.
///
public static string LogonMethod {
get {
@@ -5425,7 +5451,7 @@ public static string LogonMethod {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Log path ähnelt.
+ /// Looks up a localized string similar to Log path.
///
public static string LogPath {
get {
@@ -5434,7 +5460,7 @@ public static string LogPath {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Longitude ähnelt.
+ /// Looks up a localized string similar to Longitude.
///
public static string Longitude {
get {
@@ -5443,7 +5469,7 @@ public static string Longitude {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Lookup ähnelt.
+ /// Looks up a localized string similar to Lookup.
///
public static string Lookup {
get {
@@ -5452,7 +5478,7 @@ public static string Lookup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Lost ähnelt.
+ /// Looks up a localized string similar to Lost.
///
public static string Lost {
get {
@@ -5461,7 +5487,7 @@ public static string Lost {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die MAC Address ähnelt.
+ /// Looks up a localized string similar to MAC Address.
///
public static string MACAddress {
get {
@@ -5470,7 +5496,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 {
@@ -5479,7 +5505,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 {
@@ -5488,7 +5514,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 {
@@ -5497,7 +5523,7 @@ public static string MagicPacketSentMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Management ähnelt.
+ /// Looks up a localized string similar to Management.
///
public static string Management {
get {
@@ -5506,7 +5532,7 @@ public static string Management {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Master Password ähnelt.
+ /// Looks up a localized string similar to Master Password.
///
public static string MasterPassword {
get {
@@ -5515,7 +5541,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 {
@@ -5524,7 +5550,7 @@ public static string Mauve {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Max. concurrent host threads ähnelt.
+ /// Looks up a localized string similar to Max. concurrent host threads.
///
public static string MaxHostThreads {
get {
@@ -5533,7 +5559,7 @@ public static string MaxHostThreads {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Maximum ähnelt.
+ /// Looks up a localized string similar to Maximum.
///
public static string Maximum {
get {
@@ -5542,7 +5568,7 @@ public static string Maximum {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Maximum hops ähnelt.
+ /// Looks up a localized string similar to Maximum hops.
///
public static string MaximumHops {
get {
@@ -5551,7 +5577,7 @@ public static string MaximumHops {
}
///
- /// 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 {
@@ -5560,7 +5586,7 @@ public static string MaximumNumberOfHopsReached {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Max. concurrent port threads ähnelt.
+ /// Looks up a localized string similar to Max. concurrent port threads.
///
public static string MaxPortThreads {
get {
@@ -5569,7 +5595,7 @@ public static string MaxPortThreads {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die These settings only change the maximum number of concurrently executed threads per host/port scan. Go to Settings > General > General to adjust the (min) threads of the application. ähnelt.
+ /// Looks up a localized string similar to These settings only change the maximum number of concurrently executed threads per host/port scan. Go to Settings > General > General to adjust the (min) threads of the application..
///
public static string MaxThreadsOnlyGoToSettingsGeneralGeneral {
get {
@@ -5578,7 +5604,7 @@ public static string MaxThreadsOnlyGoToSettingsGeneralGeneral {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Measured time ähnelt.
+ /// Looks up a localized string similar to Measured time.
///
public static string MeasuredTime {
get {
@@ -5587,7 +5613,7 @@ public static string MeasuredTime {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Megabits ähnelt.
+ /// Looks up a localized string similar to Megabits.
///
public static string Megabits {
get {
@@ -5596,7 +5622,7 @@ public static string Megabits {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Megabytes ähnelt.
+ /// Looks up a localized string similar to Megabytes.
///
public static string Megabytes {
get {
@@ -5605,7 +5631,7 @@ public static string Megabytes {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Menu and window animation ähnelt.
+ /// Looks up a localized string similar to Menu and window animation.
///
public static string MenuAndWindowAnimation {
get {
@@ -5614,7 +5640,7 @@ public static string MenuAndWindowAnimation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Merge ähnelt.
+ /// Looks up a localized string similar to Merge.
///
public static string Merge {
get {
@@ -5623,7 +5649,7 @@ public static string Merge {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Message size ähnelt.
+ /// Looks up a localized string similar to Message size.
///
public static string MessageSize {
get {
@@ -5632,7 +5658,7 @@ public static string MessageSize {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die MIB ähnelt.
+ /// Looks up a localized string similar to MIB.
///
public static string MIB {
get {
@@ -5641,7 +5667,7 @@ public static string MIB {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Microsoft Edge WebView2 Runtime is not available! ähnelt.
+ /// Looks up a localized string similar to Microsoft Edge WebView2 Runtime is not available!.
///
public static string MicrosoftEdgeWebView2RuntimeIsNotAvailable {
get {
@@ -5650,7 +5676,7 @@ public static string MicrosoftEdgeWebView2RuntimeIsNotAvailable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Microsoft.Windows.SDK.Contracts is required for this feature but not available on this system (e.g. on Windows Server). ähnelt.
+ /// Looks up a localized string similar to Microsoft.Windows.SDK.Contracts is required for this feature but not available on this system (e.g. on Windows Server)..
///
public static string MicrosoftWindowsSDKContractsIsNotAvailable {
get {
@@ -5659,7 +5685,7 @@ public static string MicrosoftWindowsSDKContractsIsNotAvailable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Migrate ähnelt.
+ /// Looks up a localized string similar to Migrate.
///
public static string Migrate {
get {
@@ -5668,7 +5694,7 @@ public static string Migrate {
}
///
- /// 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 {
@@ -5677,7 +5703,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 {
@@ -5686,7 +5712,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 {
@@ -5695,7 +5721,7 @@ public static string Minimum {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Mobile ähnelt.
+ /// Looks up a localized string similar to Mobile.
///
public static string Mobile {
get {
@@ -5704,7 +5730,7 @@ public static string Mobile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Mode ähnelt.
+ /// Looks up a localized string similar to Mode.
///
public static string Mode {
get {
@@ -5713,7 +5739,7 @@ public static string Mode {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Model ähnelt.
+ /// Looks up a localized string similar to Model.
///
public static string Model {
get {
@@ -5722,7 +5748,7 @@ public static string Model {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Move ähnelt.
+ /// Looks up a localized string similar to Move.
///
public static string Move {
get {
@@ -5731,7 +5757,7 @@ public static string Move {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Move & Restart ähnelt.
+ /// Looks up a localized string similar to Move & Restart.
///
public static string MoveAndRestart {
get {
@@ -5740,7 +5766,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 {
@@ -5749,7 +5775,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 {
@@ -5758,7 +5784,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 {
@@ -5767,7 +5793,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 {
@@ -5776,7 +5802,7 @@ public static string Name {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die NetBIOS ähnelt.
+ /// Looks up a localized string similar to NetBIOS.
///
public static string NetBIOS {
get {
@@ -5785,7 +5811,7 @@ public static string NetBIOS {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die NetBIOS scan is disabled! ähnelt.
+ /// Looks up a localized string similar to NetBIOS scan is disabled!.
///
public static string NetBIOSIsDisabled {
get {
@@ -5794,7 +5820,7 @@ public static string NetBIOSIsDisabled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die NetBIOS reachable ähnelt.
+ /// Looks up a localized string similar to NetBIOS reachable.
///
public static string NetBIOSReachable {
get {
@@ -5803,7 +5829,7 @@ public static string NetBIOSReachable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Network ähnelt.
+ /// Looks up a localized string similar to Network.
///
public static string Network {
get {
@@ -5812,7 +5838,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 {
@@ -5821,7 +5847,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 {
@@ -5830,7 +5856,7 @@ public static string NetworkConnectionsDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Network connection type ähnelt.
+ /// Looks up a localized string similar to Network connection type.
///
public static string NetworkConnectionType {
get {
@@ -5839,7 +5865,7 @@ public static string NetworkConnectionType {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Network Interface ähnelt.
+ /// Looks up a localized string similar to Network Interface.
///
public static string NetworkInterface {
get {
@@ -5848,7 +5874,7 @@ public static string NetworkInterface {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Network kind ähnelt.
+ /// Looks up a localized string similar to Network kind.
///
public static string NetworkKind {
get {
@@ -5857,7 +5883,7 @@ public static string NetworkKind {
}
///
- /// 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 {
@@ -5866,7 +5892,7 @@ public static string NetworkLocationCannotBeReachedMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die To analyze network packets, the application must be started with elevated rights! ähnelt.
+ /// Looks up a localized string similar to To analyze network packets, the application must be started with elevated rights!.
///
public static string NetworkPacketsCaptureAdminMessage {
get {
@@ -5875,7 +5901,7 @@ public static string NetworkPacketsCaptureAdminMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Networks ähnelt.
+ /// Looks up a localized string similar to Networks.
///
public static string Networks {
get {
@@ -5884,7 +5910,7 @@ public static string Networks {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Network time ähnelt.
+ /// Looks up a localized string similar to Network time.
///
public static string NetworkTime {
get {
@@ -5893,7 +5919,7 @@ public static string NetworkTime {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Network unavailable! ähnelt.
+ /// Looks up a localized string similar to Network unavailable!.
///
public static string NetworkUnavailable {
get {
@@ -5902,7 +5928,7 @@ public static string NetworkUnavailable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Network usage ähnelt.
+ /// Looks up a localized string similar to Network usage.
///
public static string NetworkUsage {
get {
@@ -5911,7 +5937,7 @@ public static string NetworkUsage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die New connection... ähnelt.
+ /// Looks up a localized string similar to New connection....
///
public static string NewConnectionDots {
get {
@@ -5920,7 +5946,7 @@ public static string NewConnectionDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die New password ähnelt.
+ /// Looks up a localized string similar to New password.
///
public static string NewPassword {
get {
@@ -5929,7 +5955,7 @@ public static string NewPassword {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die New subnet mask ähnelt.
+ /// Looks up a localized string similar to New subnet mask.
///
public static string NewSubnetMask {
get {
@@ -5938,7 +5964,7 @@ public static string NewSubnetMask {
}
///
- /// 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 {
@@ -5947,7 +5973,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 {
@@ -5956,7 +5982,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 {
@@ -5965,7 +5991,7 @@ public static string No {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die No A dns records resolved for "{0}"! ähnelt.
+ /// Looks up a localized string similar to No A dns records resolved for "{0}"!.
///
public static string NoADNSRecordsResolvedForXXXMessage {
get {
@@ -5974,7 +6000,7 @@ public static string NoADNSRecordsResolvedForXXXMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die No discovery protocol packages received! ähnelt.
+ /// Looks up a localized string similar to No discovery protocol packages received!.
///
public static string NoDiscoveryProtocolPackagesReceived {
get {
@@ -5983,7 +6009,7 @@ public static string NoDiscoveryProtocolPackagesReceived {
}
///
- /// 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 {
@@ -5992,7 +6018,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 {
@@ -6001,7 +6027,7 @@ public static string NoEnabledNetworkAdaptersFound {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die No matching commands! ähnelt.
+ /// Looks up a localized string similar to No matching commands!.
///
public static string NoMatchingCommands {
get {
@@ -6010,7 +6036,7 @@ public static string NoMatchingCommands {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die No open ports found! ähnelt.
+ /// Looks up a localized string similar to No open ports found!.
///
public static string NoOpenPortsFound {
get {
@@ -6019,7 +6045,7 @@ public static string NoOpenPortsFound {
}
///
- /// 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 {
@@ -6028,8 +6054,8 @@ 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 {
@@ -6038,7 +6064,7 @@ public static string NoProfilesFoundCreateOne {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die No PTR dns record resolved for "{0}"! ähnelt.
+ /// Looks up a localized string similar to No PTR dns record resolved for "{0}"!.
///
public static string NoPTRDNSRecordResolvedForXXXMessage {
get {
@@ -6047,7 +6073,7 @@ public static string NoPTRDNSRecordResolvedForXXXMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die No reachable hosts found! ähnelt.
+ /// Looks up a localized string similar to No reachable hosts found!.
///
public static string NoReachableHostsFound {
get {
@@ -6056,7 +6082,7 @@ public static string NoReachableHostsFound {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Notation ähnelt.
+ /// Looks up a localized string similar to Notation.
///
public static string Notation {
get {
@@ -6065,7 +6091,7 @@ public static string Notation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die (not changed) ähnelt.
+ /// Looks up a localized string similar to (not changed).
///
public static string NotChanged {
get {
@@ -6074,7 +6100,7 @@ public static string NotChanged {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Note ähnelt.
+ /// Looks up a localized string similar to Note.
///
public static string Note {
get {
@@ -6083,7 +6109,7 @@ public static string Note {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Nothing found! ähnelt.
+ /// Looks up a localized string similar to Nothing found!.
///
public static string NothingFound {
get {
@@ -6092,7 +6118,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 {
@@ -6101,7 +6127,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 {
@@ -6110,7 +6136,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 {
@@ -6119,7 +6145,7 @@ public static string NoValidFileFoundToImport {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die A valid path to PowerShell should end with "pwsh.exe" or "powershell.exe"! ähnelt.
+ /// Looks up a localized string similar to A valid path to PowerShell should end with "pwsh.exe" or "powershell.exe"!.
///
public static string NoValidPowerShellPath {
get {
@@ -6128,7 +6154,7 @@ public static string NoValidPowerShellPath {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die A valid path to PuTTY should end with "PuTTY.exe"! ähnelt.
+ /// Looks up a localized string similar to A valid path to PuTTY should end with "PuTTY.exe"!.
///
public static string NoValidPuTTYPath {
get {
@@ -6137,7 +6163,7 @@ public static string NoValidPuTTYPath {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die A valid path to TigerVNC should end with "vncviewer-*.exe" or "vncviewer64-*.exe"! ähnelt.
+ /// Looks up a localized string similar to A valid path to TigerVNC should end with "vncviewer-*.exe" or "vncviewer64-*.exe"!.
///
public static string NoValidTigerVNCPath {
get {
@@ -6146,7 +6172,7 @@ public static string NoValidTigerVNCPath {
}
///
- /// 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 {
@@ -6155,7 +6181,7 @@ public static string NoVendorFoundCheckYourInput {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die No WiFi adapters found! ähnelt.
+ /// Looks up a localized string similar to No WiFi adapters found!.
///
public static string NoWiFiAdaptersFound {
get {
@@ -6164,7 +6190,7 @@ public static string NoWiFiAdaptersFound {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die No WiFi networks found! ähnelt.
+ /// Looks up a localized string similar to No WiFi networks found!.
///
public static string NoWiFiNetworksFound {
get {
@@ -6173,7 +6199,7 @@ public static string NoWiFiNetworksFound {
}
///
- /// 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 {
@@ -6182,7 +6208,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 {
@@ -6191,7 +6217,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 {
@@ -6200,7 +6226,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 {
@@ -6209,7 +6235,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 {
@@ -6218,7 +6244,7 @@ public static string Off {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Official ähnelt.
+ /// Looks up a localized string similar to Official.
///
public static string Official {
get {
@@ -6227,7 +6253,7 @@ public static string Official {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Offset ähnelt.
+ /// Looks up a localized string similar to Offset.
///
public static string Offset {
get {
@@ -6236,7 +6262,7 @@ public static string Offset {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die OID ähnelt.
+ /// Looks up a localized string similar to OID.
///
public static string OID {
get {
@@ -6245,7 +6271,7 @@ public static string OID {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die OID profiles ähnelt.
+ /// Looks up a localized string similar to OID profiles.
///
public static string OIDProfiles {
get {
@@ -6254,7 +6280,7 @@ public static string OIDProfiles {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die OK ähnelt.
+ /// Looks up a localized string similar to OK.
///
public static string OK {
get {
@@ -6263,7 +6289,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 {
@@ -6272,7 +6298,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 {
@@ -6281,7 +6307,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 {
@@ -6290,7 +6316,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 {
@@ -6299,7 +6325,7 @@ public static string OnlyWhenUsingTheFullScreen {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Open ähnelt.
+ /// Looks up a localized string similar to Open.
///
public static string Open {
get {
@@ -6308,7 +6334,7 @@ public static string Open {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Open documentation ähnelt.
+ /// Looks up a localized string similar to Open documentation.
///
public static string OpenDocumentation {
get {
@@ -6317,7 +6343,7 @@ public static string OpenDocumentation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Open license ähnelt.
+ /// Looks up a localized string similar to Open license.
///
public static string OpenLicense {
get {
@@ -6326,7 +6352,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 {
@@ -6335,7 +6361,7 @@ public static string OpenLocation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Open OID profiles... ähnelt.
+ /// Looks up a localized string similar to Open OID profiles....
///
public static string OpenOIDProfilesDots {
get {
@@ -6344,7 +6370,7 @@ public static string OpenOIDProfilesDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Open port profiles... ähnelt.
+ /// Looks up a localized string similar to Open port profiles....
///
public static string OpenPortProfilesDots {
get {
@@ -6353,7 +6379,7 @@ public static string OpenPortProfilesDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Open project ähnelt.
+ /// Looks up a localized string similar to Open project.
///
public static string OpenProject {
get {
@@ -6362,7 +6388,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 {
@@ -6371,7 +6397,7 @@ public static string OpenSettings {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Open settings... ähnelt.
+ /// Looks up a localized string similar to Open settings....
///
public static string OpenSettingsDots {
get {
@@ -6380,7 +6406,7 @@ public static string OpenSettingsDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Open website ähnelt.
+ /// Looks up a localized string similar to Open website.
///
public static string OpenWebsite {
get {
@@ -6389,7 +6415,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 {
@@ -6398,7 +6424,7 @@ public static string Orange {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Organization ähnelt.
+ /// Looks up a localized string similar to Organization.
///
public static string Organization {
get {
@@ -6407,7 +6433,7 @@ public static string Organization {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die OUI ähnelt.
+ /// Looks up a localized string similar to OUI.
///
public static string OUI {
get {
@@ -6416,7 +6442,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 {
@@ -6425,7 +6451,7 @@ public static string Override {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Override default settings ähnelt.
+ /// Looks up a localized string similar to Override default settings.
///
public static string OverrideDefaultSettings {
get {
@@ -6434,7 +6460,7 @@ public static string OverrideDefaultSettings {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Overwrite ähnelt.
+ /// Looks up a localized string similar to Overwrite.
///
public static string Overwrite {
get {
@@ -6443,7 +6469,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 {
@@ -6452,7 +6478,7 @@ public static string OverwriteQuestion {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Packet loss ähnelt.
+ /// Looks up a localized string similar to Packet loss.
///
public static string PacketLoss {
get {
@@ -6461,7 +6487,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 {
@@ -6470,7 +6496,7 @@ public static string PacketsTransmitted {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Parameter ähnelt.
+ /// Looks up a localized string similar to Parameter.
///
public static string Parameter {
get {
@@ -6479,7 +6505,7 @@ public static string Parameter {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Password ähnelt.
+ /// Looks up a localized string similar to Password.
///
public static string Password {
get {
@@ -6488,7 +6514,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 {
@@ -6497,7 +6523,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 {
@@ -6506,7 +6532,7 @@ public static string Paste {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Patch ähnelt.
+ /// Looks up a localized string similar to Patch.
///
public static string Patch {
get {
@@ -6515,7 +6541,7 @@ public static string Patch {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Path ähnelt.
+ /// Looks up a localized string similar to Path.
///
public static string Path {
get {
@@ -6524,7 +6550,7 @@ public static string Path {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Pause ähnelt.
+ /// Looks up a localized string similar to Pause.
///
public static string Pause {
get {
@@ -6533,7 +6559,7 @@ public static string Pause {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Performance ähnelt.
+ /// Looks up a localized string similar to Performance.
///
public static string Performance {
get {
@@ -6542,7 +6568,7 @@ public static string Performance {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Persistent bitmap caching ähnelt.
+ /// Looks up a localized string similar to Persistent bitmap caching.
///
public static string PersistentBitmapCaching {
get {
@@ -6551,7 +6577,7 @@ public static string PersistentBitmapCaching {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Petabits ähnelt.
+ /// Looks up a localized string similar to Petabits.
///
public static string Petabits {
get {
@@ -6560,7 +6586,7 @@ public static string Petabits {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Petabytes ähnelt.
+ /// Looks up a localized string similar to Petabytes.
///
public static string Petabytes {
get {
@@ -6569,7 +6595,7 @@ public static string Petabytes {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Phy kind ähnelt.
+ /// Looks up a localized string similar to Phy kind.
///
public static string PhyKind {
get {
@@ -6578,7 +6604,7 @@ public static string PhyKind {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die PhysicalAddress ähnelt.
+ /// Looks up a localized string similar to PhysicalAddress.
///
public static string PhysicalAddress {
get {
@@ -6587,7 +6613,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 {
@@ -6596,7 +6622,7 @@ public static string Ping {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Ping details ähnelt.
+ /// Looks up a localized string similar to Ping details.
///
public static string PingDetails {
get {
@@ -6605,7 +6631,7 @@ public static string PingDetails {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Ping Monitor ähnelt.
+ /// Looks up a localized string similar to Ping Monitor.
///
public static string PingMonitor {
get {
@@ -6614,7 +6640,7 @@ public static string PingMonitor {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Ping status ähnelt.
+ /// Looks up a localized string similar to Ping status.
///
public static string PingStatus {
get {
@@ -6623,7 +6649,7 @@ public static string PingStatus {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Pink ähnelt.
+ /// Looks up a localized string similar to Pink.
///
public static string Pink {
get {
@@ -6632,7 +6658,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 {
@@ -6641,7 +6667,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 {
@@ -6650,7 +6676,7 @@ public static string Portable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Port description ähnelt.
+ /// Looks up a localized string similar to Port description.
///
public static string PortDescription {
get {
@@ -6659,7 +6685,7 @@ public static string PortDescription {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Port or service ähnelt.
+ /// Looks up a localized string similar to Port or service.
///
public static string PortOrService {
get {
@@ -6668,7 +6694,7 @@ public static string PortOrService {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Port profiles ähnelt.
+ /// Looks up a localized string similar to Port profiles.
///
public static string PortProfiles {
get {
@@ -6677,7 +6703,7 @@ public static string PortProfiles {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Ports ähnelt.
+ /// Looks up a localized string similar to Ports.
///
public static string Ports {
get {
@@ -6686,7 +6712,7 @@ public static string Ports {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Port scan is disabled! ähnelt.
+ /// Looks up a localized string similar to Port scan is disabled!.
///
public static string PortScanIsDisabled {
get {
@@ -6695,7 +6721,7 @@ public static string PortScanIsDisabled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Port Scanner ähnelt.
+ /// Looks up a localized string similar to Port Scanner.
///
public static string PortScanner {
get {
@@ -6704,7 +6730,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 {
@@ -6713,7 +6739,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 {
@@ -6722,7 +6748,7 @@ public static string PortState_Open {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Timed out ähnelt.
+ /// Looks up a localized string similar to Timed out.
///
public static string PortState_TimedOut {
get {
@@ -6731,7 +6757,7 @@ public static string PortState_TimedOut {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Port status ähnelt.
+ /// Looks up a localized string similar to Port status.
///
public static string PortStatus {
get {
@@ -6740,7 +6766,7 @@ public static string PortStatus {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die PowerShell ähnelt.
+ /// Looks up a localized string similar to PowerShell.
///
public static string PowerShell {
get {
@@ -6749,7 +6775,7 @@ public static string PowerShell {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The color of the PowerShell console can be changed to the application theme under Settings > General > Appearance ähnelt.
+ /// Looks up a localized string similar to The color of the PowerShell console can be changed to the application theme under Settings > General > Appearance.
///
public static string PowerShellConsoleColorCanBeChangedUnderSettingsGeneralApperance {
get {
@@ -6758,7 +6784,7 @@ public static string PowerShellConsoleColorCanBeChangedUnderSettingsGeneralApper
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die PowerShell process has ended! ähnelt.
+ /// Looks up a localized string similar to PowerShell process has ended!.
///
public static string PowerShellProcessHasEnded {
get {
@@ -6767,7 +6793,7 @@ public static string PowerShellProcessHasEnded {
}
///
- /// 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 {
@@ -6776,7 +6802,7 @@ public static string PreferredProtocolWhenResolvingHostname {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Pre-shared key ähnelt.
+ /// Looks up a localized string similar to Pre-shared key.
///
public static string PreSharedKey {
get {
@@ -6785,7 +6811,7 @@ public static string PreSharedKey {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Preview ähnelt.
+ /// Looks up a localized string similar to Preview.
///
public static string Preview {
get {
@@ -6794,7 +6820,7 @@ public static string Preview {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Primary DNS server ähnelt.
+ /// Looks up a localized string similar to Primary DNS server.
///
public static string PrimaryDNSServer {
get {
@@ -6803,7 +6829,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 {
@@ -6812,7 +6838,7 @@ public static string Priv {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Privacy ähnelt.
+ /// Looks up a localized string similar to Privacy.
///
public static string Privacy {
get {
@@ -6821,7 +6847,7 @@ public static string Privacy {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Private key file ähnelt.
+ /// Looks up a localized string similar to Private key file.
///
public static string PrivateKeyFile {
get {
@@ -6830,7 +6856,7 @@ public static string PrivateKeyFile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Process ID ähnelt.
+ /// Looks up a localized string similar to Process ID.
///
public static string ProcessID {
get {
@@ -6839,7 +6865,7 @@ public static string ProcessID {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Process name ähnelt.
+ /// Looks up a localized string similar to Process name.
///
public static string ProcessName {
get {
@@ -6848,7 +6874,7 @@ public static string ProcessName {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Process path ähnelt.
+ /// Looks up a localized string similar to Process path.
///
public static string ProcessPath {
get {
@@ -6857,7 +6883,7 @@ public static string ProcessPath {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profile ähnelt.
+ /// Looks up a localized string similar to Profile.
///
public static string Profile {
get {
@@ -6866,9 +6892,9 @@ public static string Profile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profile files are encrypted on disk using AES with a key size of 256 bits and a block size of 128 bits in CBC mode. The encryption key is derived from a master password using Rfc2898DeriveBytes (PBKDF2) with 1,000,000 iterations. At runtime, passwords are stored as SecureString once the profile file is loaded. For some functions, the password must be converted to a normal string and remains unencrypted in memory until the garbage collector cleans them up.
+ /// Looks up a localized string similar to Profile files are encrypted on disk using AES with a key size of 256 bits and a block size of 128 bits in CBC mode. The encryption key is derived from a master password using Rfc2898DeriveBytes (PBKDF2) with 1,000,000 iterations. At runtime, passwords are stored as SecureString once the profile file is loaded. For some functions, the password must be converted to a normal string and remains unencrypted in memory until the garbage collector cleans them up.
///
- ///First make a backup copy of your profile files be [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt.
+ ///First make a backup copy of your profile files be [rest of string was truncated]";.
///
public static string ProfileEncryptionDisclaimer {
get {
@@ -6877,7 +6903,7 @@ public static string ProfileEncryptionDisclaimer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profile file ähnelt.
+ /// Looks up a localized string similar to Profile file.
///
public static string ProfileFile {
get {
@@ -6886,7 +6912,7 @@ public static string ProfileFile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profile file could not be loaded! ähnelt.
+ /// Looks up a localized string similar to Profile file could not be loaded!.
///
public static string ProfileFileCouldNotBeLoaded {
get {
@@ -6895,13 +6921,13 @@ public static string ProfileFileCouldNotBeLoaded {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The profile file could not be loaded and may be corrupted. You can try to restore the file from a backup or delete it.
+ /// Looks up a localized string similar to The profile file could not be loaded and may be corrupted. You can try to restore the file from a backup or delete it.
///
///If this happens unexpectedly or after an update, please report the error on GitHub.
///
///
///Error message:
- ///"{0}" ähnelt.
+ ///"{0}".
///
public static string ProfileFileCouldNotBeLoadedMessage {
get {
@@ -6910,7 +6936,7 @@ public static string ProfileFileCouldNotBeLoadedMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profile files ähnelt.
+ /// Looks up a localized string similar to Profile files.
///
public static string ProfileFiles {
get {
@@ -6919,7 +6945,7 @@ public static string ProfileFiles {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Application ähnelt.
+ /// Looks up a localized string similar to Application.
///
public static string ProfileGroup_Application {
get {
@@ -6928,7 +6954,7 @@ public static string ProfileGroup_Application {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt.
+ /// Looks up a localized string similar to General.
///
public static string ProfileGroup_General {
get {
@@ -6937,7 +6963,7 @@ public static string ProfileGroup_General {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt.
+ /// Looks up a localized string similar to General.
///
public static string ProfileName_General {
get {
@@ -6946,7 +6972,7 @@ public static string ProfileName_General {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profile name already exists! ähnelt.
+ /// Looks up a localized string similar to Profile name already exists!.
///
public static string ProfileNameAlreadyExists {
get {
@@ -6955,7 +6981,7 @@ public static string ProfileNameAlreadyExists {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profiles ähnelt.
+ /// Looks up a localized string similar to Profiles.
///
public static string Profiles {
get {
@@ -6964,7 +6990,7 @@ public static string Profiles {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profiles and regions to synchronize ähnelt.
+ /// Looks up a localized string similar to Profiles and regions to synchronize.
///
public static string ProfilesAndRegionsToSync {
get {
@@ -6973,7 +6999,7 @@ public static string ProfilesAndRegionsToSync {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profiles reloaded ähnelt.
+ /// Looks up a localized string similar to Profiles reloaded.
///
public static string ProfilesReloaded {
get {
@@ -6982,7 +7008,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 {
@@ -6991,7 +7017,7 @@ public static string ProfileWithThisNameAlreadyExists {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Program ähnelt.
+ /// Looks up a localized string similar to Program.
///
public static string Program {
get {
@@ -7000,7 +7026,7 @@ public static string Program {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Protocol ähnelt.
+ /// Looks up a localized string similar to Protocol.
///
public static string Protocol {
get {
@@ -7009,7 +7035,7 @@ public static string Protocol {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Proxy ähnelt.
+ /// Looks up a localized string similar to Proxy.
///
public static string Proxy {
get {
@@ -7018,7 +7044,7 @@ public static string Proxy {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die PTR dns record resolved for "{0}"! ähnelt.
+ /// Looks up a localized string similar to PTR dns record resolved for "{0}"!.
///
public static string PTRDNSRecordResolvedForXXXMessage {
get {
@@ -7027,7 +7053,7 @@ public static string PTRDNSRecordResolvedForXXXMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die PTR record ähnelt.
+ /// Looks up a localized string similar to PTR record.
///
public static string PTRRecord {
get {
@@ -7036,8 +7062,8 @@ public static string PTRRecord {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Public IP address check
- ///is disabled! ähnelt.
+ /// Looks up a localized string similar to Public IP address check
+ ///is disabled!.
///
public static string PublicIPAddressCheckIsDisabled {
get {
@@ -7046,7 +7072,7 @@ public static string PublicIPAddressCheckIsDisabled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Public IPv4 address ähnelt.
+ /// Looks up a localized string similar to Public IPv4 address.
///
public static string PublicIPv4Address {
get {
@@ -7055,7 +7081,7 @@ public static string PublicIPv4Address {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Public IPv6 address ähnelt.
+ /// Looks up a localized string similar to Public IPv6 address.
///
public static string PublicIPv6Address {
get {
@@ -7064,7 +7090,7 @@ public static string PublicIPv6Address {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Purple ähnelt.
+ /// Looks up a localized string similar to Purple.
///
public static string Purple {
get {
@@ -7073,7 +7099,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 {
@@ -7082,7 +7108,7 @@ public static string PuTTY {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Session log ähnelt.
+ /// Looks up a localized string similar to Session log.
///
public static string PuTTYLogMode_SessionLog {
get {
@@ -7091,7 +7117,7 @@ public static string PuTTYLogMode_SessionLog {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SSH log ähnelt.
+ /// Looks up a localized string similar to SSH log.
///
public static string PuTTYLogMode_SSHLog {
get {
@@ -7100,7 +7126,7 @@ public static string PuTTYLogMode_SSHLog {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SSH and Raw log ähnelt.
+ /// Looks up a localized string similar to SSH and Raw log.
///
public static string PuTTYLogMode_SSHRawLog {
get {
@@ -7109,7 +7135,7 @@ public static string PuTTYLogMode_SSHRawLog {
}
///
- /// 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 {
@@ -7118,7 +7144,7 @@ public static string PuTTYProcessHasEnded {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Query ähnelt.
+ /// Looks up a localized string similar to Query.
///
public static string Query {
get {
@@ -7127,7 +7153,7 @@ public static string Query {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Query class ähnelt.
+ /// Looks up a localized string similar to Query class.
///
public static string QueryClass {
get {
@@ -7136,7 +7162,7 @@ public static string QueryClass {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Questions ähnelt.
+ /// Looks up a localized string similar to Questions.
///
public static string Questions {
get {
@@ -7145,7 +7171,7 @@ public static string Questions {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Rate limit reached! Try again in {0} seconds... ähnelt.
+ /// Looks up a localized string similar to Rate limit reached! Try again in {0} seconds....
///
public static string RateLimitReachedTryAgainInXSeconds {
get {
@@ -7154,7 +7180,7 @@ public static string RateLimitReachedTryAgainInXSeconds {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die RAW ähnelt.
+ /// Looks up a localized string similar to RAW.
///
public static string RAW {
get {
@@ -7163,7 +7189,7 @@ public static string RAW {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Received ähnelt.
+ /// Looks up a localized string similar to Received.
///
public static string Received {
get {
@@ -7172,7 +7198,7 @@ public static string Received {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Received / Lost ähnelt.
+ /// Looks up a localized string similar to Received / Lost.
///
public static string ReceivedLost {
get {
@@ -7181,7 +7207,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 {
@@ -7190,7 +7216,7 @@ public static string Reconnect {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Reconnect if the connection is dropped ähnelt.
+ /// Looks up a localized string similar to Reconnect if the connection is dropped.
///
public static string ReconnectIfTheConnectionIsDropped {
get {
@@ -7199,7 +7225,7 @@ public static string ReconnectIfTheConnectionIsDropped {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Recursion ähnelt.
+ /// Looks up a localized string similar to Recursion.
///
public static string Recursion {
get {
@@ -7208,7 +7234,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 {
@@ -7217,7 +7243,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 {
@@ -7226,7 +7252,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 {
@@ -7235,7 +7261,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 {
@@ -7244,7 +7270,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 {
@@ -7253,7 +7279,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 {
@@ -7262,7 +7288,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 {
@@ -7271,7 +7297,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 {
@@ -7280,7 +7306,7 @@ public static string Refresh {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Region ähnelt.
+ /// Looks up a localized string similar to Region.
///
public static string Region {
get {
@@ -7289,7 +7315,7 @@ public static string Region {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Release ähnelt.
+ /// Looks up a localized string similar to Release.
///
public static string Release {
get {
@@ -7298,7 +7324,7 @@ public static string Release {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Release & Renew ähnelt.
+ /// Looks up a localized string similar to Release & Renew.
///
public static string ReleaseRenew {
get {
@@ -7307,7 +7333,7 @@ public static string ReleaseRenew {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Reload ähnelt.
+ /// Looks up a localized string similar to Reload.
///
public static string Reload {
get {
@@ -7316,7 +7342,7 @@ public static string Reload {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remaining time ähnelt.
+ /// Looks up a localized string similar to Remaining time.
///
public static string RemainingTime {
get {
@@ -7325,7 +7351,7 @@ public static string RemainingTime {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remote audio ähnelt.
+ /// Looks up a localized string similar to Remote audio.
///
public static string RemoteAudio {
get {
@@ -7334,7 +7360,7 @@ public static string RemoteAudio {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remote audio playback ähnelt.
+ /// Looks up a localized string similar to Remote audio playback.
///
public static string RemoteAudioPlayback {
get {
@@ -7343,7 +7369,7 @@ public static string RemoteAudioPlayback {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remote audio recording ähnelt.
+ /// Looks up a localized string similar to Remote audio recording.
///
public static string RemoteAudioRecording {
get {
@@ -7352,7 +7378,7 @@ public static string RemoteAudioRecording {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remote console ähnelt.
+ /// Looks up a localized string similar to Remote console.
///
public static string RemoteConsole {
get {
@@ -7361,7 +7387,7 @@ public static string RemoteConsole {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop ähnelt.
+ /// Looks up a localized string similar to Remote Desktop.
///
public static string RemoteDesktop {
get {
@@ -7370,7 +7396,7 @@ public static string RemoteDesktop {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Do not record ähnelt.
+ /// Looks up a localized string similar to Do not record.
///
public static string RemoteDesktopAudioCaptureRedirectionMode_DoNotRecord {
get {
@@ -7379,7 +7405,7 @@ public static string RemoteDesktopAudioCaptureRedirectionMode_DoNotRecord {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Record from this computer ähnelt.
+ /// Looks up a localized string similar to Record from this computer.
///
public static string RemoteDesktopAudioCaptureRedirectionMode_RecordFromThisComputer {
get {
@@ -7388,7 +7414,7 @@ public static string RemoteDesktopAudioCaptureRedirectionMode_RecordFromThisComp
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Do not play ähnelt.
+ /// Looks up a localized string similar to Do not play.
///
public static string RemoteDesktopAudioRedirectionMode_DoNotPlay {
get {
@@ -7397,7 +7423,7 @@ public static string RemoteDesktopAudioRedirectionMode_DoNotPlay {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Play on remote computer ähnelt.
+ /// Looks up a localized string similar to Play on remote computer.
///
public static string RemoteDesktopAudioRedirectionMode_PlayOnRemoteComputer {
get {
@@ -7406,7 +7432,7 @@ public static string RemoteDesktopAudioRedirectionMode_PlayOnRemoteComputer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Play on this computer ähnelt.
+ /// Looks up a localized string similar to Play on this computer.
///
public static string RemoteDesktopAudioRedirectionMode_PlayOnThisComputer {
get {
@@ -7415,7 +7441,7 @@ public static string RemoteDesktopAudioRedirectionMode_PlayOnThisComputer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer due to one of the following reasons: 1) The requested Remote Desktop Gateway server address and the server SSL certificate subject name do not match. 2) The certificate is expired or revoked. 3) The certificate root authority does not trust the certificate. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer due to one of the following reasons: 1) The requested Remote Desktop Gateway server address and the server SSL certificate subject name do not match. 2) The certificate is expired or revoked. 3) The certificate root authority does not trust the certificate. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331651 {
get {
@@ -7424,7 +7450,7 @@ public static string RemoteDesktopDisconnectReason_50331651 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die This computer can't verify the identity of the RD Gateway "". It's not safe to connect to servers that can't be identified. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to This computer can't verify the identity of the RD Gateway "". It's not safe to connect to servers that can't be identified. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331653 {
get {
@@ -7433,7 +7459,7 @@ public static string RemoteDesktopDisconnectReason_50331653 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server address requested and the certificate subject name do not match. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server address requested and the certificate subject name do not match. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331654 {
get {
@@ -7442,7 +7468,7 @@ public static string RemoteDesktopDisconnectReason_50331654 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server's certificate has expired or has been revoked. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server's certificate has expired or has been revoked. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331655 {
get {
@@ -7451,7 +7477,7 @@ public static string RemoteDesktopDisconnectReason_50331655 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die An error occurred while sending data to the Remote Desktop Gateway server. The server is temporarily unavailable or a network connection is down. Try again later, or contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to An error occurred while sending data to the Remote Desktop Gateway server. The server is temporarily unavailable or a network connection is down. Try again later, or contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331657 {
get {
@@ -7460,7 +7486,7 @@ public static string RemoteDesktopDisconnectReason_50331657 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die An error occurred while receiving data from the Remote Desktop Gateway server. Either the server is temporarily unavailable or a network connection is down. Try again later, or contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to An error occurred while receiving data from the Remote Desktop Gateway server. Either the server is temporarily unavailable or a network connection is down. Try again later, or contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331658 {
get {
@@ -7469,7 +7495,7 @@ public static string RemoteDesktopDisconnectReason_50331658 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server address is unreachable or incorrect. Type a valid Remote Desktop Gateway server address. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server address is unreachable or incorrect. Type a valid Remote Desktop Gateway server address..
///
public static string RemoteDesktopDisconnectReason_50331660 {
get {
@@ -7478,7 +7504,7 @@ public static string RemoteDesktopDisconnectReason_50331660 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server is temporarily unavailable. Try reconnecting later or contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server is temporarily unavailable. Try reconnecting later or contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331661 {
get {
@@ -7487,7 +7513,7 @@ public static string RemoteDesktopDisconnectReason_50331661 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server is running low on server resources and is temporarily unavailable. Try reconnecting later or contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server is running low on server resources and is temporarily unavailable. Try reconnecting later or contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331663 {
get {
@@ -7496,7 +7522,7 @@ public static string RemoteDesktopDisconnectReason_50331663 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The Remote Desktop Gateway server has ended the connection. Try reconnecting later or contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to The Remote Desktop Gateway server has ended the connection. Try reconnecting later or contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331672 {
get {
@@ -7505,7 +7531,7 @@ public static string RemoteDesktopDisconnectReason_50331672 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The Remote Desktop Gateway server administrator has ended the connection. Try reconnecting later or contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to The Remote Desktop Gateway server administrator has ended the connection. Try reconnecting later or contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331673 {
get {
@@ -7514,7 +7540,7 @@ public static string RemoteDesktopDisconnectReason_50331673 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop can't connect to the remote computer "" for one of these reasons: 1) Your user account is not listed in the RD Gateway's permission list 2) You might have specified the remote computer in NetBIOS format (for example, computer1), but the RD Gateway is expecting an FQDN or IP address format (for example, computer1.fabrikam.com or 157.60.0.1). Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Remote Desktop can't connect to the remote computer "" for one of these reasons: 1) Your user account is not listed in the RD Gateway's permission list 2) You might have specified the remote computer in NetBIOS format (for example, computer1), but the RD Gateway is expecting an FQDN or IP address format (for example, computer1.fabrikam.com or 157.60.0.1). Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331675 {
get {
@@ -7523,7 +7549,7 @@ public static string RemoteDesktopDisconnectReason_50331675 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop can't connect to the remote computer "" for one of these reasons: 1) Your user account is not authorized to access the RD Gateway "" 2) Your computer is not authorized to access the RD Gateway "" 3) You are using an incompatible authentication method (for example, the RD Gateway might be expecting a smart card but you provided a password) Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Remote Desktop can't connect to the remote computer "" for one of these reasons: 1) Your user account is not authorized to access the RD Gateway "" 2) Your computer is not authorized to access the RD Gateway "" 3) You are using an incompatible authentication method (for example, the RD Gateway might be expecting a smart card but you provided a password) Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331676 {
get {
@@ -7532,7 +7558,7 @@ public static string RemoteDesktopDisconnectReason_50331676 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because your network administrator has restricted access to this RD Gateway server. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because your network administrator has restricted access to this RD Gateway server. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331679 {
get {
@@ -7541,7 +7567,7 @@ public static string RemoteDesktopDisconnectReason_50331679 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the web proxy server requires authentication. To allow unauthenticated traffic to an RD Gateway server through your web proxy server, contact your network administrator. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the web proxy server requires authentication. To allow unauthenticated traffic to an RD Gateway server through your web proxy server, contact your network administrator..
///
public static string RemoteDesktopDisconnectReason_50331680 {
get {
@@ -7550,7 +7576,7 @@ public static string RemoteDesktopDisconnectReason_50331680 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server reached its maximum allowed connections. Try reconnecting later or contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server reached its maximum allowed connections. Try reconnecting later or contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331682 {
get {
@@ -7559,7 +7585,7 @@ public static string RemoteDesktopDisconnectReason_50331682 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server does not support the request. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server does not support the request. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331683 {
get {
@@ -7568,7 +7594,7 @@ public static string RemoteDesktopDisconnectReason_50331683 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the client does not support one of the Remote Desktop Gateway's capabilities. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the client does not support one of the Remote Desktop Gateway's capabilities. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331684 {
get {
@@ -7577,7 +7603,7 @@ public static string RemoteDesktopDisconnectReason_50331684 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server and this computer are incompatible. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server and this computer are incompatible. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331685 {
get {
@@ -7586,7 +7612,7 @@ public static string RemoteDesktopDisconnectReason_50331685 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because no certificate was configured to use at the Remote Desktop Gateway server. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because no certificate was configured to use at the Remote Desktop Gateway server. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331688 {
get {
@@ -7595,7 +7621,7 @@ public static string RemoteDesktopDisconnectReason_50331688 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the RD Gateway server that you are trying to connect to is not allowed by your computer administrator. If you are the administrator, add this Remote Desktop Gateway server name to the trusted Remote Desktop Gateway server list on your computer and then try connecting again. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the RD Gateway server that you are trying to connect to is not allowed by your computer administrator. If you are the administrator, add this Remote Desktop Gateway server name to the trusted Remote Desktop Gateway server list on your computer and then try connecting again..
///
public static string RemoteDesktopDisconnectReason_50331689 {
get {
@@ -7604,7 +7630,7 @@ public static string RemoteDesktopDisconnectReason_50331689 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because your computer or device did not meet the Network Access Protection requirements set by your network administrator, for one of the following reasons: 1) The Remote Desktop Gateway server name and the server's public key certificate subject name do not match. 2) The certificate has expired or has been revoked. 3) The certificate root authority does not trust the certificate. 4) The certificate key extension does not support encryption. 5) Your comput [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because your computer or device did not meet the Network Access Protection requirements set by your network administrator, for one of the following reasons: 1) The Remote Desktop Gateway server name and the server's public key certificate subject name do not match. 2) The certificate has expired or has been revoked. 3) The certificate root authority does not trust the certificate. 4) The certificate key extension does not support encryption. 5) Your comput [rest of string was truncated]";.
///
public static string RemoteDesktopDisconnectReason_50331690 {
get {
@@ -7613,7 +7639,7 @@ public static string RemoteDesktopDisconnectReason_50331690 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because a user name and password are required to authenticate to the Remote Desktop Gateway server instead of smart card credentials. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because a user name and password are required to authenticate to the Remote Desktop Gateway server instead of smart card credentials..
///
public static string RemoteDesktopDisconnectReason_50331691 {
get {
@@ -7622,7 +7648,7 @@ public static string RemoteDesktopDisconnectReason_50331691 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because smart card credentials are required to authenticate to the Remote Desktop Gateway server instead of a user name and password. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because smart card credentials are required to authenticate to the Remote Desktop Gateway server instead of a user name and password..
///
public static string RemoteDesktopDisconnectReason_50331692 {
get {
@@ -7631,7 +7657,7 @@ public static string RemoteDesktopDisconnectReason_50331692 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because an invalid cookie was sent to the Remote Desktop Gateway server. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because an invalid cookie was sent to the Remote Desktop Gateway server. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331700 {
get {
@@ -7640,7 +7666,7 @@ public static string RemoteDesktopDisconnectReason_50331700 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the cookie was rejected by the Remote Desktop Gateway server. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the cookie was rejected by the Remote Desktop Gateway server. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331701 {
get {
@@ -7649,7 +7675,7 @@ public static string RemoteDesktopDisconnectReason_50331701 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server is expecting an authentication method different from the one attempted. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server is expecting an authentication method different from the one attempted. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331703 {
get {
@@ -7658,7 +7684,7 @@ public static string RemoteDesktopDisconnectReason_50331703 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The RD Gateway connection ended because periodic user authentication failed. Try reconnecting with a correct user name and password. If the reconnection fails, contact your network administrator for further assistance. ähnelt.
+ /// Looks up a localized string similar to The RD Gateway connection ended because periodic user authentication failed. Try reconnecting with a correct user name and password. If the reconnection fails, contact your network administrator for further assistance..
///
public static string RemoteDesktopDisconnectReason_50331704 {
get {
@@ -7667,7 +7693,7 @@ public static string RemoteDesktopDisconnectReason_50331704 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The RD Gateway connection ended because periodic user authorization failed. Try reconnecting with a correct user name and password. If the reconnection fails, contact your network administrator for further assistance. ähnelt.
+ /// Looks up a localized string similar to The RD Gateway connection ended because periodic user authorization failed. Try reconnecting with a correct user name and password. If the reconnection fails, contact your network administrator for further assistance..
///
public static string RemoteDesktopDisconnectReason_50331705 {
get {
@@ -7676,7 +7702,7 @@ public static string RemoteDesktopDisconnectReason_50331705 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway and the remote computer are unable to exchange policies. This could happen due to one of the following reasons: 1. The remote computer is not capable of exchanging policies with the Remote Desktop Gateway. 2. The remote computer's configuration does not permit a new connection. 3. The connection between the Remote Desktop Gateway and the remote computer ended. Contact your network administrator for assistanc [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt.
+ /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway and the remote computer are unable to exchange policies. This could happen due to one of the following reasons: 1. The remote computer is not capable of exchanging policies with the Remote Desktop Gateway. 2. The remote computer's configuration does not permit a new connection. 3. The connection between the Remote Desktop Gateway and the remote computer ended. Contact your network administrator for assistanc [rest of string was truncated]";.
///
public static string RemoteDesktopDisconnectReason_50331707 {
get {
@@ -7685,7 +7711,7 @@ public static string RemoteDesktopDisconnectReason_50331707 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The RD Gateway connection ended because periodic user authorization failed. Your computer or device didn't pass the Network Access Protection (NAP) requirements set by your network administrator. Contact your network administrator for assistance. ähnelt.
+ /// Looks up a localized string similar to The RD Gateway connection ended because periodic user authorization failed. Your computer or device didn't pass the Network Access Protection (NAP) requirements set by your network administrator. Contact your network administrator for assistance..
///
public static string RemoteDesktopDisconnectReason_50331713 {
get {
@@ -7694,7 +7720,7 @@ public static string RemoteDesktopDisconnectReason_50331713 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Socket closed. ähnelt.
+ /// Looks up a localized string similar to Socket closed..
///
public static string RemoteDesktopDisconnectReason_AtClientWinsockFDCLOSE {
get {
@@ -7703,7 +7729,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 {
@@ -7712,7 +7738,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 {
@@ -7721,7 +7747,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 {
@@ -7730,7 +7756,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 {
@@ -7739,7 +7765,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 {
@@ -7748,7 +7774,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 {
@@ -7757,7 +7783,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 {
@@ -7766,7 +7792,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 {
@@ -7775,7 +7801,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 {
@@ -7784,7 +7810,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 {
@@ -7793,7 +7819,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 {
@@ -7802,7 +7828,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 {
@@ -7811,7 +7837,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 {
@@ -7820,7 +7846,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 {
@@ -7829,7 +7855,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 {
@@ -7838,7 +7864,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 {
@@ -7847,7 +7873,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 {
@@ -7856,7 +7882,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 {
@@ -7865,7 +7891,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 {
@@ -7874,7 +7900,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 {
@@ -7883,7 +7909,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 {
@@ -7892,7 +7918,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 {
@@ -7901,7 +7927,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 {
@@ -7910,7 +7936,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 {
@@ -7919,7 +7945,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 {
@@ -7928,7 +7954,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 {
@@ -7937,7 +7963,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 {
@@ -7946,7 +7972,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 {
@@ -7955,7 +7981,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 {
@@ -7964,7 +7990,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 {
@@ -7973,7 +7999,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 {
@@ -7982,7 +8008,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 {
@@ -7991,7 +8017,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 {
@@ -8000,7 +8026,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 {
@@ -8009,7 +8035,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 {
@@ -8018,7 +8044,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 {
@@ -8027,7 +8053,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 {
@@ -8036,7 +8062,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 {
@@ -8045,7 +8071,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 {
@@ -8054,7 +8080,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 {
@@ -8063,7 +8089,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 {
@@ -8072,7 +8098,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 {
@@ -8081,7 +8107,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 {
@@ -8090,7 +8116,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 {
@@ -8099,7 +8125,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 {
@@ -8108,7 +8134,7 @@ public static string RemoteDesktopDisconnectReason_TimerError {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The remote session ended because the total login time limit was reached. This limit is set by the server administrator or by network policies. ähnelt.
+ /// Looks up a localized string similar to The remote session ended because the total login time limit was reached. This limit is set by the server administrator or by network policies..
///
public static string RemoteDesktopDisconnectReason_TotalLoginTimeLimitReached {
get {
@@ -8117,7 +8143,7 @@ public static string RemoteDesktopDisconnectReason_TotalLoginTimeLimitReached {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Unable to reconnect to the remote session. ähnelt.
+ /// Looks up a localized string similar to Unable to reconnect to the remote session..
///
public static string RemoteDesktopDisconnectReason_UnableToReconnectToRemoteSession {
get {
@@ -8126,7 +8152,7 @@ public static string RemoteDesktopDisconnectReason_UnableToReconnectToRemoteSess
}
///
- /// 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 {
@@ -8135,7 +8161,7 @@ public static string RemoteDesktopDisconnectReason_WinsockSendFailed {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Allow me to select later ähnelt.
+ /// Looks up a localized string similar to Allow me to select later.
///
public static string RemoteDesktopGatewayServerLogonMethod_Any {
get {
@@ -8144,7 +8170,7 @@ public static string RemoteDesktopGatewayServerLogonMethod_Any {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Smart card or Windows Hello for Business ähnelt.
+ /// Looks up a localized string similar to Smart card or Windows Hello for Business.
///
public static string RemoteDesktopGatewayServerLogonMethod_Smartcard {
get {
@@ -8153,7 +8179,7 @@ public static string RemoteDesktopGatewayServerLogonMethod_Smartcard {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Ask for password (NTLM) ähnelt.
+ /// Looks up a localized string similar to Ask for password (NTLM).
///
public static string RemoteDesktopGatewayServerLogonMethod_Userpass {
get {
@@ -8162,7 +8188,7 @@ public static string RemoteDesktopGatewayServerLogonMethod_Userpass {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die On the remote computer ähnelt.
+ /// Looks up a localized string similar to On the remote computer.
///
public static string RemoteDesktopKeyboardHookMode_OnTheRemoteComputer {
get {
@@ -8171,7 +8197,7 @@ public static string RemoteDesktopKeyboardHookMode_OnTheRemoteComputer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die On this computer ähnelt.
+ /// Looks up a localized string similar to On this computer.
///
public static string RemoteDesktopKeyboardHookMode_OnThisComputer {
get {
@@ -8180,7 +8206,7 @@ public static string RemoteDesktopKeyboardHookMode_OnThisComputer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die High-speed broadband (2 Mbps - 10 Mbps) ähnelt.
+ /// Looks up a localized string similar to High-speed broadband (2 Mbps - 10 Mbps).
///
public static string RemoteDesktopNetworkConnectionType_BroadbandHigh {
get {
@@ -8189,7 +8215,7 @@ public static string RemoteDesktopNetworkConnectionType_BroadbandHigh {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Low-speed broadband (256 kbps - 2 Mbps) ähnelt.
+ /// Looks up a localized string similar to Low-speed broadband (256 kbps - 2 Mbps).
///
public static string RemoteDesktopNetworkConnectionType_BroadbandLow {
get {
@@ -8198,7 +8224,7 @@ public static string RemoteDesktopNetworkConnectionType_BroadbandLow {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Detect connection quality automatically ähnelt.
+ /// Looks up a localized string similar to Detect connection quality automatically.
///
public static string RemoteDesktopNetworkConnectionType_DetectAutomatically {
get {
@@ -8207,7 +8233,7 @@ public static string RemoteDesktopNetworkConnectionType_DetectAutomatically {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die LAN (10 Mbps or higher) ähnelt.
+ /// Looks up a localized string similar to LAN (10 Mbps or higher).
///
public static string RemoteDesktopNetworkConnectionType_LAN {
get {
@@ -8216,7 +8242,7 @@ public static string RemoteDesktopNetworkConnectionType_LAN {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Modem (56 kbps) ähnelt.
+ /// Looks up a localized string similar to Modem (56 kbps).
///
public static string RemoteDesktopNetworkConnectionType_Modem {
get {
@@ -8225,7 +8251,7 @@ public static string RemoteDesktopNetworkConnectionType_Modem {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Satellite (2 Mbps - 16 Mbps with high latency) ähnelt.
+ /// Looks up a localized string similar to Satellite (2 Mbps - 16 Mbps with high latency).
///
public static string RemoteDesktopNetworkConnectionType_Satellite {
get {
@@ -8234,7 +8260,7 @@ public static string RemoteDesktopNetworkConnectionType_Satellite {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die WAN (10 Mbps or higher with high latency) ähnelt.
+ /// Looks up a localized string similar to WAN (10 Mbps or higher with high latency).
///
public static string RemoteDesktopNetworkConnectionType_WAN {
get {
@@ -8243,7 +8269,7 @@ public static string RemoteDesktopNetworkConnectionType_WAN {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remote hostname ähnelt.
+ /// Looks up a localized string similar to Remote hostname.
///
public static string RemoteHostname {
get {
@@ -8252,7 +8278,7 @@ public static string RemoteHostname {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remote IP address ähnelt.
+ /// Looks up a localized string similar to Remote IP address.
///
public static string RemoteIPAddress {
get {
@@ -8261,7 +8287,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 {
@@ -8270,7 +8296,7 @@ public static string RemotePort {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remove IPv4 address ähnelt.
+ /// Looks up a localized string similar to Remove IPv4 address.
///
public static string RemoveIPv4Address {
get {
@@ -8279,7 +8305,7 @@ public static string RemoveIPv4Address {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Remove IPv4 address... ähnelt.
+ /// Looks up a localized string similar to Remove IPv4 address....
///
public static string RemoveIPv4AddressDots {
get {
@@ -8288,7 +8314,7 @@ public static string RemoveIPv4AddressDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Rename ähnelt.
+ /// Looks up a localized string similar to Rename.
///
public static string Rename {
get {
@@ -8297,7 +8323,7 @@ public static string Rename {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Renew ähnelt.
+ /// Looks up a localized string similar to Renew.
///
public static string Renew {
get {
@@ -8306,7 +8332,7 @@ public static string Renew {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Repeat ähnelt.
+ /// Looks up a localized string similar to Repeat.
///
public static string Repeat {
get {
@@ -8315,7 +8341,7 @@ public static string Repeat {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
+ /// Looks up a localized string similar to .
///
public static string ReportAnIssueOrCreateAFeatureRequest {
get {
@@ -8324,7 +8350,7 @@ public static string ReportAnIssueOrCreateAFeatureRequest {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Report on GitHub ähnelt.
+ /// Looks up a localized string similar to Report on GitHub.
///
public static string ReportOnGitHub {
get {
@@ -8333,7 +8359,7 @@ public static string ReportOnGitHub {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Reset ähnelt.
+ /// Looks up a localized string similar to Reset.
///
public static string Reset {
get {
@@ -8342,7 +8368,7 @@ public static string Reset {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die All profiles in this profile file will be permanently deleted! ähnelt.
+ /// Looks up a localized string similar to All profiles in this profile file will be permanently deleted!.
///
public static string ResetProfilesMessage {
get {
@@ -8351,7 +8377,7 @@ public static string ResetProfilesMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Reset settings? ähnelt.
+ /// Looks up a localized string similar to Reset settings?.
///
public static string ResetSettingsQuestion {
get {
@@ -8360,7 +8386,7 @@ public static string ResetSettingsQuestion {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resize ähnelt.
+ /// Looks up a localized string similar to Resize.
///
public static string Resize {
get {
@@ -8369,7 +8395,7 @@ public static string Resize {
}
///
- /// 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 {
@@ -8378,7 +8404,7 @@ public static string ResolveCNAMEOnANYRequests {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resolved "{0}" as hostname for ip address "{1}"! ähnelt.
+ /// Looks up a localized string similar to Resolved "{0}" as hostname for ip address "{1}"!.
///
public static string ResolvedXXXAsHostnameForIPAddressXXXMessage {
get {
@@ -8387,7 +8413,7 @@ public static string ResolvedXXXAsHostnameForIPAddressXXXMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resolve hostname ähnelt.
+ /// Looks up a localized string similar to Resolve hostname.
///
public static string ResolveHostname {
get {
@@ -8396,7 +8422,7 @@ public static string ResolveHostname {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resolve Hostname is disabled! ähnelt.
+ /// Looks up a localized string similar to Resolve Hostname is disabled!.
///
public static string ResolveHostnameIsDisabled {
get {
@@ -8405,7 +8431,7 @@ public static string ResolveHostnameIsDisabled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resolve IP address for this host (IPv4 is preferred) ähnelt.
+ /// Looks up a localized string similar to Resolve IP address for this host (IPv4 is preferred).
///
public static string ResolveIPAddressForThisHost {
get {
@@ -8414,7 +8440,7 @@ public static string ResolveIPAddressForThisHost {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resolve IPv4 address for this host ähnelt.
+ /// Looks up a localized string similar to Resolve IPv4 address for this host.
///
public static string ResolveIPv4AddressForThisHost {
get {
@@ -8423,7 +8449,7 @@ public static string ResolveIPv4AddressForThisHost {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resolve MAC address and vendor ähnelt.
+ /// Looks up a localized string similar to Resolve MAC address and vendor.
///
public static string ResolveMACAddressAndVendor {
get {
@@ -8432,7 +8458,7 @@ public static string ResolveMACAddressAndVendor {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resolve MAC address is disabled! ähnelt.
+ /// Looks up a localized string similar to Resolve MAC address is disabled!.
///
public static string ResolveMACAddressIsDisabled {
get {
@@ -8441,7 +8467,7 @@ public static string ResolveMACAddressIsDisabled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resolve PTR ähnelt.
+ /// Looks up a localized string similar to Resolve PTR.
///
public static string ResolvePTR {
get {
@@ -8450,7 +8476,7 @@ public static string ResolvePTR {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die A collection of all country flags in SVG ähnelt.
+ /// Looks up a localized string similar to A collection of all country flags in SVG.
///
public static string Resource_Flag_Description {
get {
@@ -8459,7 +8485,7 @@ public static string Resource_Flag_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die List of Top-Level-Domains from iana.org, which is used to query whois servers of the TLD from whois.iana.org via port 43 ähnelt.
+ /// Looks up a localized string similar to List of Top-Level-Domains from iana.org, which is used to query whois servers of the TLD from whois.iana.org via port 43.
///
public static string Resource_ListTLD_Description {
get {
@@ -8468,7 +8494,7 @@ public static string Resource_ListTLD_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die OUI data from ieee.org. ähnelt.
+ /// Looks up a localized string similar to OUI data from ieee.org..
///
public static string Resource_OUI_Description {
get {
@@ -8477,7 +8503,7 @@ public static string Resource_OUI_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Service Name and Transport Protocol Port Number Registry from iana.org. ähnelt.
+ /// Looks up a localized string similar to Service Name and Transport Protocol Port Number Registry from iana.org..
///
public static string Resource_ServiceNamePortNumber_Description {
get {
@@ -8486,7 +8512,7 @@ public static string Resource_ServiceNamePortNumber_Description {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resources ähnelt.
+ /// Looks up a localized string similar to Resources.
///
public static string Resources {
get {
@@ -8495,7 +8521,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 {
@@ -8504,7 +8530,7 @@ public static string Responses {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Restart ähnelt.
+ /// Looks up a localized string similar to Restart.
///
public static string Restart {
get {
@@ -8513,7 +8539,7 @@ public static string Restart {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Restart as Administrator ähnelt.
+ /// Looks up a localized string similar to Restart as Administrator.
///
public static string RestartAsAdmin {
get {
@@ -8522,7 +8548,7 @@ public static string RestartAsAdmin {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Restart now ähnelt.
+ /// Looks up a localized string similar to Restart now.
///
public static string RestartNow {
get {
@@ -8531,7 +8557,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 {
@@ -8540,7 +8566,7 @@ public static string RestartRequired {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Restart session ähnelt.
+ /// Looks up a localized string similar to Restart session.
///
public static string RestartSession {
get {
@@ -8549,7 +8575,7 @@ public static string RestartSession {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Restart the application to change the language! ähnelt.
+ /// Looks up a localized string similar to Restart the application to change the language!.
///
public static string RestartTheApplicationToChangeTheLanguage {
get {
@@ -8558,7 +8584,7 @@ public static string RestartTheApplicationToChangeTheLanguage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Restore defaults ähnelt.
+ /// Looks up a localized string similar to Restore defaults.
///
public static string RestoreDefaults {
get {
@@ -8567,7 +8593,7 @@ public static string RestoreDefaults {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Result ähnelt.
+ /// Looks up a localized string similar to Result.
///
public static string Result {
get {
@@ -8576,7 +8602,7 @@ public static string Result {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Resume ähnelt.
+ /// Looks up a localized string similar to Resume.
///
public static string Resume {
get {
@@ -8585,7 +8611,7 @@ public static string Resume {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Retries ähnelt.
+ /// Looks up a localized string similar to Retries.
///
public static string Retries {
get {
@@ -8594,7 +8620,7 @@ public static string Retries {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Rlogin ähnelt.
+ /// Looks up a localized string similar to Rlogin.
///
public static string Rlogin {
get {
@@ -8603,7 +8629,7 @@ public static string Rlogin {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Rlogin port ähnelt.
+ /// Looks up a localized string similar to Rlogin port.
///
public static string RloginPort {
get {
@@ -8612,7 +8638,7 @@ public static string RloginPort {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Round trip delay ähnelt.
+ /// Looks up a localized string similar to Round trip delay.
///
public static string RoundTripDelay {
get {
@@ -8621,7 +8647,7 @@ public static string RoundTripDelay {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Route ähnelt.
+ /// Looks up a localized string similar to Route.
///
public static string Route {
get {
@@ -8630,7 +8656,7 @@ public static string Route {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Routing ähnelt.
+ /// Looks up a localized string similar to Routing.
///
public static string Routing {
get {
@@ -8639,7 +8665,7 @@ public static string Routing {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Run background job every x-minute ähnelt.
+ /// Looks up a localized string similar to Run background job every x-minute.
///
public static string RunBackgroundJobEveryXMinute {
get {
@@ -8648,7 +8674,7 @@ public static string RunBackgroundJobEveryXMinute {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Save ähnelt.
+ /// Looks up a localized string similar to Save.
///
public static string Save {
get {
@@ -8657,7 +8683,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 {
@@ -8666,7 +8692,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 {
@@ -8675,7 +8701,7 @@ public static string Scan {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Scan for NetBIOS ähnelt.
+ /// Looks up a localized string similar to Scan for NetBIOS.
///
public static string ScanForNetBIOS {
get {
@@ -8684,7 +8710,7 @@ public static string ScanForNetBIOS {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Scanned ähnelt.
+ /// Looks up a localized string similar to Scanned.
///
public static string Scanned {
get {
@@ -8693,7 +8719,7 @@ public static string Scanned {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Scan ports ähnelt.
+ /// Looks up a localized string similar to Scan ports.
///
public static string ScanPorts {
get {
@@ -8702,7 +8728,7 @@ public static string ScanPorts {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Search ähnelt.
+ /// Looks up a localized string similar to Search.
///
public static string Search {
get {
@@ -8711,7 +8737,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 {
@@ -8720,7 +8746,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 {
@@ -8729,7 +8755,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 {
@@ -8738,7 +8764,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 {
@@ -8747,7 +8773,7 @@ public static string SearchedSettingNotFound {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Searching for networks... ähnelt.
+ /// Looks up a localized string similar to Searching for networks....
///
public static string SearchingForNetworksDots {
get {
@@ -8756,7 +8782,7 @@ public static string SearchingForNetworksDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Searching for WiFi adapters... ähnelt.
+ /// Looks up a localized string similar to Searching for WiFi adapters....
///
public static string SearchingWiFiAdaptersDots {
get {
@@ -8765,7 +8791,7 @@ public static string SearchingWiFiAdaptersDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Secondary DNS server ähnelt.
+ /// Looks up a localized string similar to Secondary DNS server.
///
public static string SecondaryDNSServer {
get {
@@ -8774,7 +8800,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 {
@@ -8783,7 +8809,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 {
@@ -8792,7 +8818,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 {
@@ -8801,7 +8827,7 @@ public static string SelectAScreenResolution {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Selected ähnelt.
+ /// Looks up a localized string similar to Selected.
///
public static string Selected {
get {
@@ -8810,7 +8836,7 @@ public static string Selected {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Select OID profile ähnelt.
+ /// Looks up a localized string similar to Select OID profile.
///
public static string SelectOIDProfile {
get {
@@ -8819,7 +8845,7 @@ public static string SelectOIDProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Select port profile ähnelt.
+ /// Looks up a localized string similar to Select port profile.
///
public static string SelectPortProfile {
get {
@@ -8828,7 +8854,7 @@ public static string SelectPortProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Send ähnelt.
+ /// Looks up a localized string similar to Send.
///
public static string Send {
get {
@@ -8837,7 +8863,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 {
@@ -8846,7 +8872,7 @@ public static string Serial {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Serial line ähnelt.
+ /// Looks up a localized string similar to Serial line.
///
public static string SerialLine {
get {
@@ -8855,7 +8881,7 @@ public static string SerialLine {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Server ähnelt.
+ /// Looks up a localized string similar to Server.
///
public static string Server {
get {
@@ -8864,7 +8890,7 @@ public static string Server {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Server name ähnelt.
+ /// Looks up a localized string similar to Server name.
///
public static string ServerName {
get {
@@ -8873,7 +8899,7 @@ public static string ServerName {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Server(s) ähnelt.
+ /// Looks up a localized string similar to Server(s).
///
public static string Servers {
get {
@@ -8882,7 +8908,7 @@ public static string Servers {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Service ähnelt.
+ /// Looks up a localized string similar to Service.
///
public static string Service {
get {
@@ -8891,7 +8917,7 @@ public static string Service {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Set default ähnelt.
+ /// Looks up a localized string similar to Set default.
///
public static string SetDefault {
get {
@@ -8900,7 +8926,7 @@ public static string SetDefault {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Set Master Password ähnelt.
+ /// Looks up a localized string similar to Set Master Password.
///
public static string SetMasterPassword {
get {
@@ -8909,7 +8935,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 {
@@ -8918,7 +8944,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 {
@@ -8927,7 +8953,7 @@ public static string Settings {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The settings will be reset and the application will be restarted afterwards! ähnelt.
+ /// Looks up a localized string similar to The settings will be reset and the application will be restarted afterwards!.
///
public static string SettingsAreResetAndApplicationWillBeRestartedMessage {
get {
@@ -8936,11 +8962,11 @@ public static string SettingsAreResetAndApplicationWillBeRestartedMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The found settings file was corrupted or is not compatible with this version! You may report this issue on GitHub.
+ /// Looks up a localized string similar to The found settings file was corrupted or is not compatible with this version! You may report this issue on GitHub.
///
///A backup of the settings file was created in the settings folder and the settings were reset.
///
- ///Profile files are not affected! ähnelt.
+ ///Profile files are not affected!.
///
public static string SettingsFileFoundWasCorruptOrNotCompatibleMessage {
get {
@@ -8949,7 +8975,7 @@ public static string SettingsFileFoundWasCorruptOrNotCompatibleMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Applications ähnelt.
+ /// Looks up a localized string similar to Applications.
///
public static string SettingsGroup_Application {
get {
@@ -8958,7 +8984,7 @@ public static string SettingsGroup_Application {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt.
+ /// Looks up a localized string similar to General.
///
public static string SettingsGroup_General {
get {
@@ -8967,7 +8993,7 @@ public static string SettingsGroup_General {
}
///
- /// 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 {
@@ -8976,7 +9002,7 @@ public static string SettingsHaveBeenReset {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Appearance ähnelt.
+ /// Looks up a localized string similar to Appearance.
///
public static string SettingsName_Appearance {
get {
@@ -8985,7 +9011,7 @@ public static string SettingsName_Appearance {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Autostart ähnelt.
+ /// Looks up a localized string similar to Autostart.
///
public static string SettingsName_Autostart {
get {
@@ -8994,7 +9020,7 @@ public static string SettingsName_Autostart {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt.
+ /// Looks up a localized string similar to General.
///
public static string SettingsName_General {
get {
@@ -9003,7 +9029,7 @@ public static string SettingsName_General {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die HotKeys ähnelt.
+ /// Looks up a localized string similar to HotKeys.
///
public static string SettingsName_HotKeys {
get {
@@ -9012,7 +9038,7 @@ public static string SettingsName_HotKeys {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Language ähnelt.
+ /// Looks up a localized string similar to Language.
///
public static string SettingsName_Language {
get {
@@ -9021,7 +9047,7 @@ public static string SettingsName_Language {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Network ähnelt.
+ /// Looks up a localized string similar to Network.
///
public static string SettingsName_Network {
get {
@@ -9030,7 +9056,7 @@ public static string SettingsName_Network {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profiles ähnelt.
+ /// Looks up a localized string similar to Profiles.
///
public static string SettingsName_Profiles {
get {
@@ -9039,7 +9065,7 @@ public static string SettingsName_Profiles {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Settings ähnelt.
+ /// Looks up a localized string similar to Settings.
///
public static string SettingsName_Settings {
get {
@@ -9048,7 +9074,7 @@ public static string SettingsName_Settings {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Status ähnelt.
+ /// Looks up a localized string similar to Status.
///
public static string SettingsName_Status {
get {
@@ -9057,7 +9083,7 @@ public static string SettingsName_Status {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Update ähnelt.
+ /// Looks up a localized string similar to Update.
///
public static string SettingsName_Update {
get {
@@ -9066,7 +9092,7 @@ public static string SettingsName_Update {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Window ähnelt.
+ /// Looks up a localized string similar to Window.
///
public static string SettingsName_Window {
get {
@@ -9075,7 +9101,7 @@ public static string SettingsName_Window {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Settings reset! ähnelt.
+ /// Looks up a localized string similar to Settings reset!.
///
public static string SettingsResetExclamationMark {
get {
@@ -9084,7 +9110,7 @@ public static string SettingsResetExclamationMark {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Share Gateway credentials with remote computer ähnelt.
+ /// Looks up a localized string similar to Share Gateway credentials with remote computer.
///
public static string ShareGatewayCredentialsWithRemoteComputer {
get {
@@ -9093,7 +9119,7 @@ public static string ShareGatewayCredentialsWithRemoteComputer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Show ähnelt.
+ /// Looks up a localized string similar to Show.
///
public static string Show {
get {
@@ -9102,7 +9128,7 @@ public static string Show {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Show address bar ähnelt.
+ /// Looks up a localized string similar to Show address bar.
///
public static string ShowAddressBar {
get {
@@ -9111,7 +9137,7 @@ public static string ShowAddressBar {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Show closed ports ähnelt.
+ /// Looks up a localized string similar to Show closed ports.
///
public static string ShowClosedPorts {
get {
@@ -9120,7 +9146,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 {
@@ -9129,7 +9155,7 @@ public static string ShowCurrentApplicationTitle {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Show error message ähnelt.
+ /// Looks up a localized string similar to Show error message.
///
public static string ShowErrorMessage {
get {
@@ -9138,7 +9164,7 @@ public static string ShowErrorMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Show local licenses ähnelt.
+ /// Looks up a localized string similar to Show local licenses.
///
public static string ShowLocalLicenses {
get {
@@ -9147,7 +9173,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 {
@@ -9156,7 +9182,7 @@ public static string ShowOnlyMostCommonQueryTypes {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Show SplashScreen on start ähnelt.
+ /// Looks up a localized string similar to Show SplashScreen on start.
///
public static string ShowSplashScreenOnStart {
get {
@@ -9165,7 +9191,7 @@ public static string ShowSplashScreenOnStart {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Show statistics ähnelt.
+ /// Looks up a localized string similar to Show statistics.
///
public static string ShowStatistics {
get {
@@ -9174,7 +9200,7 @@ public static string ShowStatistics {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Show status window on network change ähnelt.
+ /// Looks up a localized string similar to Show status window on network change.
///
public static string ShowStatusWindowOnNetworkChange {
get {
@@ -9183,7 +9209,7 @@ public static string ShowStatusWindowOnNetworkChange {
}
///
- /// 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 {
@@ -9192,7 +9218,7 @@ public static string ShowTheFollowingApplicationOnStartup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Show unreachable IP addresses and ports ähnelt.
+ /// Looks up a localized string similar to Show unreachable IP addresses and ports.
///
public static string ShowUnreachableIPAddressesAndPorts {
get {
@@ -9201,7 +9227,7 @@ public static string ShowUnreachableIPAddressesAndPorts {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Show window contents while dragging ähnelt.
+ /// Looks up a localized string similar to Show window contents while dragging.
///
public static string ShowWindowContentsWhileDragging {
get {
@@ -9210,7 +9236,7 @@ public static string ShowWindowContentsWhileDragging {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Sienna ähnelt.
+ /// Looks up a localized string similar to Sienna.
///
public static string Sienna {
get {
@@ -9219,7 +9245,7 @@ public static string Sienna {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Signal strength ähnelt.
+ /// Looks up a localized string similar to Signal strength.
///
public static string SignalStrength {
get {
@@ -9228,7 +9254,7 @@ public static string SignalStrength {
}
///
- /// 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 {
@@ -9237,7 +9263,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 {
@@ -9246,7 +9272,7 @@ public static string SNMP {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Authentication failed. Please check the community string! ähnelt.
+ /// Looks up a localized string similar to Authentication failed. Please check the community string!.
///
public static string SNMPErrorCode_AuthorizationError {
get {
@@ -9255,7 +9281,7 @@ public static string SNMPErrorCode_AuthorizationError {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die A read-write or write-only object was set to an inconsistent value! ähnelt.
+ /// Looks up a localized string similar to A read-write or write-only object was set to an inconsistent value!.
///
public static string SNMPErrorCode_BadValue {
get {
@@ -9264,7 +9290,7 @@ public static string SNMPErrorCode_BadValue {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die An error occurred during the set operation! ähnelt.
+ /// Looks up a localized string similar to An error occurred during the set operation!.
///
public static string SNMPErrorCode_CommitFailed {
get {
@@ -9273,7 +9299,7 @@ public static string SNMPErrorCode_CommitFailed {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die An error occurred for which no specific message is available! ähnelt.
+ /// Looks up a localized string similar to An error occurred for which no specific message is available!.
///
public static string SNMPErrorCode_GenError {
get {
@@ -9282,7 +9308,7 @@ public static string SNMPErrorCode_GenError {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The object's state is inconsistent, preventing the set operation! ähnelt.
+ /// Looks up a localized string similar to The object's state is inconsistent, preventing the set operation!.
///
public static string SNMPErrorCode_InconsistentName {
get {
@@ -9291,7 +9317,7 @@ public static string SNMPErrorCode_InconsistentName {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The MIB variable is currently in an inconsistent state and cannot be modified! ähnelt.
+ /// Looks up a localized string similar to The MIB variable is currently in an inconsistent state and cannot be modified!.
///
public static string SNMPErrorCode_InconsistentValue {
get {
@@ -9300,7 +9326,7 @@ public static string SNMPErrorCode_InconsistentValue {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The requested object is not accessible for modification! ähnelt.
+ /// Looks up a localized string similar to The requested object is not accessible for modification!.
///
public static string SNMPErrorCode_NoAccess {
get {
@@ -9309,7 +9335,7 @@ public static string SNMPErrorCode_NoAccess {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The requested object does not exist and cannot be created! ähnelt.
+ /// Looks up a localized string similar to The requested object does not exist and cannot be created!.
///
public static string SNMPErrorCode_NoCreation {
get {
@@ -9318,7 +9344,7 @@ public static string SNMPErrorCode_NoCreation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The operation was successful without any errors. ähnelt.
+ /// Looks up a localized string similar to The operation was successful without any errors..
///
public static string SNMPErrorCode_NoError {
get {
@@ -9327,7 +9353,7 @@ public static string SNMPErrorCode_NoError {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The requested OID could not be found! ähnelt.
+ /// Looks up a localized string similar to The requested OID could not be found!.
///
public static string SNMPErrorCode_NoSuchName {
get {
@@ -9336,7 +9362,7 @@ public static string SNMPErrorCode_NoSuchName {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The requested object is not writable and cannot be modified! ähnelt.
+ /// Looks up a localized string similar to The requested object is not writable and cannot be modified!.
///
public static string SNMPErrorCode_NotWritable {
get {
@@ -9345,7 +9371,7 @@ public static string SNMPErrorCode_NotWritable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The requested OID does not exist and is not writable! ähnelt.
+ /// Looks up a localized string similar to The requested OID does not exist and is not writable!.
///
public static string SNMPErrorCode_ReadOnly {
get {
@@ -9354,7 +9380,7 @@ public static string SNMPErrorCode_ReadOnly {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die There are no available system resources to perform the requested operation! ähnelt.
+ /// Looks up a localized string similar to There are no available system resources to perform the requested operation!.
///
public static string SNMPErrorCode_ResourceUnavailable {
get {
@@ -9363,7 +9389,7 @@ public static string SNMPErrorCode_ResourceUnavailable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The response to your request was too large to fit into a single response! ähnelt.
+ /// Looks up a localized string similar to The response to your request was too large to fit into a single response!.
///
public static string SNMPErrorCode_TooBig {
get {
@@ -9372,7 +9398,7 @@ public static string SNMPErrorCode_TooBig {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die A set operation failed, and previous changes could not be rolled back! ähnelt.
+ /// Looks up a localized string similar to A set operation failed, and previous changes could not be rolled back!.
///
public static string SNMPErrorCode_UndoFailed {
get {
@@ -9381,7 +9407,7 @@ public static string SNMPErrorCode_UndoFailed {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The encoding used for the object is incorrect! ähnelt.
+ /// Looks up a localized string similar to The encoding used for the object is incorrect!.
///
public static string SNMPErrorCode_WrongEncoding {
get {
@@ -9390,7 +9416,7 @@ public static string SNMPErrorCode_WrongEncoding {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The value assigned to the object exceeds its maximum length! ähnelt.
+ /// Looks up a localized string similar to The value assigned to the object exceeds its maximum length!.
///
public static string SNMPErrorCode_WrongLength {
get {
@@ -9399,7 +9425,7 @@ public static string SNMPErrorCode_WrongLength {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The object was set to an incompatible data type! ähnelt.
+ /// Looks up a localized string similar to The object was set to an incompatible data type!.
///
public static string SNMPErrorCode_WrongType {
get {
@@ -9408,7 +9434,7 @@ public static string SNMPErrorCode_WrongType {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The value assigned to the object is not a valid choice! ähnelt.
+ /// Looks up a localized string similar to The value assigned to the object is not a valid choice!.
///
public static string SNMPErrorCode_WrongValue {
get {
@@ -9417,7 +9443,7 @@ public static string SNMPErrorCode_WrongValue {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Authentication failure (incorrect password, community or key). ähnelt.
+ /// Looks up a localized string similar to Authentication failure (incorrect password, community or key)..
///
public static string SNMPV3ErrorCode_AuthenticationFailed {
get {
@@ -9426,7 +9452,7 @@ public static string SNMPV3ErrorCode_AuthenticationFailed {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Unknown user name. ähnelt.
+ /// Looks up a localized string similar to Unknown user name..
///
public static string SNMPV3ErrorCode_UnknownUserName {
get {
@@ -9435,7 +9461,7 @@ public static string SNMPV3ErrorCode_UnknownUserName {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SNTP Lookup ähnelt.
+ /// Looks up a localized string similar to SNTP Lookup.
///
public static string SNTPLookup {
get {
@@ -9444,7 +9470,7 @@ public static string SNTPLookup {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SNTP server ähnelt.
+ /// Looks up a localized string similar to SNTP server.
///
public static string SNTPServer {
get {
@@ -9453,7 +9479,7 @@ public static string SNTPServer {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SNTP server(s) ähnelt.
+ /// Looks up a localized string similar to SNTP server(s).
///
public static string SNTPServers {
get {
@@ -9462,7 +9488,7 @@ public static string SNTPServers {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die An SNTP server with this name already exists! ähnelt.
+ /// Looks up a localized string similar to An SNTP server with this name already exists!.
///
public static string SNTPServerWithThisNameAlreadyExists {
get {
@@ -9471,7 +9497,7 @@ public static string SNTPServerWithThisNameAlreadyExists {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Socket ähnelt.
+ /// Looks up a localized string similar to Socket.
///
public static string Socket {
get {
@@ -9480,7 +9506,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 {
@@ -9489,7 +9515,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 {
@@ -9498,7 +9524,7 @@ public static string Speed {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SplashScreen ähnelt.
+ /// Looks up a localized string similar to SplashScreen.
///
public static string SplashScreen {
get {
@@ -9507,7 +9533,7 @@ public static string SplashScreen {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SSH ähnelt.
+ /// Looks up a localized string similar to SSH.
///
public static string SSH {
get {
@@ -9516,7 +9542,7 @@ public static string SSH {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SSH log ähnelt.
+ /// Looks up a localized string similar to SSH log.
///
public static string SSHLog {
get {
@@ -9525,7 +9551,7 @@ public static string SSHLog {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SSH port ähnelt.
+ /// Looks up a localized string similar to SSH port.
///
public static string SSHPort {
get {
@@ -9534,7 +9560,7 @@ public static string SSHPort {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SSH Raw log ähnelt.
+ /// Looks up a localized string similar to SSH Raw log.
///
public static string SSHRawLog {
get {
@@ -9543,7 +9569,7 @@ public static string SSHRawLog {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die SSID ähnelt.
+ /// Looks up a localized string similar to SSID.
///
public static string SSID {
get {
@@ -9552,7 +9578,7 @@ public static string SSID {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
+ /// Looks up a localized string similar to .
///
public static string StarForkTheProjectOnGitHub {
get {
@@ -9561,7 +9587,7 @@ public static string StarForkTheProjectOnGitHub {
}
///
- /// 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 {
@@ -9570,7 +9596,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 {
@@ -9579,7 +9605,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 {
@@ -9588,7 +9614,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 {
@@ -9597,7 +9623,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 {
@@ -9606,7 +9632,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 {
@@ -9615,7 +9641,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 {
@@ -9624,7 +9650,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 {
@@ -9633,7 +9659,7 @@ public static string Status {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Status change ähnelt.
+ /// Looks up a localized string similar to Status change.
///
public static string StatusChange {
get {
@@ -9642,7 +9668,7 @@ public static string StatusChange {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Status window ähnelt.
+ /// Looks up a localized string similar to Status window.
///
public static string StatusWindow {
get {
@@ -9651,7 +9677,7 @@ public static string StatusWindow {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Steel ähnelt.
+ /// Looks up a localized string similar to Steel.
///
public static string Steel {
get {
@@ -9660,7 +9686,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 {
@@ -9669,7 +9695,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 {
@@ -9678,7 +9704,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 {
@@ -9687,7 +9713,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 {
@@ -9696,7 +9722,7 @@ public static string SubnetCalculator {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Subnet mask ähnelt.
+ /// Looks up a localized string similar to Subnet mask.
///
public static string SubnetMask {
get {
@@ -9705,7 +9731,7 @@ public static string SubnetMask {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Subnetting ähnelt.
+ /// Looks up a localized string similar to Subnetting.
///
public static string Subnetting {
get {
@@ -9714,7 +9740,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 {
@@ -9723,7 +9749,7 @@ public static string Success {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Successfully connected to {0}! ähnelt.
+ /// Looks up a localized string similar to Successfully connected to {0}!.
///
public static string SuccessfullyConnectedToXXX {
get {
@@ -9732,7 +9758,7 @@ public static string SuccessfullyConnectedToXXX {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Synchronize all EC2 instances from AWS ähnelt.
+ /// Looks up a localized string similar to Synchronize all EC2 instances from AWS.
///
public static string SyncAllEC2InstancesFromAWS {
get {
@@ -9741,7 +9767,7 @@ public static string SyncAllEC2InstancesFromAWS {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Synchronize EC2 instances from AWS ähnelt.
+ /// Looks up a localized string similar to Synchronize EC2 instances from AWS.
///
public static string SyncEC2InstancesFromAWS {
get {
@@ -9750,7 +9776,7 @@ public static string SyncEC2InstancesFromAWS {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Synchronize group EC2 instances from AWS ähnelt.
+ /// Looks up a localized string similar to Synchronize group EC2 instances from AWS.
///
public static string SyncGroupEC2InstancesFromAWS {
get {
@@ -9759,7 +9785,7 @@ public static string SyncGroupEC2InstancesFromAWS {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Synchronization is disabled! ähnelt.
+ /// Looks up a localized string similar to Synchronization is disabled!.
///
public static string SyncIsDisabled {
get {
@@ -9768,7 +9794,7 @@ public static string SyncIsDisabled {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Synchronize only running EC2 instances from AWS ähnelt.
+ /// Looks up a localized string similar to Synchronize only running EC2 instances from AWS.
///
public static string SyncOnlyRunningEC2InstancesFromAWS {
get {
@@ -9777,7 +9803,7 @@ public static string SyncOnlyRunningEC2InstancesFromAWS {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Tags ähnelt.
+ /// Looks up a localized string similar to Tags.
///
public static string Tags {
get {
@@ -9786,7 +9812,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 {
@@ -9795,7 +9821,7 @@ public static string Taupe {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die TCP/IP stack is available. "{0}" is reachable via ICMP! ähnelt.
+ /// Looks up a localized string similar to TCP/IP stack is available. "{0}" is reachable via ICMP!.
///
public static string TCPIPStackIsAvailableMessage {
get {
@@ -9804,7 +9830,7 @@ public static string TCPIPStackIsAvailableMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die TCP/IP stack is not available... "{0}" is not reachable via ICMP! ähnelt.
+ /// Looks up a localized string similar to TCP/IP stack is not available... "{0}" is not reachable via ICMP!.
///
public static string TCPIPStackIsNotAvailableMessage {
get {
@@ -9813,7 +9839,7 @@ public static string TCPIPStackIsNotAvailableMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt.
+ /// Looks up a localized string similar to Closed.
///
public static string TcpState_Closed {
get {
@@ -9822,7 +9848,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 {
@@ -9831,7 +9857,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 {
@@ -9840,7 +9866,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 {
@@ -9849,7 +9875,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 {
@@ -9858,7 +9884,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 {
@@ -9867,7 +9893,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 {
@@ -9876,7 +9902,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 {
@@ -9885,7 +9911,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 {
@@ -9894,7 +9920,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 {
@@ -9903,7 +9929,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 {
@@ -9912,7 +9938,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 {
@@ -9921,7 +9947,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 {
@@ -9930,7 +9956,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 {
@@ -9939,7 +9965,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 {
@@ -9948,7 +9974,7 @@ public static string Telnet {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Telnet port ähnelt.
+ /// Looks up a localized string similar to Telnet port.
///
public static string TelnetPort {
get {
@@ -9957,7 +9983,7 @@ public static string TelnetPort {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Terabits ähnelt.
+ /// Looks up a localized string similar to Terabits.
///
public static string Terabits {
get {
@@ -9966,7 +9992,7 @@ public static string Terabits {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Terabytes ähnelt.
+ /// Looks up a localized string similar to Terabytes.
///
public static string Terabytes {
get {
@@ -9975,7 +10001,7 @@ public static string Terabytes {
}
///
- /// 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 {
@@ -9984,7 +10010,7 @@ public static string TheApplicationCanBeStartedWithoutParameters {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The application will be restarted... ähnelt.
+ /// Looks up a localized string similar to The application will be restarted....
///
public static string TheApplicationWillBeRestarted {
get {
@@ -9993,7 +10019,7 @@ public static string TheApplicationWillBeRestarted {
}
///
- /// 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 {
@@ -10002,7 +10028,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 {
@@ -10011,7 +10037,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 {
@@ -10020,7 +10046,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 {
@@ -10029,7 +10055,7 @@ public static string Theme {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Dark ähnelt.
+ /// Looks up a localized string similar to Dark.
///
public static string Theme_Dark {
get {
@@ -10038,7 +10064,7 @@ public static string Theme_Dark {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Light ähnelt.
+ /// Looks up a localized string similar to Light.
///
public static string Theme_Light {
get {
@@ -10047,7 +10073,7 @@ public static string Theme_Light {
}
///
- /// 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 {
@@ -10056,7 +10082,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 {
@@ -10065,7 +10091,7 @@ public static string TheSettingsLocationIsNotAffected {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die This will reset all settings! ähnelt.
+ /// Looks up a localized string similar to This will reset all settings!.
///
public static string ThisWillResetAllSettings {
get {
@@ -10074,7 +10100,7 @@ public static string ThisWillResetAllSettings {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ThreadPool additional min. threads ähnelt.
+ /// Looks up a localized string similar to ThreadPool additional min. threads.
///
public static string ThreadPoolAdditionalMinThreads {
get {
@@ -10083,7 +10109,7 @@ public static string ThreadPoolAdditionalMinThreads {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Threads ähnelt.
+ /// Looks up a localized string similar to Threads.
///
public static string Threads {
get {
@@ -10092,7 +10118,7 @@ public static string Threads {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die TigerVNC ähnelt.
+ /// Looks up a localized string similar to TigerVNC.
///
public static string TigerVNC {
get {
@@ -10101,7 +10127,7 @@ public static string TigerVNC {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die TigerVNC process has ended! ähnelt.
+ /// Looks up a localized string similar to TigerVNC process has ended!.
///
public static string TigerVNCProcessHasEnded {
get {
@@ -10110,7 +10136,7 @@ public static string TigerVNCProcessHasEnded {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Time ähnelt.
+ /// Looks up a localized string similar to Time.
///
public static string Time {
get {
@@ -10119,7 +10145,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 {
@@ -10128,7 +10154,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 {
@@ -10137,7 +10163,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 {
@@ -10146,7 +10172,7 @@ public static string Time3 {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Time in seconds how long the status window is shown ähnelt.
+ /// Looks up a localized string similar to Time in seconds how long the status window is shown.
///
public static string TimeInSecondsHowLongTheStatusWindowIsShown {
get {
@@ -10155,7 +10181,7 @@ public static string TimeInSecondsHowLongTheStatusWindowIsShown {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Time (ms) to wait between each ping ähnelt.
+ /// Looks up a localized string similar to Time (ms) to wait between each ping.
///
public static string TimeMSToWaitBetweenEachPing {
get {
@@ -10164,7 +10190,7 @@ public static string TimeMSToWaitBetweenEachPing {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Timeout ähnelt.
+ /// Looks up a localized string similar to Timeout.
///
public static string Timeout {
get {
@@ -10173,7 +10199,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 {
@@ -10182,7 +10208,7 @@ public static string TimeoutMS {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Timeout on SNMP query. Maybe the host is not reachable or the community / password is wrong. ähnelt.
+ /// Looks up a localized string similar to Timeout on SNMP query. Maybe the host is not reachable or the community / password is wrong..
///
public static string TimeoutOnSNMPQuery {
get {
@@ -10191,7 +10217,7 @@ public static string TimeoutOnSNMPQuery {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Timeout (s) ähnelt.
+ /// Looks up a localized string similar to Timeout (s).
///
public static string TimeoutS {
get {
@@ -10200,7 +10226,7 @@ public static string TimeoutS {
}
///
- /// 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 {
@@ -10209,7 +10235,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 {
@@ -10218,7 +10244,7 @@ public static string Timestamp {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Time to live ähnelt.
+ /// Looks up a localized string similar to Time to live.
///
public static string TimeToLive {
get {
@@ -10227,7 +10253,7 @@ public static string TimeToLive {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Hour(s) ähnelt.
+ /// Looks up a localized string similar to Hour(s).
///
public static string TimeUnit_Hour {
get {
@@ -10236,7 +10262,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 {
@@ -10245,7 +10271,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 {
@@ -10254,7 +10280,7 @@ public static string TimeUnit_Second {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Timezone ähnelt.
+ /// Looks up a localized string similar to Timezone.
///
public static string Timezone {
get {
@@ -10263,7 +10289,7 @@ public static string Timezone {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Follow or contact me via X. ähnelt.
+ /// Looks up a localized string similar to Follow or contact me via X..
///
public static string ToolTip_ContactOrContactMeViaX {
get {
@@ -10272,7 +10298,7 @@ public static string ToolTip_ContactOrContactMeViaX {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
+ /// Looks up a localized string similar to .
///
public static string ToolTip_GithubDocumentationUrl {
get {
@@ -10281,7 +10307,7 @@ public static string ToolTip_GithubDocumentationUrl {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
+ /// Looks up a localized string similar to .
///
public static string ToolTip_GithubNewIssueUrl {
get {
@@ -10290,7 +10316,7 @@ public static string ToolTip_GithubNewIssueUrl {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
+ /// Looks up a localized string similar to .
///
public static string ToolTip_GitHubProjectUrl {
get {
@@ -10299,7 +10325,7 @@ public static string ToolTip_GitHubProjectUrl {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Help translate the project on Transifex. ähnelt.
+ /// Looks up a localized string similar to Help translate the project on Transifex..
///
public static string ToolTip_HelpTranslateOnTransifex {
get {
@@ -10308,7 +10334,7 @@ public static string ToolTip_HelpTranslateOnTransifex {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Open the documentation. ähnelt.
+ /// Looks up a localized string similar to Open the documentation..
///
public static string ToolTip_OpenTheDocumentation {
get {
@@ -10317,7 +10343,7 @@ public static string ToolTip_OpenTheDocumentation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Report an issue or create a feature request. ähnelt.
+ /// Looks up a localized string similar to Report an issue or create a feature request..
///
public static string ToolTip_ReportIssueOrCreateFeatureRequest {
get {
@@ -10326,7 +10352,7 @@ public static string ToolTip_ReportIssueOrCreateFeatureRequest {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Run command... (Ctrl+Shift+P) ähnelt.
+ /// Looks up a localized string similar to Run command... (Ctrl+Shift+P).
///
public static string ToolTip_RunCommandWithHotKey {
get {
@@ -10335,7 +10361,7 @@ public static string ToolTip_RunCommandWithHotKey {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Star/Fork the Project on GitHub. ähnelt.
+ /// Looks up a localized string similar to Star/Fork the Project on GitHub..
///
public static string ToolTip_StarForkProjectOnGitHub {
get {
@@ -10344,7 +10370,7 @@ public static string ToolTip_StarForkProjectOnGitHub {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Support this project with a donation. ähnelt.
+ /// Looks up a localized string similar to Support this project with a donation..
///
public static string ToolTip_SupportThisProjectWithADonation {
get {
@@ -10353,7 +10379,7 @@ public static string ToolTip_SupportThisProjectWithADonation {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
+ /// Looks up a localized string similar to .
///
public static string ToolTip_TransifexProjectUrl {
get {
@@ -10362,7 +10388,7 @@ public static string ToolTip_TransifexProjectUrl {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
+ /// Looks up a localized string similar to .
///
public static string ToolTip_TwitterContactUrl {
get {
@@ -10371,7 +10397,7 @@ public static string ToolTip_TwitterContactUrl {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Total bytes received ähnelt.
+ /// Looks up a localized string similar to Total bytes received.
///
public static string TotalBytesReceived {
get {
@@ -10380,7 +10406,7 @@ public static string TotalBytesReceived {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Total bytes sent ähnelt.
+ /// Looks up a localized string similar to Total bytes sent.
///
public static string TotalBytesSent {
get {
@@ -10389,7 +10415,7 @@ public static string TotalBytesSent {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Total download ähnelt.
+ /// Looks up a localized string similar to Total download.
///
public static string TotalDownload {
get {
@@ -10398,7 +10424,7 @@ public static string TotalDownload {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Total upload ähnelt.
+ /// Looks up a localized string similar to Total upload.
///
public static string TotalUpload {
get {
@@ -10407,7 +10433,7 @@ public static string TotalUpload {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Trace ähnelt.
+ /// Looks up a localized string similar to Trace.
///
public static string Trace {
get {
@@ -10416,7 +10442,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 {
@@ -10425,7 +10451,7 @@ public static string Traceroute {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Tray ähnelt.
+ /// Looks up a localized string similar to Tray.
///
public static string Tray {
get {
@@ -10434,7 +10460,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 {
@@ -10443,7 +10469,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 {
@@ -10452,7 +10478,7 @@ public static string Type {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Unit ähnelt.
+ /// Looks up a localized string similar to Unit.
///
public static string Unit {
get {
@@ -10461,7 +10487,7 @@ public static string Unit {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Unkown error! ähnelt.
+ /// Looks up a localized string similar to Unkown error!.
///
public static string UnkownError {
get {
@@ -10470,7 +10496,7 @@ public static string UnkownError {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Unlock profile ähnelt.
+ /// Looks up a localized string similar to Unlock profile.
///
public static string UnlockProfile {
get {
@@ -10479,7 +10505,7 @@ public static string UnlockProfile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Unlock profile file ähnelt.
+ /// Looks up a localized string similar to Unlock profile file.
///
public static string UnlockProfileFile {
get {
@@ -10488,7 +10514,7 @@ public static string UnlockProfileFile {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Unlock the profile file to use the profiles! ähnelt.
+ /// Looks up a localized string similar to Unlock the profile file to use the profiles!.
///
public static string UnlockTheProfileFileMessage {
get {
@@ -10497,7 +10523,7 @@ public static string UnlockTheProfileFileMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Untray / Bring window to foreground ähnelt.
+ /// Looks up a localized string similar to Untray / Bring window to foreground.
///
public static string UntrayBringWindowToForeground {
get {
@@ -10506,7 +10532,7 @@ public static string UntrayBringWindowToForeground {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Update ähnelt.
+ /// Looks up a localized string similar to Update.
///
public static string Update {
get {
@@ -10515,7 +10541,7 @@ public static string Update {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Update available! ähnelt.
+ /// Looks up a localized string similar to Update available!.
///
public static string UpdateAvailable {
get {
@@ -10524,7 +10550,7 @@ public static string UpdateAvailable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Upload ähnelt.
+ /// Looks up a localized string similar to Upload.
///
public static string Upload {
get {
@@ -10533,7 +10559,7 @@ public static string Upload {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Uptime ähnelt.
+ /// Looks up a localized string similar to Uptime.
///
public static string Uptime {
get {
@@ -10542,7 +10568,7 @@ public static string Uptime {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die URL ähnelt.
+ /// Looks up a localized string similar to URL.
///
public static string URL {
get {
@@ -10551,7 +10577,7 @@ public static string URL {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Use cache ähnelt.
+ /// Looks up a localized string similar to Use cache.
///
public static string UseCache {
get {
@@ -10560,7 +10586,7 @@ public static string UseCache {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Use credentials ähnelt.
+ /// Looks up a localized string similar to Use credentials.
///
public static string UseCredentials {
get {
@@ -10569,7 +10595,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 {
@@ -10578,7 +10604,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 {
@@ -10587,7 +10613,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 {
@@ -10596,7 +10622,7 @@ public static string UseCustomDNSSuffix {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Use custom IPv4 address API ähnelt.
+ /// Looks up a localized string similar to Use custom IPv4 address API.
///
public static string UseCustomIPv4AddressAPI {
get {
@@ -10605,7 +10631,7 @@ public static string UseCustomIPv4AddressAPI {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Use custom IPv6 address API ähnelt.
+ /// Looks up a localized string similar to Use custom IPv6 address API.
///
public static string UseCustomIPv6AddressAPI {
get {
@@ -10614,7 +10640,7 @@ public static string UseCustomIPv6AddressAPI {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Use custom themes ähnelt.
+ /// Looks up a localized string similar to Use custom themes.
///
public static string UseCustomThemes {
get {
@@ -10623,7 +10649,7 @@ public static string UseCustomThemes {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Use gateway credentials ähnelt.
+ /// Looks up a localized string similar to Use gateway credentials.
///
public static string UseGatewayCredentials {
get {
@@ -10632,7 +10658,7 @@ public static string UseGatewayCredentials {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Use only TCP ähnelt.
+ /// Looks up a localized string similar to Use only TCP.
///
public static string UseOnlyTCP {
get {
@@ -10641,7 +10667,7 @@ public static string UseOnlyTCP {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Use other ähnelt.
+ /// Looks up a localized string similar to Use other.
///
public static string UseOther {
get {
@@ -10650,7 +10676,7 @@ public static string UseOther {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Use resolver cache ähnelt.
+ /// Looks up a localized string similar to Use resolver cache.
///
public static string UseResolverCache {
get {
@@ -10659,7 +10685,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 {
@@ -10668,7 +10694,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 {
@@ -10677,7 +10703,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 {
@@ -10686,7 +10712,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 {
@@ -10695,7 +10721,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 {
@@ -10704,7 +10730,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 {
@@ -10713,7 +10739,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 {
@@ -10722,7 +10748,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 {
@@ -10731,7 +10757,7 @@ public static string ValidationFailed {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Value ähnelt.
+ /// Looks up a localized string similar to Value.
///
public static string Value {
get {
@@ -10740,7 +10766,7 @@ public static string Value {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Vendor ähnelt.
+ /// Looks up a localized string similar to Vendor.
///
public static string Vendor {
get {
@@ -10749,7 +10775,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 {
@@ -10758,7 +10784,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 {
@@ -10767,7 +10793,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 {
@@ -10776,7 +10802,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 {
@@ -10785,7 +10811,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 {
@@ -10794,7 +10820,7 @@ public static string VisibleApplicationsInTheBar {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Visual styles ähnelt.
+ /// Looks up a localized string similar to Visual styles.
///
public static string VisualStyles {
get {
@@ -10803,7 +10829,7 @@ public static string VisualStyles {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die VLAN ähnelt.
+ /// Looks up a localized string similar to VLAN.
///
public static string VLAN {
get {
@@ -10812,7 +10838,7 @@ public static string VLAN {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Wake on LAN ähnelt.
+ /// Looks up a localized string similar to Wake on LAN.
///
public static string WakeOnLAN {
get {
@@ -10821,7 +10847,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 {
@@ -10830,7 +10856,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 {
@@ -10839,7 +10865,7 @@ public static string WalkMode {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Could not resolve ip address for hostname! ähnelt.
+ /// Looks up a localized string similar to Could not resolve ip address for hostname!.
///
public static string WarningMessage_CouldNotResolveIPAddressForHostname {
get {
@@ -10848,9 +10874,9 @@ public static string WarningMessage_CouldNotResolveIPAddressForHostname {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The current profile file is not encrypted and passwords will stored unencrypted on disk!
+ /// Looks up a localized string similar to The current profile file is not encrypted and passwords will stored unencrypted on disk!
///
- ///Enable profile file encryption in Settings>Profile to store credentials securely. ähnelt.
+ ///Enable profile file encryption in Settings>Profile to store credentials securely..
///
public static string WarningMessage_ProfileFileNotEncryptedStoringPasswords {
get {
@@ -10859,7 +10885,7 @@ public static string WarningMessage_ProfileFileNotEncryptedStoringPasswords {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Enabling this setting is not recommended. Multiple instances of the application share the same settings and profile files. The last instance to be closed may overwrite changes made by other instances. ähnelt.
+ /// Looks up a localized string similar to Enabling this setting is not recommended. Multiple instances of the application share the same settings and profile files. The last instance to be closed may overwrite changes made by other instances..
///
public static string WarnMessage_MultipleInstances {
get {
@@ -10868,7 +10894,7 @@ public static string WarnMessage_MultipleInstances {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Run command... ähnelt.
+ /// Looks up a localized string similar to Run command....
///
public static string Watermark_RunCommand {
get {
@@ -10877,7 +10903,7 @@ public static string Watermark_RunCommand {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Run command... (Ctrl+Shift+P) ähnelt.
+ /// Looks up a localized string similar to Run command... (Ctrl+Shift+P).
///
public static string Watermark_RunCommandWithHotKey {
get {
@@ -10886,7 +10912,7 @@ public static string Watermark_RunCommandWithHotKey {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Web Console ähnelt.
+ /// Looks up a localized string similar to Web Console.
///
public static string WebConsole {
get {
@@ -10895,7 +10921,7 @@ public static string WebConsole {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Website ähnelt.
+ /// Looks up a localized string similar to Website.
///
public static string Website {
get {
@@ -10904,7 +10930,7 @@ public static string Website {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die The WebView control (Microsoft Edge) cannot connect to websites with an invalid certificate! ähnelt.
+ /// Looks up a localized string similar to The WebView control (Microsoft Edge) cannot connect to websites with an invalid certificate!.
///
public static string WebViewControlCertificateIsInvalidMessage {
get {
@@ -10913,7 +10939,7 @@ public static string WebViewControlCertificateIsInvalidMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Welcome ähnelt.
+ /// Looks up a localized string similar to Welcome.
///
public static string Welcome {
get {
@@ -10922,9 +10948,9 @@ public static string Welcome {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Thank you for using NETworkManager!
+ /// Looks up a localized string similar to Thank you for using NETworkManager!
///
- ///If you like this tool, please leave a star on GitHub and recommend it to others. ähnelt.
+ ///If you like this tool, please leave a star on GitHub and recommend it to others..
///
public static string WelcomeMessage {
get {
@@ -10933,7 +10959,7 @@ public static string WelcomeMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die To provide additional features, third party services are used that are not operated by me. You can deselect them below. No data is transferred to me at any time. ähnelt.
+ /// Looks up a localized string similar to To provide additional features, third party services are used that are not operated by me. You can deselect them below. No data is transferred to me at any time..
///
public static string WelcomePrivacyMessage {
get {
@@ -10942,7 +10968,7 @@ public static string WelcomePrivacyMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die White ähnelt.
+ /// Looks up a localized string similar to White.
///
public static string White {
get {
@@ -10951,7 +10977,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 {
@@ -10960,7 +10986,7 @@ public static string Whois {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Whois server not found for the domain: "{0}" ähnelt.
+ /// Looks up a localized string similar to Whois server not found for the domain: "{0}".
///
public static string WhoisServerNotFoundForTheDomain {
get {
@@ -10969,7 +10995,7 @@ public static string WhoisServerNotFoundForTheDomain {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Wide Subnet ähnelt.
+ /// Looks up a localized string similar to Wide Subnet.
///
public static string WideSubnet {
get {
@@ -10978,7 +11004,7 @@ public static string WideSubnet {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Width ähnelt.
+ /// Looks up a localized string similar to Width.
///
public static string Width {
get {
@@ -10987,7 +11013,7 @@ public static string Width {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die WiFi ähnelt.
+ /// Looks up a localized string similar to WiFi.
///
public static string WiFi {
get {
@@ -10996,11 +11022,11 @@ public static string WiFi {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Access to the Wi-Fi adapter is not permitted by Windows.
+ /// Looks up a localized string similar to Access to the Wi-Fi adapter is not permitted by Windows.
///
///Open the Windows settings and allow Wi-Fi access for this application.
///
- ///Restart the application afterwards to use this feature. ähnelt.
+ ///Restart the application afterwards to use this feature..
///
public static string WiFiAccessNotAvailableMessage {
get {
@@ -11009,7 +11035,7 @@ public static string WiFiAccessNotAvailableMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Access to the network has been revoked ähnelt.
+ /// Looks up a localized string similar to Access to the network has been revoked.
///
public static string WiFiConnectionStatus_AccessRevoked {
get {
@@ -11018,7 +11044,7 @@ public static string WiFiConnectionStatus_AccessRevoked {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Invalid credentials ähnelt.
+ /// Looks up a localized string similar to Invalid credentials.
///
public static string WiFiConnectionStatus_InvalidCredential {
get {
@@ -11027,7 +11053,7 @@ public static string WiFiConnectionStatus_InvalidCredential {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Network not available ähnelt.
+ /// Looks up a localized string similar to Network not available.
///
public static string WiFiConnectionStatus_NetworkNotAvailable {
get {
@@ -11036,7 +11062,7 @@ public static string WiFiConnectionStatus_NetworkNotAvailable {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Successful ähnelt.
+ /// Looks up a localized string similar to Successful.
///
public static string WiFiConnectionStatus_Success {
get {
@@ -11045,7 +11071,7 @@ public static string WiFiConnectionStatus_Success {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Connection attempt timed out ähnelt.
+ /// Looks up a localized string similar to Connection attempt timed out.
///
public static string WiFiConnectionStatus_Timeout {
get {
@@ -11054,7 +11080,7 @@ public static string WiFiConnectionStatus_Timeout {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die -/- ähnelt.
+ /// Looks up a localized string similar to -/-.
///
public static string WiFiConnectionStatus_UnspecifiedFailure {
get {
@@ -11063,7 +11089,7 @@ public static string WiFiConnectionStatus_UnspecifiedFailure {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Authentication protocol is not supported! ähnelt.
+ /// Looks up a localized string similar to Authentication protocol is not supported!.
///
public static string WiFiConnectionStatus_UnsupportedAuthenticationProtocol {
get {
@@ -11072,7 +11098,7 @@ public static string WiFiConnectionStatus_UnsupportedAuthenticationProtocol {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Window ähnelt.
+ /// Looks up a localized string similar to Window.
///
public static string Window {
get {
@@ -11081,7 +11107,7 @@ public static string Window {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Windows DNS settings ähnelt.
+ /// Looks up a localized string similar to Windows DNS settings.
///
public static string WindowsDNSSettings {
get {
@@ -11090,7 +11116,7 @@ public static string WindowsDNSSettings {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die WPS ähnelt.
+ /// Looks up a localized string similar to WPS.
///
public static string WPS {
get {
@@ -11099,7 +11125,7 @@ public static string WPS {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Wrong password! ähnelt.
+ /// Looks up a localized string similar to Wrong password!.
///
public static string WrongPassword {
get {
@@ -11108,7 +11134,7 @@ public static string WrongPassword {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Profile file could not be decrypted with the given password. ähnelt.
+ /// Looks up a localized string similar to Profile file could not be decrypted with the given password..
///
public static string WrongPasswordDecryptionFailedMessage {
get {
@@ -11117,7 +11143,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 {
@@ -11126,7 +11152,7 @@ public static string WrongPasswordMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die "{0}" A dns records resolved for "{1}"! ähnelt.
+ /// Looks up a localized string similar to "{0}" A dns records resolved for "{1}"!.
///
public static string XADNSRecordsResolvedForXXXMessage {
get {
@@ -11135,7 +11161,7 @@ public static string XADNSRecordsResolvedForXXXMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die {0} seconds remaining... ähnelt.
+ /// Looks up a localized string similar to {0} seconds remaining....
///
public static string XXSecondsRemainingDots {
get {
@@ -11144,7 +11170,7 @@ public static string XXSecondsRemainingDots {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die "{0}" detected as gateway ip address! ähnelt.
+ /// Looks up a localized string similar to "{0}" detected as gateway ip address!.
///
public static string XXXDetectedAsGatewayIPAddress {
get {
@@ -11153,7 +11179,7 @@ public static string XXXDetectedAsGatewayIPAddress {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die "{0}" detected as local ip address! ähnelt.
+ /// Looks up a localized string similar to "{0}" detected as local ip address!.
///
public static string XXXDetectedAsLocalIPAddressMessage {
get {
@@ -11162,7 +11188,7 @@ public static string XXXDetectedAsLocalIPAddressMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die {0} disconnected! ähnelt.
+ /// Looks up a localized string similar to {0} disconnected!.
///
public static string XXXDisconnected {
get {
@@ -11171,7 +11197,7 @@ public static string XXXDisconnected {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die "{0}" is not reachable via ICMP! ähnelt.
+ /// Looks up a localized string similar to "{0}" is not reachable via ICMP!.
///
public static string XXXIsNotReachableViaICMPMessage {
get {
@@ -11180,7 +11206,7 @@ public static string XXXIsNotReachableViaICMPMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die "{0}" is reachable via ICMP! ähnelt.
+ /// Looks up a localized string similar to "{0}" is reachable via ICMP!.
///
public static string XXXIsReachableViaICMPMessage {
get {
@@ -11189,7 +11215,7 @@ public static string XXXIsReachableViaICMPMessage {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Yellow ähnelt.
+ /// Looks up a localized string similar to Yellow.
///
public static string Yellow {
get {
@@ -11198,7 +11224,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 {
@@ -11207,7 +11233,7 @@ public static string Yes {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Your system OS is incompatible with the latest release! ähnelt.
+ /// Looks up a localized string similar to Your system OS is incompatible with the latest release!.
///
public static string YourSystemOSIsIncompatibleWithTheLatestRelease {
get {
@@ -11216,7 +11242,7 @@ public static string YourSystemOSIsIncompatibleWithTheLatestRelease {
}
///
- /// Sucht eine lokalisierte Zeichenfolge, die Zip ähnelt.
+ /// Looks up a localized string similar to Zip.
///
public static string ZipCode {
get {
diff --git a/Source/NETworkManager.Localization/Resources/Strings.resx b/Source/NETworkManager.Localization/Resources/Strings.resx
index 57e3d02432..8d826034e8 100644
--- a/Source/NETworkManager.Localization/Resources/Strings.resx
+++ b/Source/NETworkManager.Localization/Resources/Strings.resx
@@ -3879,7 +3879,13 @@ Right-click for more options.
Profile file
-
- Hosts Editor
+
+ Hosts File Editor
+
+
+ Hosts File Editor
+
+
+ To edit the hosts file, the application must be started with elevated rights!
\ No newline at end of file
diff --git a/Source/NETworkManager.Models/AWS/AWSProfile.cs b/Source/NETworkManager.Models/AWS/AWSProfile.cs
index cc4240e64b..0fcdc08377 100644
--- a/Source/NETworkManager.Models/AWS/AWSProfile.cs
+++ b/Source/NETworkManager.Models/AWS/AWSProfile.cs
@@ -6,10 +6,10 @@ public static class AWSProfile
{
public static List GetDefaultList()
{
- return new List
- {
- new(false, "default", "eu-central-1"),
- new(false, "default", "us-east-1")
- };
+ return
+ [
+ new AWSProfileInfo(false, "default", "eu-central-1"),
+ new AWSProfileInfo(false, "default", "us-east-1")
+ ];
}
}
\ No newline at end of file
diff --git a/Source/NETworkManager.Models/AWS/AWSProfileInfo.cs b/Source/NETworkManager.Models/AWS/AWSProfileInfo.cs
index c10d98202e..e453f8a70b 100644
--- a/Source/NETworkManager.Models/AWS/AWSProfileInfo.cs
+++ b/Source/NETworkManager.Models/AWS/AWSProfileInfo.cs
@@ -1,7 +1,7 @@
namespace NETworkManager.Models.AWS;
///
-/// Class is used to store informations about an AWS profile.
+/// Class is used to store information about an AWS profile.
///
public class AWSProfileInfo
{
@@ -15,7 +15,7 @@ public AWSProfileInfo()
///
/// Create an instance of with parameters.
///
- /// .
+ /// .
/// .
/// .
public AWSProfileInfo(bool isEnabled, string profile, string region)
diff --git a/Source/NETworkManager.Models/ApplicationManager.cs b/Source/NETworkManager.Models/ApplicationManager.cs
index d2743582e7..c179b5d774 100644
--- a/Source/NETworkManager.Models/ApplicationManager.cs
+++ b/Source/NETworkManager.Models/ApplicationManager.cs
@@ -92,7 +92,7 @@ public static Canvas GetIcon(ApplicationName name)
case ApplicationName.SNTPLookup:
canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.ClockCheckOutline });
break;
- case ApplicationName.HostsEditor:
+ case ApplicationName.HostsFileEditor:
canvas.Children.Add(new PackIconMaterial { Kind = PackIconMaterialKind.FileEditOutline });
break;
case ApplicationName.DiscoveryProtocol:
diff --git a/Source/NETworkManager.Models/ApplicationName.cs b/Source/NETworkManager.Models/ApplicationName.cs
index 903a1be447..29196133fb 100644
--- a/Source/NETworkManager.Models/ApplicationName.cs
+++ b/Source/NETworkManager.Models/ApplicationName.cs
@@ -91,9 +91,9 @@ public enum ApplicationName
SNTPLookup,
///
- /// Hosts editor application.
+ /// Hosts file editor application.
///
- HostsEditor,
+ HostsFileEditor,
///
/// Discovery protocol application.
diff --git a/Source/NETworkManager.Models/HostsFileEditor/HostsFileEditor.cs b/Source/NETworkManager.Models/HostsFileEditor/HostsFileEditor.cs
new file mode 100644
index 0000000000..566913c6f4
--- /dev/null
+++ b/Source/NETworkManager.Models/HostsFileEditor/HostsFileEditor.cs
@@ -0,0 +1,112 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Text.RegularExpressions;
+using log4net;
+using NETworkManager.Utilities;
+
+namespace NETworkManager.Models.HostsFileEditor;
+
+public class HostsFileEditor
+{
+#region Events
+ public event EventHandler HostsFileChanged;
+
+ private void OnHostsFileChanged()
+ {
+ Log.Debug("OnHostsFileChanged - Hosts file changed.");
+ HostsFileChanged?.Invoke(this, EventArgs.Empty);
+ }
+ #endregion
+
+ #region Variables
+ private static readonly ILog Log = LogManager.GetLogger(typeof(HostsFileEditor));
+
+ ///
+ /// Path to the hosts file.
+ ///
+ private static string HostsFilePath => Path.Combine(Environment.SystemDirectory, "drivers", "etc", "hosts");
+
+ ///
+ /// Regex to match a hosts file entry with optional comments, supporting IPv4, IPv6, and hostnames
+ ///
+ private readonly Regex _hostsFileEntryRegex = new Regex(RegexHelper.HostsEntryRegex);
+
+ #endregion
+
+ #region Constructor
+ public HostsFileEditor()
+ {
+ // Create a file system watcher to monitor changes to the hosts file
+ try
+ {
+ Log.Debug("HostsFileEditor - Creating file system watcher for hosts file...");
+
+ FileSystemWatcher watcher = new();
+ watcher.Path = Path.GetDirectoryName(HostsFilePath) ?? throw new InvalidOperationException("Hosts file path is invalid.");
+ watcher.Filter = Path.GetFileName(HostsFilePath) ?? throw new InvalidOperationException("Hosts file name is invalid.");
+ watcher.NotifyFilter = NotifyFilters.LastWrite;
+
+ // Maybe fired twice. This is a known bug/feature.
+ // See: https://stackoverflow.com/questions/1764809/filesystemwatcher-changed-event-is-raised-twice
+ watcher.Changed += (_, _) => OnHostsFileChanged();
+
+ watcher.EnableRaisingEvents = true;
+
+ Log.Debug("HostsFileEditor - File system watcher for hosts file created.");
+ }
+ catch (Exception ex)
+ {
+ Log.Error("Failed to create file system watcher for hosts file.", ex);
+ }
+ }
+ #endregion
+
+ #region Methods
+ ///
+ ///
+ ///
+ ///
+ public IEnumerable GetHostsFileEntries()
+ {
+ var hostsFileLines = File.ReadAllLines(HostsFilePath);
+
+ // Parse the hosts file content
+ var entries = new List();
+
+ foreach (var line in hostsFileLines)
+ {
+ var result = _hostsFileEntryRegex.Match(line.Trim());
+
+ if (result.Success)
+ {
+ Log.Debug("GetHostsFileEntries - Line matched: " + line);
+
+ var entry = new HostsFileEntry
+ {
+ IsEnabled = !result.Groups[1].Value.Equals("#"),
+ IpAddress = result.Groups[2].Value,
+ HostName = result.Groups[3].Value.Replace(@"\s", "").Split([' ']),
+ Comment = result.Groups[4].Value,
+ Line = line
+ };
+
+ // Skip example entries
+ if(!entry.IsEnabled && entry.IpAddress is "102.54.94.97" or "38.25.63.10" && entry.HostName[0] is "rhino.acme.com" or "x.acme.com")
+ {
+ Log.Debug("GetHostsFileEntries - Matched example entry. Skipping...");
+ continue;
+ }
+
+ entries.Add(entry);
+ }
+ else
+ {
+ Log.Debug("GetHostsFileEntries - Line not matched: " + line);
+ }
+ }
+
+ return entries;
+ }
+ #endregion
+}
\ No newline at end of file
diff --git a/Source/NETworkManager.Models/HostsFileEditor/HostsFileEntry.cs b/Source/NETworkManager.Models/HostsFileEditor/HostsFileEntry.cs
new file mode 100644
index 0000000000..2453152314
--- /dev/null
+++ b/Source/NETworkManager.Models/HostsFileEditor/HostsFileEntry.cs
@@ -0,0 +1,68 @@
+namespace NETworkManager.Models.HostsFileEditor;
+
+///
+/// Class that represents a single entry in the hosts file.
+///
+public class HostsFileEntry
+{
+ ///
+ /// Indicates whether the entry is enabled or not.
+ ///
+ public bool IsEnabled { get; init; }
+
+ ///
+ /// IP address of the host.
+ ///
+ public string IpAddress { get; init; }
+
+ ///
+ /// Host name(s) of the host.
+ ///
+ public string[] HostName { get; init; }
+
+ ///
+ /// Comment of the host.
+ ///
+ public string Comment { get; init; }
+
+ ///
+ /// Line of the entry in the hosts file.
+ ///
+ public string Line { get; init; }
+
+ ///
+ /// Creates a new instance of .
+ ///
+ public HostsFileEntry()
+ {
+
+ }
+
+ ///
+ /// Creates a new instance of with parameters.
+ ///
+ /// Indicates whether the entry is enabled or not.
+ /// IP address of the host.
+ /// Host name(s) of the host.
+ /// Comment of the host.
+ public HostsFileEntry(bool isEnabled, string ipAddress, string[] hostName, string comment)
+ {
+ IsEnabled = isEnabled;
+ IpAddress = ipAddress;
+ HostName = hostName;
+ Comment = comment;
+ }
+
+ ///
+ /// Creates a new instance of with parameters.
+ ///
+ /// Indicates whether the entry is enabled or not.
+ /// IP address of the host.
+ /// Host name(s) of the host.
+ /// Comment of the host.
+ /// Line of the entry in the hosts file.
+ public HostsFileEntry(bool isEnabled, string ipAddress, string[] hostName, string comment, string line) : this(isEnabled, ipAddress, hostName, comment)
+ {
+ Line = line;
+ }
+}
diff --git a/Source/NETworkManager.Models/Lookup/OUILookup.cs b/Source/NETworkManager.Models/Lookup/OUILookup.cs
index 3763d4e712..20cc8e4654 100644
--- a/Source/NETworkManager.Models/Lookup/OUILookup.cs
+++ b/Source/NETworkManager.Models/Lookup/OUILookup.cs
@@ -22,7 +22,7 @@ public static class OUILookup
///
static OUILookup()
{
- OUIInfoList = new List();
+ OUIInfoList = [];
var document = new XmlDocument();
document.Load(OuiFilePath);
diff --git a/Source/NETworkManager.Models/Lookup/PortLookup.cs b/Source/NETworkManager.Models/Lookup/PortLookup.cs
index c031a407b4..cef648b1cc 100644
--- a/Source/NETworkManager.Models/Lookup/PortLookup.cs
+++ b/Source/NETworkManager.Models/Lookup/PortLookup.cs
@@ -19,7 +19,7 @@ public static class PortLookup
///
static PortLookup()
{
- PortList = new List();
+ PortList = [];
var document = new XmlDocument();
document.Load(PortsFilePath);
diff --git a/Source/NETworkManager.Settings/SettingsManager.cs b/Source/NETworkManager.Settings/SettingsManager.cs
index 91aef83eab..9fee3564fc 100644
--- a/Source/NETworkManager.Settings/SettingsManager.cs
+++ b/Source/NETworkManager.Settings/SettingsManager.cs
@@ -318,11 +318,11 @@ private static void UpgradeToLatest(Version version)
Log.Info($"Apply upgrade to {version}...");
// Add Hosts editor application
- Log.Info("Add new app \"Hosts Editor\"...");
+ Log.Info("Add new app \"Hosts File Editor\"...");
Current.General_ApplicationList.Insert(
- ApplicationManager.GetDefaultList().ToList().FindIndex(x => x.Name == ApplicationName.HostsEditor),
- ApplicationManager.GetDefaultList().First(x => x.Name == ApplicationName.HostsEditor));
+ ApplicationManager.GetDefaultList().ToList().FindIndex(x => x.Name == ApplicationName.HostsFileEditor),
+ ApplicationManager.GetDefaultList().First(x => x.Name == ApplicationName.HostsFileEditor));
}
#endregion
diff --git a/Source/NETworkManager.Utilities/RegexHelper.cs b/Source/NETworkManager.Utilities/RegexHelper.cs
index 60a4d50e63..127d2f98f1 100644
--- a/Source/NETworkManager.Utilities/RegexHelper.cs
+++ b/Source/NETworkManager.Utilities/RegexHelper.cs
@@ -111,4 +111,20 @@ public static class RegexHelper
// Match an SNMP OID (like 1.3.6.1 or .1.3.6.2)
public const string SnmpOidRegex = @"^\.?[012]\.(?:[0-9]|[1-3][0-9])(\.\d+)*$";
+
+ // Match a hosts file entry with optional comments, supporting IPv4, IPv6, and hostnames
+ // ^* : Matches the beginning of the line
+ // (#)? : Optionally matches a comment (#) at the start of the line
+ // \s* : Matches any whitespace after the comment (or before the IP)
+ // ((?:(?:\d{1,3}\.){3}\d{1,3}) : Matches an IPv4 address (e.g., 192.168.1.1)
+ // | : OR (alternation between IPv4 and IPv6)
+ // (?:(?:[A-Fa-f0-9:]+:+)+[A-Fa-f0-9]+) : Matches an IPv6 address (e.g., 2001:db8::1)
+ // \s+ : Matches one or more spaces between the IP and the hostnames
+ // ([\w.-]+(?:\s+[\w.-]+)*) : Matches one or more hostnames, separated by spaces
+ // \s* : Matches optional whitespace after hostnames
+ // (#.*)? : Optionally matches a comment after hostnames
+ // $ : Anchors the match to the end of the line
+ public static string HostsEntryRegex =>
+ @"^(#)?\s*((?:(?:\d{1,3}\.){3}\d{1,3})|(?:(?:[A-Fa-f0-9:]+:+)+[A-Fa-f0-9]+))\s+([\w.-]+(?:\s+[\w.-]+)*)\s*(#.*)?$";
+
}
\ No newline at end of file
diff --git a/Source/NETworkManager/MainWindow.xaml.cs b/Source/NETworkManager/MainWindow.xaml.cs
index bb012051d6..96e54a37ca 100644
--- a/Source/NETworkManager/MainWindow.xaml.cs
+++ b/Source/NETworkManager/MainWindow.xaml.cs
@@ -674,6 +674,7 @@ private void LoadApplicationList()
private WebConsoleHostView _webConsoleHostView;
private SNMPHostView _snmpHostView;
private SNTPLookupHostView _sntpLookupHostView;
+ private HostsFileEditorView _hostsFileEditorView;
private DiscoveryProtocolView _discoveryProtocolView;
private WakeOnLANView _wakeOnLanView;
private SubnetCalculatorHostView _subnetCalculatorHostView;
@@ -824,6 +825,14 @@ private void OnApplicationViewVisible(ApplicationName name, bool fromSettings =
ContentControlApplication.Content = _sntpLookupHostView;
break;
+ case ApplicationName.HostsFileEditor:
+ if(_hostsFileEditorView == null)
+ _hostsFileEditorView = new HostsFileEditorView();
+ else
+ _hostsFileEditorView.OnViewVisible();
+
+ ContentControlApplication.Content = _hostsFileEditorView;
+ break;
case ApplicationName.DiscoveryProtocol:
if (_discoveryProtocolView == null)
_discoveryProtocolView = new DiscoveryProtocolView();
@@ -904,6 +913,10 @@ private void OnApplicationViewVisible(ApplicationName name, bool fromSettings =
ContentControlApplication.Content = _arpTableView;
break;
+
+ default:
+ Log.Error("Cannot show unknown application view: " + name);
+ break;
}
}
@@ -959,6 +972,9 @@ private void OnApplicationViewHide(ApplicationName name)
case ApplicationName.SNTPLookup:
_sntpLookupHostView?.OnViewHide();
break;
+ case ApplicationName.HostsFileEditor:
+ _hostsFileEditorView?.OnViewHide();
+ break;
case ApplicationName.DiscoveryProtocol:
_discoveryProtocolView?.OnViewHide();
break;
@@ -989,6 +1005,9 @@ private void OnApplicationViewHide(ApplicationName name)
case ApplicationName.ARPTable:
_arpTableView?.OnViewHide();
break;
+ default:
+ Log.Error("Cannot hide unknown application view: " + name);
+ break;
}
}
diff --git a/Source/NETworkManager/NETworkManager.csproj b/Source/NETworkManager/NETworkManager.csproj
index c479f18a79..a64d71b66d 100644
--- a/Source/NETworkManager/NETworkManager.csproj
+++ b/Source/NETworkManager/NETworkManager.csproj
@@ -136,6 +136,11 @@
Wpf
Designer
+
+ MSBuild:Compile
+ Wpf
+ Designer
+
diff --git a/Source/NETworkManager/ViewModels/HostsFileEditorViewModel.cs b/Source/NETworkManager/ViewModels/HostsFileEditorViewModel.cs
new file mode 100644
index 0000000000..7f4322a743
--- /dev/null
+++ b/Source/NETworkManager/ViewModels/HostsFileEditorViewModel.cs
@@ -0,0 +1,121 @@
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Timers;
+using System.Windows;
+using System.Windows.Input;
+using System.Windows.Threading;
+using log4net;
+using MahApps.Metro.Controls.Dialogs;
+using NETworkManager.Localization.Resources;
+using NETworkManager.Models.Export;
+using NETworkManager.Models.HostsFileEditor;
+using NETworkManager.Models.Network;
+using NETworkManager.Settings;
+using NETworkManager.Utilities;
+using NETworkManager.Views;
+
+namespace NETworkManager.ViewModels;
+
+public class HostsFileEditorViewModel : ViewModelBase
+{
+ #region Variables
+ private static readonly ILog Log = LogManager.GetLogger(typeof(HostsFileEditorViewModel));
+
+ private readonly IDialogCoordinator _dialogCoordinator;
+
+ private readonly bool _isLoading;
+
+ private bool _isStatusMessageDisplayed;
+
+ public bool IsStatusMessageDisplayed
+ {
+ get => _isStatusMessageDisplayed;
+ set
+ {
+ if (value == _isStatusMessageDisplayed)
+ return;
+
+ _isStatusMessageDisplayed = value;
+ OnPropertyChanged();
+ }
+ }
+
+ private string _statusMessage;
+
+ public string StatusMessage
+ {
+ get => _statusMessage;
+ private set
+ {
+ if (value == _statusMessage)
+ return;
+
+ _statusMessage = value;
+ OnPropertyChanged();
+ }
+ }
+
+ #endregion
+
+ #region Constructor, LoadSettings
+
+ public HostsFileEditorViewModel(IDialogCoordinator instance)
+ {
+ _isLoading = true;
+
+ _dialogCoordinator = instance;
+
+ LoadSettings();
+
+ var x = new HostsFileEditor();
+
+ foreach (var y in x.GetHostsFileEntries())
+ {
+ Debug.WriteLine("IsEnabled: " + y.IsEnabled + " IpAddress: " + y.IpAddress + " HostName: " + y.HostName + " Comment: " + y.Comment);
+ }
+
+ _isLoading = false;
+ }
+
+ private void LoadSettings()
+ {
+
+ }
+
+ #endregion
+
+ #region ICommands & Actions
+
+ public ICommand RestartAsAdminCommand => new RelayCommand(_ => RestartAsAdminAction().ConfigureAwait(false));
+
+ private async Task RestartAsAdminAction()
+ {
+ try
+ {
+ (Application.Current.MainWindow as MainWindow)?.RestartApplication(true);
+ }
+ catch (Exception ex)
+ {
+ await _dialogCoordinator.ShowMessageAsync(this, Strings.Error, ex.Message,
+ MessageDialogStyle.Affirmative, AppearanceManager.MetroDialog);
+ }
+ }
+ #endregion
+
+ #region Methods
+
+ public void OnViewVisible()
+ {
+
+ }
+
+ public void OnViewHide()
+ {
+
+ }
+
+ #endregion
+}
\ No newline at end of file
diff --git a/Source/NETworkManager/Views/HostsFileEditorView.xaml b/Source/NETworkManager/Views/HostsFileEditorView.xaml
new file mode 100644
index 0000000000..d238ba1423
--- /dev/null
+++ b/Source/NETworkManager/Views/HostsFileEditorView.xaml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Source/NETworkManager/Views/HostsFileEditorView.xaml.cs b/Source/NETworkManager/Views/HostsFileEditorView.xaml.cs
new file mode 100644
index 0000000000..77a47b62f1
--- /dev/null
+++ b/Source/NETworkManager/Views/HostsFileEditorView.xaml.cs
@@ -0,0 +1,25 @@
+using MahApps.Metro.Controls.Dialogs;
+using NETworkManager.ViewModels;
+
+namespace NETworkManager.Views;
+
+public partial class HostsFileEditorView
+{
+ private readonly HostsFileEditorViewModel _viewModel = new(DialogCoordinator.Instance);
+
+ public HostsFileEditorView()
+ {
+ InitializeComponent();
+ DataContext = _viewModel;
+ }
+
+ public void OnViewHide()
+ {
+ _viewModel.OnViewHide();
+ }
+
+ public void OnViewVisible()
+ {
+ _viewModel.OnViewVisible();
+ }
+}
diff --git a/Source/NETworkManager/log4net.config b/Source/NETworkManager/log4net.config
index 49187213d7..2945e28123 100644
--- a/Source/NETworkManager/log4net.config
+++ b/Source/NETworkManager/log4net.config
@@ -1,7 +1,8 @@
-
+
+
From cfdba16e0f4589c34f9f86732255d1e076358388 Mon Sep 17 00:00:00 2001
From: BornToBeRoot <16019165+BornToBeRoot@users.noreply.github.com>
Date: Wed, 26 Mar 2025 00:44:12 +0100
Subject: [PATCH 3/4] Feature: Parse & Reload hosts file... and some cleanup /
improvements
---
.../Resources/Strings.Designer.cs | 2550 +++++++++--------
.../Resources/Strings.resx | 3 +
.../HostsFileEditor/HostsFileEditor.cs | 63 +-
.../HostsFileEditor/HostsFileEntry.cs | 19 +-
.../Network/Connection.cs | 12 +-
.../ViewModels/ARPTableViewModel.cs | 12 +-
.../AWSSessionManagerHostViewModel.cs | 10 +-
.../ViewModels/AboutViewModel.cs | 2 +-
.../ViewModels/ConnectionsViewModel.cs | 14 +-
.../ViewModels/DNSLookupHostViewModel.cs | 6 +-
.../ViewModels/HostsFileEditorViewModel.cs | 132 +-
.../IPApiDNSResolverWidgetViewModel.cs | 2 +-
.../IPApiIPGeolocationWidgetViewModel.cs | 2 +-
.../ViewModels/IPGeolocationHostViewModel.cs | 8 +-
.../ViewModels/IPScannerHostViewModel.cs | 6 +-
.../ViewModels/ListenersViewModel.cs | 10 +-
.../ViewModels/NetworkInterfaceViewModel.cs | 10 +-
.../ViewModels/PingMonitorHostViewModel.cs | 6 +-
.../ViewModels/PortScannerHostViewModel.cs | 6 +-
.../ViewModels/PowerShellHostViewModel.cs | 6 +-
.../ViewModels/ProfilesViewModel.cs | 6 +-
.../ViewModels/PuTTYHostViewModel.cs | 6 +-
.../ViewModels/RemoteDesktopHostViewModel.cs | 6 +-
.../ViewModels/SNMPHostViewModel.cs | 6 +-
.../ViewModels/SettingsAutostartViewModel.cs | 2 +-
.../ViewModels/SettingsLanguageViewModel.cs | 2 +-
.../ViewModels/TigerVNCHostViewModel.cs | 7 +-
.../ViewModels/TracerouteHostViewModel.cs | 6 +-
.../ViewModels/WakeOnLANViewModel.cs | 8 +-
.../ViewModels/WebConsoleHostViewModel.cs | 6 +-
.../ViewModels/WhoisHostViewModel.cs | 6 +-
.../ViewModels/WiFiConnectViewModel.cs | 4 +-
.../ViewModels/WiFiViewModel.cs | 39 +-
Source/NETworkManager/Views/ARPTableView.xaml | 16 +-
.../Views/HostsFileEditorView.xaml | 135 +-
.../Views/HostsFileEditorView.xaml.cs | 10 +-
36 files changed, 1720 insertions(+), 1424 deletions(-)
diff --git a/Source/NETworkManager.Localization/Resources/Strings.Designer.cs b/Source/NETworkManager.Localization/Resources/Strings.Designer.cs
index 959966a88d..e074ddeb6b 100644
--- a/Source/NETworkManager.Localization/Resources/Strings.Designer.cs
+++ b/Source/NETworkManager.Localization/Resources/Strings.Designer.cs
@@ -1,9 +1,10 @@
//------------------------------------------------------------------------------
//
-// This code was generated by a tool.
+// 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.
//
//------------------------------------------------------------------------------
@@ -12,12 +13,12 @@ namespace NETworkManager.Localization.Resources {
///
- /// 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", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
@@ -32,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 {
@@ -46,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 {
@@ -60,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 {
@@ -69,7 +70,7 @@ public static string About {
}
///
- /// Looks up a localized string similar to Steel.
+ /// Sucht eine lokalisierte Zeichenfolge, die Steel ähnelt.
///
public static string Accen_Steel {
get {
@@ -78,7 +79,7 @@ public static string Accen_Steel {
}
///
- /// Looks up a localized string similar to Accent.
+ /// Sucht eine lokalisierte Zeichenfolge, die Accent ähnelt.
///
public static string Accent {
get {
@@ -87,7 +88,7 @@ public static string Accent {
}
///
- /// Looks up a localized string similar to Amber.
+ /// Sucht eine lokalisierte Zeichenfolge, die Amber ähnelt.
///
public static string Accent_Amber {
get {
@@ -96,7 +97,7 @@ public static string Accent_Amber {
}
///
- /// Looks up a localized string similar to Black.
+ /// Sucht eine lokalisierte Zeichenfolge, die Black ähnelt.
///
public static string Accent_Black {
get {
@@ -105,7 +106,7 @@ public static string Accent_Black {
}
///
- /// Looks up a localized string similar to Blue.
+ /// Sucht eine lokalisierte Zeichenfolge, die Blue ähnelt.
///
public static string Accent_Blue {
get {
@@ -114,7 +115,7 @@ public static string Accent_Blue {
}
///
- /// Looks up a localized string similar to Brown.
+ /// Sucht eine lokalisierte Zeichenfolge, die Brown ähnelt.
///
public static string Accent_Brown {
get {
@@ -123,7 +124,7 @@ public static string Accent_Brown {
}
///
- /// Looks up a localized string similar to Cobalt.
+ /// Sucht eine lokalisierte Zeichenfolge, die Cobalt ähnelt.
///
public static string Accent_Cobalt {
get {
@@ -132,7 +133,7 @@ public static string Accent_Cobalt {
}
///
- /// Looks up a localized string similar to Crimson.
+ /// Sucht eine lokalisierte Zeichenfolge, die Crimson ähnelt.
///
public static string Accent_Crimson {
get {
@@ -141,7 +142,7 @@ public static string Accent_Crimson {
}
///
- /// Looks up a localized string similar to Cyan.
+ /// Sucht eine lokalisierte Zeichenfolge, die Cyan ähnelt.
///
public static string Accent_Cyan {
get {
@@ -150,7 +151,7 @@ public static string Accent_Cyan {
}
///
- /// Looks up a localized string similar to Emerald.
+ /// Sucht eine lokalisierte Zeichenfolge, die Emerald ähnelt.
///
public static string Accent_Emerald {
get {
@@ -159,7 +160,7 @@ public static string Accent_Emerald {
}
///
- /// Looks up a localized string similar to Green.
+ /// Sucht eine lokalisierte Zeichenfolge, die Green ähnelt.
///
public static string Accent_Green {
get {
@@ -168,7 +169,7 @@ public static string Accent_Green {
}
///
- /// Looks up a localized string similar to Indigo.
+ /// Sucht eine lokalisierte Zeichenfolge, die Indigo ähnelt.
///
public static string Accent_Indigo {
get {
@@ -177,7 +178,7 @@ public static string Accent_Indigo {
}
///
- /// Looks up a localized string similar to Lime.
+ /// Sucht eine lokalisierte Zeichenfolge, die Lime ähnelt.
///
public static string Accent_Lime {
get {
@@ -186,7 +187,7 @@ public static string Accent_Lime {
}
///
- /// Looks up a localized string similar to Magenta.
+ /// Sucht eine lokalisierte Zeichenfolge, die Magenta ähnelt.
///
public static string Accent_Magenta {
get {
@@ -195,7 +196,7 @@ public static string Accent_Magenta {
}
///
- /// Looks up a localized string similar to Mauve.
+ /// Sucht eine lokalisierte Zeichenfolge, die Mauve ähnelt.
///
public static string Accent_Mauve {
get {
@@ -204,7 +205,7 @@ public static string Accent_Mauve {
}
///
- /// Looks up a localized string similar to Olive.
+ /// Sucht eine lokalisierte Zeichenfolge, die Olive ähnelt.
///
public static string Accent_Olive {
get {
@@ -213,7 +214,7 @@ public static string Accent_Olive {
}
///
- /// Looks up a localized string similar to Orange.
+ /// Sucht eine lokalisierte Zeichenfolge, die Orange ähnelt.
///
public static string Accent_Orange {
get {
@@ -222,7 +223,7 @@ public static string Accent_Orange {
}
///
- /// Looks up a localized string similar to Purple.
+ /// Sucht eine lokalisierte Zeichenfolge, die Purple ähnelt.
///
public static string Accent_Purple {
get {
@@ -231,7 +232,7 @@ public static string Accent_Purple {
}
///
- /// Looks up a localized string similar to Red.
+ /// Sucht eine lokalisierte Zeichenfolge, die Red ähnelt.
///
public static string Accent_Red {
get {
@@ -240,7 +241,7 @@ public static string Accent_Red {
}
///
- /// Looks up a localized string similar to Sienna.
+ /// Sucht eine lokalisierte Zeichenfolge, die Sienna ähnelt.
///
public static string Accent_Sienna {
get {
@@ -249,7 +250,7 @@ public static string Accent_Sienna {
}
///
- /// Looks up a localized string similar to Steel.
+ /// Sucht eine lokalisierte Zeichenfolge, die Steel ähnelt.
///
public static string Accent_Steel {
get {
@@ -258,7 +259,7 @@ public static string Accent_Steel {
}
///
- /// Looks up a localized string similar to Taupe.
+ /// Sucht eine lokalisierte Zeichenfolge, die Taupe ähnelt.
///
public static string Accent_Taupe {
get {
@@ -267,7 +268,7 @@ public static string Accent_Taupe {
}
///
- /// Looks up a localized string similar to Teal.
+ /// Sucht eine lokalisierte Zeichenfolge, die Teal ähnelt.
///
public static string Accent_Teal {
get {
@@ -276,7 +277,7 @@ public static string Accent_Teal {
}
///
- /// Looks up a localized string similar to Pink.
+ /// Sucht eine lokalisierte Zeichenfolge, die Pink ähnelt.
///
public static string Accent_Violet {
get {
@@ -285,7 +286,7 @@ public static string Accent_Violet {
}
///
- /// Looks up a localized string similar to Yellow.
+ /// Sucht eine lokalisierte Zeichenfolge, die Yellow ähnelt.
///
public static string Accent_Yellow {
get {
@@ -294,7 +295,7 @@ public static string Accent_Yellow {
}
///
- /// Looks up a localized string similar to Add.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add ähnelt.
///
public static string Add {
get {
@@ -303,7 +304,7 @@ public static string Add {
}
///
- /// Looks up a localized string similar to Add a host to monitor.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add a host to monitor ähnelt.
///
public static string AddAHostToMonitor {
get {
@@ -312,7 +313,7 @@ public static string AddAHostToMonitor {
}
///
- /// 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 {
@@ -321,7 +322,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 {
@@ -330,7 +331,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 {
@@ -339,7 +340,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 {
@@ -348,7 +349,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 {
@@ -357,7 +358,7 @@ public static string AddATabToPerformAPortScan {
}
///
- /// Looks up a localized string similar to Add a tab to perform a SNTP lookup....
+ /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to perform a SNTP lookup... ähnelt.
///
public static string AddATabToPerformASNTPLookup {
get {
@@ -366,7 +367,7 @@ public static string AddATabToPerformASNTPLookup {
}
///
- /// 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 {
@@ -375,7 +376,7 @@ public static string AddATabToPerformATrace {
}
///
- /// Looks up a localized string similar to Add a tab to query the IP geolocation....
+ /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to query the IP geolocation... ähnelt.
///
public static string AddATabToQueryTheIPGeolocation {
get {
@@ -384,7 +385,7 @@ public static string AddATabToQueryTheIPGeolocation {
}
///
- /// Looks up a localized string similar to Add a tab to query whois....
+ /// Sucht eine lokalisierte Zeichenfolge, die Add a tab to query whois... ähnelt.
///
public static string AddATabToQueryWhois {
get {
@@ -393,7 +394,7 @@ public static string AddATabToQueryWhois {
}
///
- /// Looks up a localized string similar to Add AWS profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add AWS profile ähnelt.
///
public static string AddAWSProfile {
get {
@@ -402,7 +403,7 @@ public static string AddAWSProfile {
}
///
- /// Looks up a localized string similar to Add credentials.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add credentials ähnelt.
///
public static string AddCredentials {
get {
@@ -411,7 +412,7 @@ public static string AddCredentials {
}
///
- /// Looks up a localized string similar to Add custom command.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add custom command ähnelt.
///
public static string AddCustomCommand {
get {
@@ -420,7 +421,7 @@ public static string AddCustomCommand {
}
///
- /// Looks up a localized string similar to Add DNS server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add DNS server ähnelt.
///
public static string AddDNSServer {
get {
@@ -429,7 +430,7 @@ public static string AddDNSServer {
}
///
- /// 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 {
@@ -438,7 +439,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 {
@@ -447,7 +448,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 {
@@ -456,7 +457,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 {
@@ -465,7 +466,7 @@ public static string AddEntryDots {
}
///
- /// Looks up a localized string similar to Add group.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add group ähnelt.
///
public static string AddGroup {
get {
@@ -474,7 +475,7 @@ public static string AddGroup {
}
///
- /// Looks up a localized string similar to Add host.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add host ähnelt.
///
public static string AddHost {
get {
@@ -483,7 +484,7 @@ public static string AddHost {
}
///
- /// Looks up a localized string similar to Add IPv4 address.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add IPv4 address ähnelt.
///
public static string AddIPv4Address {
get {
@@ -492,7 +493,7 @@ public static string AddIPv4Address {
}
///
- /// Looks up a localized string similar to Add IPv4 address....
+ /// Sucht eine lokalisierte Zeichenfolge, die Add IPv4 address... ähnelt.
///
public static string AddIPv4AddressDots {
get {
@@ -501,7 +502,7 @@ public static string AddIPv4AddressDots {
}
///
- /// Looks up a localized string similar to Additional command line.
+ /// Sucht eine lokalisierte Zeichenfolge, die Additional command line ähnelt.
///
public static string AdditionalCommandLine {
get {
@@ -510,7 +511,7 @@ public static string AdditionalCommandLine {
}
///
- /// Looks up a localized string similar to Additional config....
+ /// Sucht eine lokalisierte Zeichenfolge, die Additional config... ähnelt.
///
public static string AdditionalConfigDots {
get {
@@ -519,7 +520,7 @@ public static string AdditionalConfigDots {
}
///
- /// Looks up a localized string similar to Additionals.
+ /// Sucht eine lokalisierte Zeichenfolge, die Additionals ähnelt.
///
public static string Additionals {
get {
@@ -528,7 +529,7 @@ public static string Additionals {
}
///
- /// Looks up a localized string similar to Add OID profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add OID profile ähnelt.
///
public static string AddOIDProfile {
get {
@@ -537,7 +538,7 @@ public static string AddOIDProfile {
}
///
- /// Looks up a localized string similar to Add port profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add port profile ähnelt.
///
public static string AddPortProfile {
get {
@@ -546,7 +547,7 @@ public static string AddPortProfile {
}
///
- /// Looks up a localized string similar to Add profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add profile ähnelt.
///
public static string AddProfile {
get {
@@ -555,7 +556,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 {
@@ -564,7 +565,7 @@ public static string AddProfileDots {
}
///
- /// Looks up a localized string similar to Add profile file.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add profile file ähnelt.
///
public static string AddProfileFile {
get {
@@ -573,7 +574,7 @@ public static string AddProfileFile {
}
///
- /// Looks up a localized string similar to Add server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add server ähnelt.
///
public static string AddServer {
get {
@@ -582,7 +583,7 @@ public static string AddServer {
}
///
- /// Looks up a localized string similar to Add SNTP server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add SNTP server ähnelt.
///
public static string AddSNTPServer {
get {
@@ -591,7 +592,7 @@ public static string AddSNTPServer {
}
///
- /// Looks up a localized string similar to Add tab.
+ /// Sucht eine lokalisierte Zeichenfolge, die Add tab ähnelt.
///
public static string AddTab {
get {
@@ -600,7 +601,7 @@ public static string AddTab {
}
///
- /// Looks up a localized string similar to Add tab....
+ /// Sucht eine lokalisierte Zeichenfolge, die Add tab... ähnelt.
///
public static string AddTabDots {
get {
@@ -609,7 +610,7 @@ public static string AddTabDots {
}
///
- /// Looks up a localized string similar to Adjust screen.
+ /// Sucht eine lokalisierte Zeichenfolge, die Adjust screen ähnelt.
///
public static string AdjustScreen {
get {
@@ -618,7 +619,7 @@ public static string AdjustScreen {
}
///
- /// Looks up a localized string similar to Adjust screen automatically.
+ /// Sucht eine lokalisierte Zeichenfolge, die Adjust screen automatically ähnelt.
///
public static string AdjustScreenAutomatically {
get {
@@ -627,7 +628,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 {
@@ -636,7 +637,7 @@ public static string Administrator {
}
///
- /// Looks up a localized string similar to All.
+ /// Sucht eine lokalisierte Zeichenfolge, die All ähnelt.
///
public static string All {
get {
@@ -645,7 +646,7 @@ public static string All {
}
///
- /// Looks up a localized string similar to All settings can be changed later in the settings!.
+ /// Sucht eine lokalisierte Zeichenfolge, die All settings can be changed later in the settings! ähnelt.
///
public static string AllSettingsCanBeChangedLaterInTheSettings {
get {
@@ -654,7 +655,7 @@ public static string AllSettingsCanBeChangedLaterInTheSettings {
}
///
- /// 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 {
@@ -663,7 +664,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 {
@@ -672,7 +673,7 @@ public static string Amber {
}
///
- /// Looks up a localized string similar to An AWS region named "{0}" does not exist!.
+ /// Sucht eine lokalisierte Zeichenfolge, die An AWS region named "{0}" does not exist! ähnelt.
///
public static string AnAWSRegionNamedXDoesNotExist {
get {
@@ -681,7 +682,7 @@ public static string AnAWSRegionNamedXDoesNotExist {
}
///
- /// Looks up a localized string similar to An error occurred while exporting the data. See error message for details:.
+ /// Sucht eine lokalisierte Zeichenfolge, die An error occurred while exporting the data. See error message for details: ähnelt.
///
public static string AnErrorOccurredWhileExportingTheData {
get {
@@ -690,7 +691,7 @@ public static string AnErrorOccurredWhileExportingTheData {
}
///
- /// Looks up a localized string similar to Answers.
+ /// Sucht eine lokalisierte Zeichenfolge, die Answers ähnelt.
///
public static string Answers {
get {
@@ -699,7 +700,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 {
@@ -708,7 +709,7 @@ public static string Appearance {
}
///
- /// Looks up a localized string similar to ARP Table.
+ /// Sucht eine lokalisierte Zeichenfolge, die ARP Table ähnelt.
///
public static string ApplicationName_ARPTable {
get {
@@ -717,7 +718,7 @@ public static string ApplicationName_ARPTable {
}
///
- /// Looks up a localized string similar to AWS Session Manager.
+ /// Sucht eine lokalisierte Zeichenfolge, die AWS Session Manager ähnelt.
///
public static string ApplicationName_AWSSessionManager {
get {
@@ -726,7 +727,7 @@ public static string ApplicationName_AWSSessionManager {
}
///
- /// Looks up a localized string similar to Bit Calculator.
+ /// Sucht eine lokalisierte Zeichenfolge, die Bit Calculator ähnelt.
///
public static string ApplicationName_BitCalculator {
get {
@@ -735,7 +736,7 @@ public static string ApplicationName_BitCalculator {
}
///
- /// Looks up a localized string similar to Connections.
+ /// Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt.
///
public static string ApplicationName_Connections {
get {
@@ -744,7 +745,7 @@ public static string ApplicationName_Connections {
}
///
- /// Looks up a localized string similar to Dashboard.
+ /// Sucht eine lokalisierte Zeichenfolge, die Dashboard ähnelt.
///
public static string ApplicationName_Dashboard {
get {
@@ -753,7 +754,7 @@ public static string ApplicationName_Dashboard {
}
///
- /// Looks up a localized string similar to Discovery Protocol.
+ /// Sucht eine lokalisierte Zeichenfolge, die Discovery Protocol ähnelt.
///
public static string ApplicationName_DiscoveryProtocol {
get {
@@ -762,7 +763,7 @@ public static string ApplicationName_DiscoveryProtocol {
}
///
- /// Looks up a localized string similar to DNS Lookup.
+ /// Sucht eine lokalisierte Zeichenfolge, die DNS Lookup ähnelt.
///
public static string ApplicationName_DNSLookup {
get {
@@ -771,7 +772,7 @@ public static string ApplicationName_DNSLookup {
}
///
- /// Looks up a localized string similar to Hosts File Editor.
+ /// Sucht eine lokalisierte Zeichenfolge, die Hosts File Editor ähnelt.
///
public static string ApplicationName_HostsFileEditor {
get {
@@ -780,7 +781,7 @@ public static string ApplicationName_HostsFileEditor {
}
///
- /// Looks up a localized string similar to HTTP Headers.
+ /// Sucht eine lokalisierte Zeichenfolge, die HTTP Headers ähnelt.
///
public static string ApplicationName_HTTPHeaders {
get {
@@ -789,7 +790,7 @@ public static string ApplicationName_HTTPHeaders {
}
///
- /// Looks up a localized string similar to IP Geolocation.
+ /// Sucht eine lokalisierte Zeichenfolge, die IP Geolocation ähnelt.
///
public static string ApplicationName_IPGeolocation {
get {
@@ -798,7 +799,7 @@ public static string ApplicationName_IPGeolocation {
}
///
- /// Looks up a localized string similar to IP Scanner.
+ /// Sucht eine lokalisierte Zeichenfolge, die IP Scanner ähnelt.
///
public static string ApplicationName_IPScanner {
get {
@@ -807,7 +808,7 @@ public static string ApplicationName_IPScanner {
}
///
- /// Looks up a localized string similar to Listeners.
+ /// Sucht eine lokalisierte Zeichenfolge, die Listeners ähnelt.
///
public static string ApplicationName_Listeners {
get {
@@ -816,7 +817,7 @@ public static string ApplicationName_Listeners {
}
///
- /// Looks up a localized string similar to Lookup.
+ /// Sucht eine lokalisierte Zeichenfolge, die Lookup ähnelt.
///
public static string ApplicationName_Lookup {
get {
@@ -825,7 +826,7 @@ public static string ApplicationName_Lookup {
}
///
- /// Looks up a localized string similar to Network Interface.
+ /// Sucht eine lokalisierte Zeichenfolge, die Network Interface ähnelt.
///
public static string ApplicationName_NetworkInterface {
get {
@@ -834,7 +835,7 @@ public static string ApplicationName_NetworkInterface {
}
///
- /// Looks up a localized string similar to Ping.
+ /// Sucht eine lokalisierte Zeichenfolge, die Ping ähnelt.
///
public static string ApplicationName_Ping {
get {
@@ -843,7 +844,7 @@ public static string ApplicationName_Ping {
}
///
- /// Looks up a localized string similar to Ping Monitor.
+ /// Sucht eine lokalisierte Zeichenfolge, die Ping Monitor ähnelt.
///
public static string ApplicationName_PingMonitor {
get {
@@ -852,7 +853,7 @@ public static string ApplicationName_PingMonitor {
}
///
- /// Looks up a localized string similar to Port Scanner.
+ /// Sucht eine lokalisierte Zeichenfolge, die Port Scanner ähnelt.
///
public static string ApplicationName_PortScanner {
get {
@@ -861,7 +862,7 @@ public static string ApplicationName_PortScanner {
}
///
- /// Looks up a localized string similar to PowerShell.
+ /// Sucht eine lokalisierte Zeichenfolge, die PowerShell ähnelt.
///
public static string ApplicationName_PowerShell {
get {
@@ -870,7 +871,7 @@ public static string ApplicationName_PowerShell {
}
///
- /// Looks up a localized string similar to PuTTY.
+ /// Sucht eine lokalisierte Zeichenfolge, die PuTTY ähnelt.
///
public static string ApplicationName_PuTTY {
get {
@@ -879,7 +880,7 @@ public static string ApplicationName_PuTTY {
}
///
- /// Looks up a localized string similar to Remote Desktop.
+ /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop ähnelt.
///
public static string ApplicationName_RemoteDesktop {
get {
@@ -888,7 +889,7 @@ public static string ApplicationName_RemoteDesktop {
}
///
- /// Looks up a localized string similar to SNMP.
+ /// Sucht eine lokalisierte Zeichenfolge, die SNMP ähnelt.
///
public static string ApplicationName_SNMP {
get {
@@ -897,7 +898,7 @@ public static string ApplicationName_SNMP {
}
///
- /// Looks up a localized string similar to SNTP Lookup.
+ /// Sucht eine lokalisierte Zeichenfolge, die SNTP Lookup ähnelt.
///
public static string ApplicationName_SNTPLookup {
get {
@@ -906,7 +907,7 @@ public static string ApplicationName_SNTPLookup {
}
///
- /// Looks up a localized string similar to Subnet Calculator.
+ /// Sucht eine lokalisierte Zeichenfolge, die Subnet Calculator ähnelt.
///
public static string ApplicationName_SubnetCalculator {
get {
@@ -915,7 +916,7 @@ public static string ApplicationName_SubnetCalculator {
}
///
- /// Looks up a localized string similar to TigerVNC.
+ /// Sucht eine lokalisierte Zeichenfolge, die TigerVNC ähnelt.
///
public static string ApplicationName_TigerVNC {
get {
@@ -924,7 +925,7 @@ public static string ApplicationName_TigerVNC {
}
///
- /// Looks up a localized string similar to Traceroute.
+ /// Sucht eine lokalisierte Zeichenfolge, die Traceroute ähnelt.
///
public static string ApplicationName_Traceroute {
get {
@@ -933,7 +934,7 @@ public static string ApplicationName_Traceroute {
}
///
- /// Looks up a localized string similar to Wake on LAN.
+ /// Sucht eine lokalisierte Zeichenfolge, die Wake on LAN ähnelt.
///
public static string ApplicationName_WakeOnLAN {
get {
@@ -942,7 +943,7 @@ public static string ApplicationName_WakeOnLAN {
}
///
- /// Looks up a localized string similar to Web Console.
+ /// Sucht eine lokalisierte Zeichenfolge, die Web Console ähnelt.
///
public static string ApplicationName_WebConsole {
get {
@@ -951,7 +952,7 @@ public static string ApplicationName_WebConsole {
}
///
- /// Looks up a localized string similar to Whois.
+ /// Sucht eine lokalisierte Zeichenfolge, die Whois ähnelt.
///
public static string ApplicationName_Whois {
get {
@@ -960,7 +961,7 @@ public static string ApplicationName_Whois {
}
///
- /// Looks up a localized string similar to WiFi.
+ /// Sucht eine lokalisierte Zeichenfolge, die WiFi ähnelt.
///
public static string ApplicationName_WiFi {
get {
@@ -969,7 +970,7 @@ public static string ApplicationName_WiFi {
}
///
- /// Looks up a localized string similar to Applications.
+ /// Sucht eine lokalisierte Zeichenfolge, die Applications ähnelt.
///
public static string Applications {
get {
@@ -978,7 +979,7 @@ public static string Applications {
}
///
- /// Looks up a localized string similar to The application will be restarted afterwards!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The application will be restarted afterwards! ähnelt.
///
public static string ApplicationWillBeRestartedAfterwards {
get {
@@ -987,7 +988,7 @@ public static string ApplicationWillBeRestartedAfterwards {
}
///
- /// Looks up a localized string similar to Apply.
+ /// Sucht eine lokalisierte Zeichenfolge, die Apply ähnelt.
///
public static string Apply {
get {
@@ -996,7 +997,7 @@ public static string Apply {
}
///
- /// Looks up a localized string similar to Apply theme to PowerShell console.
+ /// Sucht eine lokalisierte Zeichenfolge, die Apply theme to PowerShell console ähnelt.
///
public static string ApplyThemeToPowerShellConsole {
get {
@@ -1005,7 +1006,7 @@ public static string ApplyThemeToPowerShellConsole {
}
///
- /// Looks up a localized string similar to Apply Windows key combinations.
+ /// Sucht eine lokalisierte Zeichenfolge, die Apply Windows key combinations ähnelt.
///
public static string ApplyWindowsKeyCombinations {
get {
@@ -1014,7 +1015,7 @@ public static string ApplyWindowsKeyCombinations {
}
///
- /// 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 {
@@ -1023,7 +1024,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 {
@@ -1032,7 +1033,7 @@ public static string AreYouSure {
}
///
- /// Looks up a localized string similar to Arguments.
+ /// Sucht eine lokalisierte Zeichenfolge, die Arguments ähnelt.
///
public static string Arguments {
get {
@@ -1041,7 +1042,7 @@ public static string Arguments {
}
///
- /// Looks up a localized string similar to ARP.
+ /// Sucht eine lokalisierte Zeichenfolge, die ARP ähnelt.
///
public static string ARP {
get {
@@ -1050,7 +1051,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 {
@@ -1059,7 +1060,7 @@ public static string ARPTable {
}
///
- /// Looks up a localized string similar to ASN.
+ /// Sucht eine lokalisierte Zeichenfolge, die ASN ähnelt.
///
public static string ASN {
get {
@@ -1068,7 +1069,7 @@ public static string ASN {
}
///
- /// Looks up a localized string similar to AS Name.
+ /// Sucht eine lokalisierte Zeichenfolge, die AS Name ähnelt.
///
public static string ASName {
get {
@@ -1077,7 +1078,7 @@ public static string ASName {
}
///
- /// 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 {
@@ -1086,7 +1087,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 {
@@ -1095,7 +1096,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 {
@@ -1104,7 +1105,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 {
@@ -1113,7 +1114,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 {
@@ -1122,7 +1123,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 {
@@ -1131,7 +1132,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 {
@@ -1140,7 +1141,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 {
@@ -1149,7 +1150,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 {
@@ -1158,7 +1159,7 @@ public static string AverageTime {
}
///
- /// Looks up a localized string similar to AWS CLI v2 is installed!.
+ /// Sucht eine lokalisierte Zeichenfolge, die AWS CLI v2 is installed! ähnelt.
///
public static string AWSCLIv2IsInstalled {
get {
@@ -1167,7 +1168,7 @@ public static string AWSCLIv2IsInstalled {
}
///
- /// Looks up a localized string similar to AWS CLI v2 is not installed!.
+ /// Sucht eine lokalisierte Zeichenfolge, die AWS CLI v2 is not installed! ähnelt.
///
public static string AWSCLIv2IsNotInstalled {
get {
@@ -1176,7 +1177,7 @@ public static string AWSCLIv2IsNotInstalled {
}
///
- /// Looks up a localized string similar to AWS Session Manager.
+ /// Sucht eine lokalisierte Zeichenfolge, die AWS Session Manager ähnelt.
///
public static string AWSSessionManager {
get {
@@ -1185,7 +1186,7 @@ public static string AWSSessionManager {
}
///
- /// Looks up a localized string similar to AWS Session Manager Plugin is installed!.
+ /// Sucht eine lokalisierte Zeichenfolge, die AWS Session Manager Plugin is installed! ähnelt.
///
public static string AWSSessionManagerPluginIsInstalled {
get {
@@ -1194,7 +1195,7 @@ public static string AWSSessionManagerPluginIsInstalled {
}
///
- /// Looks up a localized string similar to AWS Session Manager Plugin is not installed!.
+ /// Sucht eine lokalisierte Zeichenfolge, die AWS Session Manager Plugin is not installed! ähnelt.
///
public static string AWSSessionManagerPluginIsNotInstalled {
get {
@@ -1203,7 +1204,7 @@ public static string AWSSessionManagerPluginIsNotInstalled {
}
///
- /// Looks up a localized string similar to back.
+ /// Sucht eine lokalisierte Zeichenfolge, die back ähnelt.
///
public static string Back {
get {
@@ -1212,7 +1213,7 @@ public static string Back {
}
///
- /// Looks up a localized string similar to Background job.
+ /// Sucht eine lokalisierte Zeichenfolge, die Background job ähnelt.
///
public static string BackgroundJob {
get {
@@ -1221,7 +1222,7 @@ public static string BackgroundJob {
}
///
- /// Looks up a localized string similar to Backup.
+ /// Sucht eine lokalisierte Zeichenfolge, die Backup ähnelt.
///
public static string Backup {
get {
@@ -1230,7 +1231,7 @@ public static string Backup {
}
///
- /// Looks up a localized string similar to Bandwidth.
+ /// Sucht eine lokalisierte Zeichenfolge, die Bandwidth ähnelt.
///
public static string Bandwidth {
get {
@@ -1239,7 +1240,7 @@ public static string Bandwidth {
}
///
- /// Looks up a localized string similar to Baud.
+ /// Sucht eine lokalisierte Zeichenfolge, die Baud ähnelt.
///
public static string Baud {
get {
@@ -1248,7 +1249,7 @@ public static string Baud {
}
///
- /// Looks up a localized string similar to Baud rate.
+ /// Sucht eine lokalisierte Zeichenfolge, die Baud rate ähnelt.
///
public static string BaudRate {
get {
@@ -1257,7 +1258,7 @@ public static string BaudRate {
}
///
- /// Looks up a localized string similar to Beacon interval.
+ /// Sucht eine lokalisierte Zeichenfolge, die Beacon interval ähnelt.
///
public static string BeaconInterval {
get {
@@ -1266,7 +1267,7 @@ public static string BeaconInterval {
}
///
- /// Looks up a localized string similar to Bit Calculator.
+ /// Sucht eine lokalisierte Zeichenfolge, die Bit Calculator ähnelt.
///
public static string BitCalculator {
get {
@@ -1275,7 +1276,7 @@ public static string BitCalculator {
}
///
- /// Looks up a localized string similar to Bits.
+ /// Sucht eine lokalisierte Zeichenfolge, die Bits ähnelt.
///
public static string Bits {
get {
@@ -1284,7 +1285,7 @@ public static string Bits {
}
///
- /// Looks up a localized string similar to Black.
+ /// Sucht eine lokalisierte Zeichenfolge, die Black ähnelt.
///
public static string Black {
get {
@@ -1293,7 +1294,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 {
@@ -1302,7 +1303,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 {
@@ -1311,7 +1312,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 {
@@ -1320,7 +1321,7 @@ public static string Brown {
}
///
- /// Looks up a localized string similar to Browser.
+ /// Sucht eine lokalisierte Zeichenfolge, die Browser ähnelt.
///
public static string Browser {
get {
@@ -1329,7 +1330,7 @@ public static string Browser {
}
///
- /// Looks up a localized string similar to BSSID.
+ /// Sucht eine lokalisierte Zeichenfolge, die BSSID ähnelt.
///
public static string BSSID {
get {
@@ -1338,7 +1339,7 @@ public static string BSSID {
}
///
- /// Looks up a localized string similar to Buffer.
+ /// Sucht eine lokalisierte Zeichenfolge, die Buffer ähnelt.
///
public static string Buffer {
get {
@@ -1347,7 +1348,7 @@ public static string Buffer {
}
///
- /// Looks up a localized string similar to Bypass for local addresses.
+ /// Sucht eine lokalisierte Zeichenfolge, die Bypass for local addresses ähnelt.
///
public static string BypassForLocalAddresses {
get {
@@ -1356,7 +1357,7 @@ public static string BypassForLocalAddresses {
}
///
- /// Looks up a localized string similar to Bytes.
+ /// Sucht eine lokalisierte Zeichenfolge, die Bytes ähnelt.
///
public static string Bytes {
get {
@@ -1365,7 +1366,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 {
@@ -1374,7 +1375,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 {
@@ -1383,7 +1384,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 {
@@ -1392,7 +1393,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 {
@@ -1401,7 +1402,7 @@ public static string CanceledByUserMessage {
}
///
- /// Looks up a localized string similar to Host cannot be set while other hosts are being added. Please wait until the process is complete and try again..
+ /// Sucht eine lokalisierte Zeichenfolge, die Host cannot be set while other hosts are being added. Please wait until the process is complete and try again. ähnelt.
///
public static string CannotSetHostWhileRunningMessage {
get {
@@ -1410,7 +1411,7 @@ public static string CannotSetHostWhileRunningMessage {
}
///
- /// 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 {
@@ -1419,7 +1420,7 @@ public static string CapsLockIsEnabled {
}
///
- /// Looks up a localized string similar to Capture.
+ /// Sucht eine lokalisierte Zeichenfolge, die Capture ähnelt.
///
public static string Capture {
get {
@@ -1428,7 +1429,7 @@ public static string Capture {
}
///
- /// Looks up a localized string similar to Capture network packets to view LLDP or CDP information!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Capture network packets to view LLDP or CDP information! ähnelt.
///
public static string CaptureNetworkPacketsToViewLLDPorCDPInformation {
get {
@@ -1437,7 +1438,7 @@ public static string CaptureNetworkPacketsToViewLLDPorCDPInformation {
}
///
- /// Looks up a localized string similar to Capturing network packages....
+ /// Sucht eine lokalisierte Zeichenfolge, die Capturing network packages... ähnelt.
///
public static string CapturingNetworkPackagesDots {
get {
@@ -1446,7 +1447,7 @@ public static string CapturingNetworkPackagesDots {
}
///
- /// Looks up a localized string similar to Change.
+ /// Sucht eine lokalisierte Zeichenfolge, die Change ähnelt.
///
public static string Change {
get {
@@ -1455,7 +1456,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 ChangeMasterPassword {
get {
@@ -1464,7 +1465,7 @@ public static string ChangeMasterPassword {
}
///
- /// Looks up a localized string similar to Change Master Password....
+ /// Sucht eine lokalisierte Zeichenfolge, die Change Master Password... ähnelt.
///
public static string ChangeMasterPasswordDots {
get {
@@ -1473,7 +1474,7 @@ public static string ChangeMasterPasswordDots {
}
///
- /// Looks up a localized string similar to Channel.
+ /// Sucht eine lokalisierte Zeichenfolge, die Channel ähnelt.
///
public static string Channel {
get {
@@ -1482,7 +1483,7 @@ public static string Channel {
}
///
- /// Looks up a localized string similar to Channels.
+ /// Sucht eine lokalisierte Zeichenfolge, die Channels ähnelt.
///
public static string Channels {
get {
@@ -1491,7 +1492,7 @@ public static string Channels {
}
///
- /// Looks up a localized string similar to Chassis Id.
+ /// Sucht eine lokalisierte Zeichenfolge, die Chassis Id ähnelt.
///
public static string ChassisId {
get {
@@ -1500,7 +1501,7 @@ public static string ChassisId {
}
///
- /// Looks up a localized string similar to Check.
+ /// Sucht eine lokalisierte Zeichenfolge, die Check ähnelt.
///
public static string Check {
get {
@@ -1509,7 +1510,7 @@ public static string Check {
}
///
- /// Looks up a localized string similar to Check DNS resolver.
+ /// Sucht eine lokalisierte Zeichenfolge, die Check DNS resolver ähnelt.
///
public static string CheckDNSResolver {
get {
@@ -1518,7 +1519,7 @@ public static string CheckDNSResolver {
}
///
- /// Looks up a localized string similar to Check for pre-releases.
+ /// Sucht eine lokalisierte Zeichenfolge, die Check for pre-releases ähnelt.
///
public static string CheckForPreReleases {
get {
@@ -1527,7 +1528,7 @@ public static string CheckForPreReleases {
}
///
- /// Looks up a localized string similar to Check for updates.
+ /// Sucht eine lokalisierte Zeichenfolge, die Check for updates ähnelt.
///
public static string CheckForUpdates {
get {
@@ -1536,7 +1537,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 {
@@ -1545,7 +1546,7 @@ public static string CheckForUpdatesAtStartup {
}
///
- /// Looks up a localized string similar to Checking DNS resolver....
+ /// Sucht eine lokalisierte Zeichenfolge, die Checking DNS resolver... ähnelt.
///
public static string CheckingDNSResolverDots {
get {
@@ -1554,7 +1555,7 @@ public static string CheckingDNSResolverDots {
}
///
- /// Looks up a localized string similar to Checking IP geolocation....
+ /// Sucht eine lokalisierte Zeichenfolge, die Checking IP geolocation... ähnelt.
///
public static string CheckingIPGeolocationDots {
get {
@@ -1563,7 +1564,7 @@ public static string CheckingIPGeolocationDots {
}
///
- /// Looks up a localized string similar to Checking WPS....
+ /// Sucht eine lokalisierte Zeichenfolge, die Checking WPS... ähnelt.
///
public static string CheckingWPSDots {
get {
@@ -1572,7 +1573,7 @@ public static string CheckingWPSDots {
}
///
- /// Looks up a localized string similar to Check IP geolocation.
+ /// Sucht eine lokalisierte Zeichenfolge, die Check IP geolocation ähnelt.
///
public static string CheckIPGeolocation {
get {
@@ -1581,7 +1582,7 @@ public static string CheckIPGeolocation {
}
///
- /// Looks up a localized string similar to Check is disabled!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Check is disabled! ähnelt.
///
public static string CheckIsDisabled {
get {
@@ -1590,7 +1591,7 @@ public static string CheckIsDisabled {
}
///
- /// Looks up a localized string similar to Check your network adapter configuration (dns) and if your dns server is configured correctly..
+ /// Sucht eine lokalisierte Zeichenfolge, die Check your network adapter configuration (dns) and if your dns server is configured correctly. ähnelt.
///
public static string CheckNetworkAdapterConfigurationAndDNSServerConfigurationMessage {
get {
@@ -1599,7 +1600,7 @@ public static string CheckNetworkAdapterConfigurationAndDNSServerConfigurationMe
}
///
- /// Looks up a localized string similar to Check your network adapter configuration (dhcp, static ip) and if you are connected to a network..
+ /// Sucht eine lokalisierte Zeichenfolge, die Check your network adapter configuration (dhcp, static ip) and if you are connected to a network. ähnelt.
///
public static string CheckNetworkAdapterConfigurationAndNetworkConnectionMessage {
get {
@@ -1608,7 +1609,7 @@ public static string CheckNetworkAdapterConfigurationAndNetworkConnectionMessage
}
///
- /// Looks up a localized string similar to Check your network connection and try again in a few seconds..
+ /// Sucht eine lokalisierte Zeichenfolge, die Check your network connection and try again in a few seconds. ähnelt.
///
public static string CheckNetworkConnectionTryAgainMessage {
get {
@@ -1617,7 +1618,7 @@ public static string CheckNetworkConnectionTryAgainMessage {
}
///
- /// Looks up a localized string similar to Check public IP address.
+ /// Sucht eine lokalisierte Zeichenfolge, die Check public IP address ähnelt.
///
public static string CheckPublicIPAddress {
get {
@@ -1626,7 +1627,7 @@ public static string CheckPublicIPAddress {
}
///
- /// Looks up a localized string similar to CIDR.
+ /// Sucht eine lokalisierte Zeichenfolge, die CIDR ähnelt.
///
public static string CIDR {
get {
@@ -1635,7 +1636,7 @@ public static string CIDR {
}
///
- /// Looks up a localized string similar to City.
+ /// Sucht eine lokalisierte Zeichenfolge, die City ähnelt.
///
public static string City {
get {
@@ -1644,7 +1645,7 @@ public static string City {
}
///
- /// Looks up a localized string similar to Class.
+ /// Sucht eine lokalisierte Zeichenfolge, die Class ähnelt.
///
public static string Class {
get {
@@ -1653,7 +1654,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 {
@@ -1662,7 +1663,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 {
@@ -1671,7 +1672,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 {
@@ -1680,7 +1681,7 @@ public static string Close {
}
///
- /// Looks up a localized string similar to Close all.
+ /// Sucht eine lokalisierte Zeichenfolge, die Close all ähnelt.
///
public static string CloseAll {
get {
@@ -1689,7 +1690,7 @@ public static string CloseAll {
}
///
- /// Looks up a localized string similar to Closed.
+ /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt.
///
public static string Closed {
get {
@@ -1698,7 +1699,7 @@ public static string Closed {
}
///
- /// Looks up a localized string similar to Close group.
+ /// Sucht eine lokalisierte Zeichenfolge, die Close group ähnelt.
///
public static string CloseGroup {
get {
@@ -1707,7 +1708,7 @@ public static string CloseGroup {
}
///
- /// Looks up a localized string similar to Closing in {0} seconds....
+ /// Sucht eine lokalisierte Zeichenfolge, die Closing in {0} seconds... ähnelt.
///
public static string ClosingInXSecondsDots {
get {
@@ -1716,7 +1717,7 @@ public static string ClosingInXSecondsDots {
}
///
- /// Looks up a localized string similar to Could not export file! See error message: "{0}".
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not export file! See error message: "{0}" ähnelt.
///
public static string ClouldNotExportFileSeeErrorMessageXX {
get {
@@ -1725,7 +1726,7 @@ public static string ClouldNotExportFileSeeErrorMessageXX {
}
///
- /// Looks up a localized string similar to Could not import file! See error message: "{0}".
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not import file! See error message: "{0}" ähnelt.
///
public static string ClouldNotImportFileSeeErrorMessageXX {
get {
@@ -1734,7 +1735,7 @@ public static string ClouldNotImportFileSeeErrorMessageXX {
}
///
- /// Looks up a localized string similar to Cobalt.
+ /// Sucht eine lokalisierte Zeichenfolge, die Cobalt ähnelt.
///
public static string Cobalt {
get {
@@ -1743,7 +1744,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 {
@@ -1752,7 +1753,7 @@ public static string ColorDepthBit {
}
///
- /// Looks up a localized string similar to Command.
+ /// Sucht eine lokalisierte Zeichenfolge, die Command ähnelt.
///
public static string Command {
get {
@@ -1761,7 +1762,7 @@ public static string Command {
}
///
- /// Looks up a localized string similar to Command Line Arguments.
+ /// Sucht eine lokalisierte Zeichenfolge, die Command Line Arguments ähnelt.
///
public static string CommandLineArguments {
get {
@@ -1770,7 +1771,16 @@ public static string CommandLineArguments {
}
///
- /// Looks up a localized string similar to Community.
+ /// Sucht eine lokalisierte Zeichenfolge, die Comment ähnelt.
+ ///
+ public static string Comment {
+ get {
+ return ResourceManager.GetString("Comment", resourceCulture);
+ }
+ }
+
+ ///
+ /// Sucht eine lokalisierte Zeichenfolge, die Community ähnelt.
///
public static string Community {
get {
@@ -1779,7 +1789,7 @@ public static string Community {
}
///
- /// Looks up a localized string similar to Computer.
+ /// Sucht eine lokalisierte Zeichenfolge, die Computer ähnelt.
///
public static string Computer {
get {
@@ -1788,7 +1798,7 @@ public static string Computer {
}
///
- /// Looks up a localized string similar to Computer name.
+ /// Sucht eine lokalisierte Zeichenfolge, die Computer name ähnelt.
///
public static string ComputerName {
get {
@@ -1797,7 +1807,7 @@ public static string ComputerName {
}
///
- /// Looks up a localized string similar to Configure.
+ /// Sucht eine lokalisierte Zeichenfolge, die Configure ähnelt.
///
public static string Configure {
get {
@@ -1806,7 +1816,7 @@ public static string Configure {
}
///
- /// Looks up a localized string similar to Configure the path to PowerShell in the settings....
+ /// Sucht eine lokalisierte Zeichenfolge, die Configure the path to PowerShell in the settings... ähnelt.
///
public static string ConfigureThePathToPowerShellInTheSettingsDots {
get {
@@ -1815,7 +1825,7 @@ public static string ConfigureThePathToPowerShellInTheSettingsDots {
}
///
- /// 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 {
@@ -1824,7 +1834,7 @@ public static string ConfigureThePathToPuTTYInTheSettingsDots {
}
///
- /// Looks up a localized string similar to Configure the path to TigerVNC in the settings....
+ /// Sucht eine lokalisierte Zeichenfolge, die Configure the path to TigerVNC in the settings... ähnelt.
///
public static string ConfigureThePathToTigerVNCInTheSettingsDots {
get {
@@ -1833,7 +1843,7 @@ public static string ConfigureThePathToTigerVNCInTheSettingsDots {
}
///
- /// Looks up a localized string similar to Confirm.
+ /// Sucht eine lokalisierte Zeichenfolge, die Confirm ähnelt.
///
public static string Confirm {
get {
@@ -1842,7 +1852,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 {
@@ -1851,7 +1861,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 {
@@ -1860,7 +1870,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 {
@@ -1869,7 +1879,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 {
@@ -1878,7 +1888,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 {
@@ -1887,7 +1897,7 @@ public static string ConnectAsDots {
}
///
- /// Looks up a localized string similar to Connect automatically.
+ /// Sucht eine lokalisierte Zeichenfolge, die Connect automatically ähnelt.
///
public static string ConnectAutomatically {
get {
@@ -1896,7 +1906,7 @@ public static string ConnectAutomatically {
}
///
- /// Looks up a localized string similar to Connect....
+ /// Sucht eine lokalisierte Zeichenfolge, die Connect... ähnelt.
///
public static string ConnectDots {
get {
@@ -1905,7 +1915,7 @@ public static string ConnectDots {
}
///
- /// Looks up a localized string similar to Connected.
+ /// Sucht eine lokalisierte Zeichenfolge, die Connected ähnelt.
///
public static string Connected {
get {
@@ -1914,7 +1924,7 @@ public static string Connected {
}
///
- /// Looks up a localized string similar to Connect external.
+ /// Sucht eine lokalisierte Zeichenfolge, die Connect external ähnelt.
///
public static string ConnectExternal {
get {
@@ -1923,7 +1933,7 @@ public static string ConnectExternal {
}
///
- /// Looks up a localized string similar to Connecting....
+ /// Sucht eine lokalisierte Zeichenfolge, die Connecting... ähnelt.
///
public static string ConnectingDots {
get {
@@ -1932,7 +1942,7 @@ public static string ConnectingDots {
}
///
- /// Looks up a localized string similar to Connecting to {0}....
+ /// Sucht eine lokalisierte Zeichenfolge, die Connecting to {0}... ähnelt.
///
public static string ConnectingToXXX {
get {
@@ -1941,7 +1951,7 @@ public static string ConnectingToXXX {
}
///
- /// Looks up a localized string similar to Connection.
+ /// Sucht eine lokalisierte Zeichenfolge, die Connection ähnelt.
///
public static string Connection {
get {
@@ -1950,7 +1960,7 @@ public static string Connection {
}
///
- /// Looks up a localized string similar to Connections.
+ /// Sucht eine lokalisierte Zeichenfolge, die Connections ähnelt.
///
public static string Connections {
get {
@@ -1959,7 +1969,7 @@ public static string Connections {
}
///
- /// Looks up a localized string similar to Error.
+ /// Sucht eine lokalisierte Zeichenfolge, die Error ähnelt.
///
public static string ConnectionState_Error {
get {
@@ -1968,7 +1978,7 @@ public static string ConnectionState_Error {
}
///
- /// Looks up a localized string similar to OK.
+ /// Sucht eine lokalisierte Zeichenfolge, die OK ähnelt.
///
public static string ConnectionState_OK {
get {
@@ -1977,7 +1987,7 @@ public static string ConnectionState_OK {
}
///
- /// Looks up a localized string similar to Warning.
+ /// Sucht eine lokalisierte Zeichenfolge, die Warning ähnelt.
///
public static string ConnectionState_Warning {
get {
@@ -1986,7 +1996,7 @@ public static string ConnectionState_Warning {
}
///
- /// 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 {
@@ -1995,7 +2005,7 @@ public static string ConnectTheNetworkCardToConfigureIt {
}
///
- /// Looks up a localized string similar to Connect to {0}.
+ /// Sucht eine lokalisierte Zeichenfolge, die Connect to {0} ähnelt.
///
public static string ConnectToXXX {
get {
@@ -2004,7 +2014,7 @@ public static string ConnectToXXX {
}
///
- /// Looks up a localized string similar to Continent.
+ /// Sucht eine lokalisierte Zeichenfolge, die Continent ähnelt.
///
public static string Continent {
get {
@@ -2013,7 +2023,7 @@ public static string Continent {
}
///
- /// Looks up a localized string similar to Continue.
+ /// Sucht eine lokalisierte Zeichenfolge, die Continue ähnelt.
///
public static string Continue {
get {
@@ -2022,7 +2032,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 {
@@ -2031,7 +2041,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 {
@@ -2040,7 +2050,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 {
@@ -2049,7 +2059,7 @@ public static string CopyDots {
}
///
- /// Looks up a localized string similar to Copy.
+ /// Sucht eine lokalisierte Zeichenfolge, die Copy ähnelt.
///
public static string CopyNoun {
get {
@@ -2058,7 +2068,7 @@ public static string CopyNoun {
}
///
- /// Looks up a localized string similar to Copy profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Copy profile ähnelt.
///
public static string CopyProfile {
get {
@@ -2067,7 +2077,7 @@ public static string CopyProfile {
}
///
- /// Looks up a localized string similar to Could not connect to "{0}"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not connect to "{0}"! ähnelt.
///
public static string CouldNotConnectToXXXMessage {
get {
@@ -2076,7 +2086,7 @@ public static string CouldNotConnectToXXXMessage {
}
///
- /// Looks up a localized string similar to Could not connect to {0} ({1})!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not connect to {0} ({1})! ähnelt.
///
public static string CouldNotConnectToXXXReasonXXX {
get {
@@ -2085,7 +2095,7 @@ public static string CouldNotConnectToXXXReasonXXX {
}
///
- /// Looks up a localized string similar to Could not detect gateway ip address!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not detect gateway ip address! ähnelt.
///
public static string CouldNotDetectGatewayIPAddressMessage {
get {
@@ -2094,7 +2104,7 @@ public static string CouldNotDetectGatewayIPAddressMessage {
}
///
- /// Looks up a localized string similar to Could not detect local ip address!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not detect local ip address! ähnelt.
///
public static string CouldNotDetectLocalIPAddressMessage {
get {
@@ -2103,7 +2113,7 @@ public static string CouldNotDetectLocalIPAddressMessage {
}
///
- /// Looks up a localized string similar to Could not detect subnetmask!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not detect subnetmask! ähnelt.
///
public static string CouldNotDetectSubnetmask {
get {
@@ -2112,7 +2122,7 @@ public static string CouldNotDetectSubnetmask {
}
///
- /// Looks up a localized string similar to Could not find the application "{0}". Maybe the application was hidden in the settings?.
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not find the application "{0}". Maybe the application was hidden in the settings? ähnelt.
///
public static string CouldNotFindApplicationXXXMessage {
get {
@@ -2121,7 +2131,7 @@ public static string CouldNotFindApplicationXXXMessage {
}
///
- /// Looks up a localized string similar to Could not get public ip address via WebRequest (http/https) from "{0}"! Check your network connection (firewall, proxy, etc.)..
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not get public ip address via WebRequest (http/https) from "{0}"! Check your network connection (firewall, proxy, etc.). ähnelt.
///
public static string CouldNotGetPublicIPAddressFromXXXMessage {
get {
@@ -2130,7 +2140,7 @@ public static string CouldNotGetPublicIPAddressFromXXXMessage {
}
///
- /// Looks up a localized string similar to Could not parse public ip address from "{0}"! Try another service or use the default... .
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not parse public ip address from "{0}"! Try another service or use the default... ähnelt.
///
public static string CouldNotParsePublicIPAddressFromXXXMessage {
get {
@@ -2139,7 +2149,7 @@ public static string CouldNotParsePublicIPAddressFromXXXMessage {
}
///
- /// 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 {
@@ -2148,7 +2158,7 @@ public static string CouldNotResolveHostnameFor {
}
///
- /// Looks up a localized string similar to Could not resolve ip address for: "{0}".
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not resolve ip address for: "{0}" ähnelt.
///
public static string CouldNotResolveIPAddressFor {
get {
@@ -2157,7 +2167,7 @@ public static string CouldNotResolveIPAddressFor {
}
///
- /// Looks up a localized string similar to Could not send keystroke!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not send keystroke! ähnelt.
///
public static string CouldNotSendKeystroke {
get {
@@ -2166,7 +2176,7 @@ public static string CouldNotSendKeystroke {
}
///
- /// Looks up a localized string similar to Country.
+ /// Sucht eine lokalisierte Zeichenfolge, die Country ähnelt.
///
public static string Country {
get {
@@ -2175,7 +2185,7 @@ public static string Country {
}
///
- /// Looks up a localized string similar to Credential.
+ /// Sucht eine lokalisierte Zeichenfolge, die Credential ähnelt.
///
public static string Credential {
get {
@@ -2184,7 +2194,7 @@ public static string Credential {
}
///
- /// Looks up a localized string similar to Credentials.
+ /// Sucht eine lokalisierte Zeichenfolge, die Credentials ähnelt.
///
public static string Credentials {
get {
@@ -2193,7 +2203,7 @@ public static string Credentials {
}
///
- /// Looks up a localized string similar to Credential Security Support Provider.
+ /// Sucht eine lokalisierte Zeichenfolge, die Credential Security Support Provider ähnelt.
///
public static string CredentialSecuritySupportProvider {
get {
@@ -2202,7 +2212,7 @@ public static string CredentialSecuritySupportProvider {
}
///
- /// Looks up a localized string similar to Crimson.
+ /// Sucht eine lokalisierte Zeichenfolge, die Crimson ähnelt.
///
public static string Crimson {
get {
@@ -2211,7 +2221,7 @@ public static string Crimson {
}
///
- /// Looks up a localized string similar to Ctrl+Alt+Del.
+ /// Sucht eine lokalisierte Zeichenfolge, die Ctrl+Alt+Del ähnelt.
///
public static string CtrlAltDel {
get {
@@ -2220,7 +2230,7 @@ public static string CtrlAltDel {
}
///
- /// Looks up a localized string similar to Currency.
+ /// Sucht eine lokalisierte Zeichenfolge, die Currency ähnelt.
///
public static string Currency {
get {
@@ -2229,7 +2239,7 @@ public static string Currency {
}
///
- /// Looks up a localized string similar to Current download speed.
+ /// Sucht eine lokalisierte Zeichenfolge, die Current download speed ähnelt.
///
public static string CurrentDownloadSpeed {
get {
@@ -2238,7 +2248,7 @@ public static string CurrentDownloadSpeed {
}
///
- /// Looks up a localized string similar to Currently downloaded.
+ /// Sucht eine lokalisierte Zeichenfolge, die Currently downloaded ähnelt.
///
public static string CurrentlyDownloaded {
get {
@@ -2247,7 +2257,7 @@ public static string CurrentlyDownloaded {
}
///
- /// Looks up a localized string similar to Currently uploaded.
+ /// Sucht eine lokalisierte Zeichenfolge, die Currently uploaded ähnelt.
///
public static string CurrentlyUploaded {
get {
@@ -2256,7 +2266,7 @@ public static string CurrentlyUploaded {
}
///
- /// Looks up a localized string similar to Current password.
+ /// Sucht eine lokalisierte Zeichenfolge, die Current password ähnelt.
///
public static string CurrentPassword {
get {
@@ -2265,7 +2275,7 @@ public static string CurrentPassword {
}
///
- /// Looks up a localized string similar to Current upload speed.
+ /// Sucht eine lokalisierte Zeichenfolge, die Current upload speed ähnelt.
///
public static string CurrentUploadSpeed {
get {
@@ -2274,7 +2284,7 @@ public static string CurrentUploadSpeed {
}
///
- /// Looks up a localized string similar to Custom.
+ /// Sucht eine lokalisierte Zeichenfolge, die Custom ähnelt.
///
public static string Custom {
get {
@@ -2283,7 +2293,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 {
@@ -2292,7 +2302,7 @@ public static string CustomColon {
}
///
- /// Looks up a localized string similar to Custom commands.
+ /// Sucht eine lokalisierte Zeichenfolge, die Custom commands ähnelt.
///
public static string CustomCommands {
get {
@@ -2301,7 +2311,7 @@ public static string CustomCommands {
}
///
- /// Looks up a localized string similar to Custom screen size:.
+ /// Sucht eine lokalisierte Zeichenfolge, die Custom screen size: ähnelt.
///
public static string CustomScreenSize {
get {
@@ -2310,7 +2320,7 @@ public static string CustomScreenSize {
}
///
- /// Looks up a localized string similar to Custom themes.
+ /// Sucht eine lokalisierte Zeichenfolge, die Custom themes ähnelt.
///
public static string CustomThemes {
get {
@@ -2319,7 +2329,7 @@ public static string CustomThemes {
}
///
- /// Looks up a localized string similar to Cut.
+ /// Sucht eine lokalisierte Zeichenfolge, die Cut ähnelt.
///
public static string Cut {
get {
@@ -2328,7 +2338,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 {
@@ -2337,7 +2347,7 @@ public static string Cyan {
}
///
- /// Looks up a localized string similar to Dashboard.
+ /// Sucht eine lokalisierte Zeichenfolge, die Dashboard ähnelt.
///
public static string Dashboard {
get {
@@ -2346,7 +2356,7 @@ public static string Dashboard {
}
///
- /// Looks up a localized string similar to Data.
+ /// Sucht eine lokalisierte Zeichenfolge, die Data ähnelt.
///
public static string Data {
get {
@@ -2355,7 +2365,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 {
@@ -2364,7 +2374,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 {
@@ -2373,7 +2383,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 {
@@ -2382,7 +2392,7 @@ public static string DecryptAndLoadDots {
}
///
- /// Looks up a localized string similar to Decryption error.
+ /// Sucht eine lokalisierte Zeichenfolge, die Decryption error ähnelt.
///
public static string DecryptionError {
get {
@@ -2391,7 +2401,7 @@ public static string DecryptionError {
}
///
- /// Looks up a localized string similar to Could not decrypt file. You may report this issue on GitHub..
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not decrypt file. You may report this issue on GitHub. ähnelt.
///
public static string DecryptionErrorMessage {
get {
@@ -2400,7 +2410,7 @@ public static string DecryptionErrorMessage {
}
///
- /// Looks up a localized string similar to Default.
+ /// Sucht eine lokalisierte Zeichenfolge, die Default ähnelt.
///
public static string Default {
get {
@@ -2409,7 +2419,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 {
@@ -2418,7 +2428,7 @@ public static string DefaultApplication {
}
///
- /// Looks up a localized string similar to Default-Gateway.
+ /// Sucht eine lokalisierte Zeichenfolge, die Default-Gateway ähnelt.
///
public static string DefaultGateway {
get {
@@ -2427,7 +2437,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 {
@@ -2436,7 +2446,7 @@ public static string DefaultPort {
}
///
- /// Looks up a localized string similar to Default profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Default profile ähnelt.
///
public static string DefaultProfile {
get {
@@ -2445,7 +2455,7 @@ public static string DefaultProfile {
}
///
- /// Looks up a localized string similar to Default region.
+ /// Sucht eine lokalisierte Zeichenfolge, die Default region ähnelt.
///
public static string DefaultRegion {
get {
@@ -2454,7 +2464,7 @@ public static string DefaultRegion {
}
///
- /// Looks up a localized string similar to Delete.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete ähnelt.
///
public static string Delete {
get {
@@ -2463,7 +2473,7 @@ public static string Delete {
}
///
- /// Looks up a localized string similar to Delete AWS profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete AWS profile ähnelt.
///
public static string DeleteAWSProfile {
get {
@@ -2472,9 +2482,9 @@ public static string DeleteAWSProfile {
}
///
- /// Looks up a localized string similar to The selected AWS profile is permanently deleted.
+ /// Sucht eine lokalisierte Zeichenfolge, die The selected AWS profile is permanently deleted.
///
- ///The profile is not removed from the ~\.aws\credentials file..
+ ///The profile is not removed from the ~\.aws\credentials file. ähnelt.
///
public static string DeleteAWSProfileMessage {
get {
@@ -2483,7 +2493,7 @@ public static string DeleteAWSProfileMessage {
}
///
- /// 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 {
@@ -2492,7 +2502,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 {
@@ -2501,7 +2511,7 @@ public static string DeleteCredentials {
}
///
- /// Looks up a localized string similar to Delete custom command.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete custom command ähnelt.
///
public static string DeleteCustomCommand {
get {
@@ -2510,7 +2520,7 @@ public static string DeleteCustomCommand {
}
///
- /// Looks up a localized string similar to The selected custom command will be deleted permanently..
+ /// Sucht eine lokalisierte Zeichenfolge, die The selected custom command will be deleted permanently. ähnelt.
///
public static string DeleteCustomCommandMessage {
get {
@@ -2519,7 +2529,7 @@ public static string DeleteCustomCommandMessage {
}
///
- /// Looks up a localized string similar to Delete DNS server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete DNS server ähnelt.
///
public static string DeleteDNSServer {
get {
@@ -2528,7 +2538,7 @@ public static string DeleteDNSServer {
}
///
- /// Looks up a localized string similar to The selected DNS server will be deleted permanently..
+ /// Sucht eine lokalisierte Zeichenfolge, die The selected DNS server will be deleted permanently. ähnelt.
///
public static string DeleteDNSServerMessage {
get {
@@ -2537,7 +2547,7 @@ public static string DeleteDNSServerMessage {
}
///
- /// Looks up a localized string similar to Delete....
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete... ähnelt.
///
public static string DeleteDots {
get {
@@ -2546,7 +2556,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 {
@@ -2555,7 +2565,7 @@ public static string DeleteEntry {
}
///
- /// Looks up a localized string similar to Delete group.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete group ähnelt.
///
public static string DeleteGroup {
get {
@@ -2564,7 +2574,7 @@ public static string DeleteGroup {
}
///
- /// Looks up a localized string similar to Selected group and all profiles inside this group will be deleted permanently..
+ /// Sucht eine lokalisierte Zeichenfolge, die Selected group and all profiles inside this group will be deleted permanently. ähnelt.
///
public static string DeleteGroupMessage {
get {
@@ -2573,7 +2583,7 @@ public static string DeleteGroupMessage {
}
///
- /// Looks up a localized string similar to Delete OID profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete OID profile ähnelt.
///
public static string DeleteOIDProfile {
get {
@@ -2582,7 +2592,7 @@ public static string DeleteOIDProfile {
}
///
- /// Looks up a localized string similar to The selected OID profile will be deleted permanently..
+ /// Sucht eine lokalisierte Zeichenfolge, die The selected OID profile will be deleted permanently. ähnelt.
///
public static string DeleteOIDProfileMessage {
get {
@@ -2591,7 +2601,7 @@ public static string DeleteOIDProfileMessage {
}
///
- /// Looks up a localized string similar to Delete port profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete port profile ähnelt.
///
public static string DeletePortProfile {
get {
@@ -2600,7 +2610,7 @@ public static string DeletePortProfile {
}
///
- /// Looks up a localized string similar to The selected port profile will be deleted permanently..
+ /// Sucht eine lokalisierte Zeichenfolge, die The selected port profile will be deleted permanently. ähnelt.
///
public static string DeletePortProfileMessage {
get {
@@ -2609,7 +2619,7 @@ public static string DeletePortProfileMessage {
}
///
- /// Looks up a localized string similar to Delete profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete profile ähnelt.
///
public static string DeleteProfile {
get {
@@ -2618,7 +2628,7 @@ public static string DeleteProfile {
}
///
- /// Looks up a localized string similar to Delete profile file.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete profile file ähnelt.
///
public static string DeleteProfileFile {
get {
@@ -2627,7 +2637,7 @@ public static string DeleteProfileFile {
}
///
- /// Looks up a localized string similar to Selected profile file will be deleted permanently..
+ /// Sucht eine lokalisierte Zeichenfolge, die Selected profile file will be deleted permanently. ähnelt.
///
public static string DeleteProfileFileMessage {
get {
@@ -2636,7 +2646,7 @@ public static string DeleteProfileFileMessage {
}
///
- /// Looks up a localized string similar to Selected profile will be deleted permanently..
+ /// Sucht eine lokalisierte Zeichenfolge, die Selected profile will be deleted permanently. ähnelt.
///
public static string DeleteProfileMessage {
get {
@@ -2645,7 +2655,7 @@ public static string DeleteProfileMessage {
}
///
- /// Looks up a localized string similar to Delete profiles.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete profiles ähnelt.
///
public static string DeleteProfiles {
get {
@@ -2654,7 +2664,7 @@ public static string DeleteProfiles {
}
///
- /// 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 DeleteProfilesMessage {
get {
@@ -2663,7 +2673,7 @@ public static string DeleteProfilesMessage {
}
///
- /// Looks up a localized string similar to Delete SNTP server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete SNTP server ähnelt.
///
public static string DeleteSNTPServer {
get {
@@ -2672,7 +2682,7 @@ public static string DeleteSNTPServer {
}
///
- /// Looks up a localized string similar to The selected SNTP server will be deleted permanently..
+ /// Sucht eine lokalisierte Zeichenfolge, die The selected SNTP server will be deleted permanently. ähnelt.
///
public static string DeleteSNTPServerMessage {
get {
@@ -2681,7 +2691,7 @@ public static string DeleteSNTPServerMessage {
}
///
- /// Looks up a localized string similar to Delete table.
+ /// Sucht eine lokalisierte Zeichenfolge, die Delete table ähnelt.
///
public static string DeleteTable {
get {
@@ -2690,7 +2700,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 {
@@ -2699,7 +2709,7 @@ public static string Description {
}
///
- /// Looks up a localized string similar to Design.
+ /// Sucht eine lokalisierte Zeichenfolge, die Design ähnelt.
///
public static string Design {
get {
@@ -2708,7 +2718,7 @@ public static string Design {
}
///
- /// Looks up a localized string similar to Desktop background.
+ /// Sucht eine lokalisierte Zeichenfolge, die Desktop background ähnelt.
///
public static string DesktopBackground {
get {
@@ -2717,7 +2727,7 @@ public static string DesktopBackground {
}
///
- /// Looks up a localized string similar to Desktop composition.
+ /// Sucht eine lokalisierte Zeichenfolge, die Desktop composition ähnelt.
///
public static string DesktopComposition {
get {
@@ -2726,7 +2736,7 @@ public static string DesktopComposition {
}
///
- /// Looks up a localized string similar to Destination.
+ /// Sucht eine lokalisierte Zeichenfolge, die Destination ähnelt.
///
public static string Destination {
get {
@@ -2735,7 +2745,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 {
@@ -2744,7 +2754,7 @@ public static string Details {
}
///
- /// Looks up a localized string similar to Detecting network....
+ /// Sucht eine lokalisierte Zeichenfolge, die Detecting network... ähnelt.
///
public static string DetectingNetworkDots {
get {
@@ -2753,7 +2763,7 @@ public static string DetectingNetworkDots {
}
///
- /// Looks up a localized string similar to Detect local ip address and subnetmask.
+ /// Sucht eine lokalisierte Zeichenfolge, die Detect local ip address and subnetmask ähnelt.
///
public static string DetectLocalIPAddressAndSubnetmask {
get {
@@ -2762,7 +2772,7 @@ public static string DetectLocalIPAddressAndSubnetmask {
}
///
- /// Looks up a localized string similar to Developed and maintained by {0} with the help of the.
+ /// Sucht eine lokalisierte Zeichenfolge, die Developed and maintained by {0} with the help of the ähnelt.
///
public static string DevelopedAndMaintainedByX {
get {
@@ -2771,7 +2781,7 @@ public static string DevelopedAndMaintainedByX {
}
///
- /// Looks up a localized string similar to Device.
+ /// Sucht eine lokalisierte Zeichenfolge, die Device ähnelt.
///
public static string Device {
get {
@@ -2780,7 +2790,7 @@ public static string Device {
}
///
- /// Looks up a localized string similar to Device description.
+ /// Sucht eine lokalisierte Zeichenfolge, die Device description ähnelt.
///
public static string DeviceDescription {
get {
@@ -2789,7 +2799,7 @@ public static string DeviceDescription {
}
///
- /// Looks up a localized string similar to DHCP enabled.
+ /// Sucht eine lokalisierte Zeichenfolge, die DHCP enabled ähnelt.
///
public static string DHCPEnabled {
get {
@@ -2798,7 +2808,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 {
@@ -2807,7 +2817,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 {
@@ -2816,7 +2826,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 {
@@ -2825,7 +2835,7 @@ public static string DHCPServer {
}
///
- /// Looks up a localized string similar to Disable encryption....
+ /// Sucht eine lokalisierte Zeichenfolge, die Disable encryption... ähnelt.
///
public static string DisableEncryptionDots {
get {
@@ -2834,7 +2844,7 @@ public static string DisableEncryptionDots {
}
///
- /// Looks up a localized string similar to Disclaimer.
+ /// Sucht eine lokalisierte Zeichenfolge, die Disclaimer ähnelt.
///
public static string Disclaimer {
get {
@@ -2843,7 +2853,7 @@ public static string Disclaimer {
}
///
- /// Looks up a localized string similar to Disconnect.
+ /// Sucht eine lokalisierte Zeichenfolge, die Disconnect ähnelt.
///
public static string Disconnect {
get {
@@ -2852,7 +2862,7 @@ public static string Disconnect {
}
///
- /// Looks up a localized string similar to Disconnected.
+ /// Sucht eine lokalisierte Zeichenfolge, die Disconnected ähnelt.
///
public static string Disconnected {
get {
@@ -2861,7 +2871,7 @@ public static string Disconnected {
}
///
- /// Looks up a localized string similar to Discovery Protocol.
+ /// Sucht eine lokalisierte Zeichenfolge, die Discovery Protocol ähnelt.
///
public static string DiscoveryProtocol {
get {
@@ -2870,7 +2880,7 @@ public static string DiscoveryProtocol {
}
///
- /// Looks up a localized string similar to CDP.
+ /// Sucht eine lokalisierte Zeichenfolge, die CDP ähnelt.
///
public static string DiscoveryProtocol_Cdp {
get {
@@ -2879,7 +2889,7 @@ public static string DiscoveryProtocol_Cdp {
}
///
- /// Looks up a localized string similar to LLDP.
+ /// Sucht eine lokalisierte Zeichenfolge, die LLDP ähnelt.
///
public static string DiscoveryProtocol_Lldp {
get {
@@ -2888,7 +2898,7 @@ public static string DiscoveryProtocol_Lldp {
}
///
- /// Looks up a localized string similar to LLDP / CDP.
+ /// Sucht eine lokalisierte Zeichenfolge, die LLDP / CDP ähnelt.
///
public static string DiscoveryProtocol_LldpCdp {
get {
@@ -2897,7 +2907,7 @@ public static string DiscoveryProtocol_LldpCdp {
}
///
- /// Looks up a localized string similar to Display.
+ /// Sucht eine lokalisierte Zeichenfolge, die Display ähnelt.
///
public static string Display {
get {
@@ -2906,7 +2916,7 @@ public static string Display {
}
///
- /// Looks up a localized string similar to District.
+ /// Sucht eine lokalisierte Zeichenfolge, die District ähnelt.
///
public static string District {
get {
@@ -2915,7 +2925,7 @@ public static string District {
}
///
- /// Looks up a localized string similar to DNS.
+ /// Sucht eine lokalisierte Zeichenfolge, die DNS ähnelt.
///
public static string DNS {
get {
@@ -2924,7 +2934,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 {
@@ -2933,7 +2943,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 {
@@ -2942,7 +2952,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 {
@@ -2951,7 +2961,7 @@ public static string DNSLookupDots {
}
///
- /// Looks up a localized string similar to DNS resolver.
+ /// Sucht eine lokalisierte Zeichenfolge, die DNS resolver ähnelt.
///
public static string DNSResolver {
get {
@@ -2960,7 +2970,7 @@ public static string DNSResolver {
}
///
- /// Looks up a localized string similar to DNS server.
+ /// Sucht eine lokalisierte Zeichenfolge, die DNS server ähnelt.
///
public static string DNSServer {
get {
@@ -2969,7 +2979,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 {
@@ -2978,7 +2988,7 @@ public static string DNSServers {
}
///
- /// Looks up a localized string similar to A DNS server with this name already exists!.
+ /// Sucht eine lokalisierte Zeichenfolge, die A DNS server with this name already exists! ähnelt.
///
public static string DNSServerWithThisNameAlreadyExists {
get {
@@ -2987,7 +2997,7 @@ public static string DNSServerWithThisNameAlreadyExists {
}
///
- /// Looks up a localized string similar to DNS suffix.
+ /// Sucht eine lokalisierte Zeichenfolge, die DNS suffix ähnelt.
///
public static string DNSSuffix {
get {
@@ -2996,7 +3006,7 @@ public static string DNSSuffix {
}
///
- /// Looks up a localized string similar to Domain.
+ /// Sucht eine lokalisierte Zeichenfolge, die Domain ähnelt.
///
public static string Domain {
get {
@@ -3005,7 +3015,7 @@ public static string Domain {
}
///
- /// Looks up a localized string similar to Domain name.
+ /// Sucht eine lokalisierte Zeichenfolge, die Domain name ähnelt.
///
public static string DomainName {
get {
@@ -3014,7 +3024,7 @@ public static string DomainName {
}
///
- /// Looks up a localized string similar to Donate.
+ /// Sucht eine lokalisierte Zeichenfolge, die Donate ähnelt.
///
public static string Donate {
get {
@@ -3023,7 +3033,7 @@ public static string Donate {
}
///
- /// Looks up a localized string similar to Don't fragment.
+ /// Sucht eine lokalisierte Zeichenfolge, die Don't fragment ähnelt.
///
public static string DontFragment {
get {
@@ -3032,7 +3042,7 @@ public static string DontFragment {
}
///
- /// Looks up a localized string similar to Download.
+ /// Sucht eine lokalisierte Zeichenfolge, die Download ähnelt.
///
public static string Download {
get {
@@ -3041,7 +3051,7 @@ public static string Download {
}
///
- /// Looks up a localized string similar to Download Microsoft Edge WebView2 Runtime.
+ /// Sucht eine lokalisierte Zeichenfolge, die Download Microsoft Edge WebView2 Runtime ähnelt.
///
public static string DownloadMicrosoftEdgeWebView2Runtime {
get {
@@ -3050,8 +3060,8 @@ public static string DownloadMicrosoftEdgeWebView2Runtime {
}
///
- /// Looks up a localized string similar to Drag and drop the applications to reorder them.
- ///Right-click for more options..
+ /// Sucht eine lokalisierte Zeichenfolge, die Drag and drop the applications to reorder them.
+ ///Right-click for more options. ähnelt.
///
public static string DragDropApplicationsToReorderRightClickForMoreOptions {
get {
@@ -3060,7 +3070,7 @@ public static string DragDropApplicationsToReorderRightClickForMoreOptions {
}
///
- /// Looks up a localized string similar to Duration.
+ /// Sucht eine lokalisierte Zeichenfolge, die Duration ähnelt.
///
public static string Duration {
get {
@@ -3069,7 +3079,7 @@ public static string Duration {
}
///
- /// Looks up a localized string similar to Duration (s).
+ /// Sucht eine lokalisierte Zeichenfolge, die Duration (s) ähnelt.
///
public static string DurationS {
get {
@@ -3078,7 +3088,7 @@ public static string DurationS {
}
///
- /// Looks up a localized string similar to Dynamic IPv4 address.
+ /// Sucht eine lokalisierte Zeichenfolge, die Dynamic IPv4 address ähnelt.
///
public static string DynamicIPv4Address {
get {
@@ -3087,7 +3097,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 {
@@ -3096,7 +3106,7 @@ public static string DynamicIPv4DNSServer {
}
///
- /// Looks up a localized string similar to Edit AWS profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Edit AWS profile ähnelt.
///
public static string EditAWSProfile {
get {
@@ -3105,7 +3115,7 @@ public static string EditAWSProfile {
}
///
- /// Looks up a localized string similar to Edit credentials.
+ /// Sucht eine lokalisierte Zeichenfolge, die Edit credentials ähnelt.
///
public static string EditCredentials {
get {
@@ -3114,7 +3124,7 @@ public static string EditCredentials {
}
///
- /// Looks up a localized string similar to Edit custom command.
+ /// Sucht eine lokalisierte Zeichenfolge, die Edit custom command ähnelt.
///
public static string EditCustomCommand {
get {
@@ -3123,7 +3133,7 @@ public static string EditCustomCommand {
}
///
- /// Looks up a localized string similar to Edit DNS server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Edit DNS server ähnelt.
///
public static string EditDNSServer {
get {
@@ -3132,7 +3142,7 @@ public static string EditDNSServer {
}
///
- /// Looks up a localized string similar to Edit....
+ /// Sucht eine lokalisierte Zeichenfolge, die Edit... ähnelt.
///
public static string EditDots {
get {
@@ -3141,7 +3151,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 {
@@ -3150,7 +3160,7 @@ public static string EditGroup {
}
///
- /// Looks up a localized string similar to Edit group....
+ /// Sucht eine lokalisierte Zeichenfolge, die Edit group... ähnelt.
///
public static string EditGroupDots {
get {
@@ -3159,7 +3169,7 @@ public static string EditGroupDots {
}
///
- /// Looks up a localized string similar to Edit OID profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Edit OID profile ähnelt.
///
public static string EditOIDProfile {
get {
@@ -3168,7 +3178,7 @@ public static string EditOIDProfile {
}
///
- /// Looks up a localized string similar to Edit port profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Edit port profile ähnelt.
///
public static string EditPortProfile {
get {
@@ -3177,7 +3187,7 @@ public static string EditPortProfile {
}
///
- /// Looks up a localized string similar to Edit profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Edit profile ähnelt.
///
public static string EditProfile {
get {
@@ -3186,7 +3196,7 @@ public static string EditProfile {
}
///
- /// Looks up a localized string similar to Edit profile file.
+ /// Sucht eine lokalisierte Zeichenfolge, die Edit profile file ähnelt.
///
public static string EditProfileFile {
get {
@@ -3195,7 +3205,7 @@ public static string EditProfileFile {
}
///
- /// Looks up a localized string similar to Edit SNTP server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Edit SNTP server ähnelt.
///
public static string EditSNTPServer {
get {
@@ -3204,7 +3214,7 @@ public static string EditSNTPServer {
}
///
- /// Looks up a localized string similar to EDNS.
+ /// Sucht eine lokalisierte Zeichenfolge, die EDNS ähnelt.
///
public static string EDNS {
get {
@@ -3213,7 +3223,7 @@ public static string EDNS {
}
///
- /// Looks up a localized string similar to Emerald.
+ /// Sucht eine lokalisierte Zeichenfolge, die Emerald ähnelt.
///
public static string Emerald {
get {
@@ -3222,7 +3232,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 {
@@ -3231,7 +3241,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 {
@@ -3240,7 +3250,7 @@ public static string EnableCredentialSecuritySupportProvider {
}
///
- /// Looks up a localized string similar to Enabled.
+ /// Sucht eine lokalisierte Zeichenfolge, die Enabled ähnelt.
///
public static string Enabled {
get {
@@ -3249,7 +3259,7 @@ public static string Enabled {
}
///
- /// Looks up a localized string similar to Enable encryption....
+ /// Sucht eine lokalisierte Zeichenfolge, die Enable encryption... ähnelt.
///
public static string EnableEncryptionDots {
get {
@@ -3258,7 +3268,7 @@ public static string EnableEncryptionDots {
}
///
- /// Looks up a localized string similar to Enable gateway server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Enable gateway server ähnelt.
///
public static string EnableGatewayServer {
get {
@@ -3267,7 +3277,7 @@ public static string EnableGatewayServer {
}
///
- /// Looks up a localized string similar to Enable log.
+ /// Sucht eine lokalisierte Zeichenfolge, die Enable log ähnelt.
///
public static string EnableLog {
get {
@@ -3276,7 +3286,7 @@ public static string EnableLog {
}
///
- /// Looks up a localized string similar to Encryption.
+ /// Sucht eine lokalisierte Zeichenfolge, die Encryption ähnelt.
///
public static string Encryption {
get {
@@ -3285,7 +3295,7 @@ public static string Encryption {
}
///
- /// Looks up a localized string similar to Encryption....
+ /// Sucht eine lokalisierte Zeichenfolge, die Encryption... ähnelt.
///
public static string EncryptionDots {
get {
@@ -3294,7 +3304,7 @@ public static string EncryptionDots {
}
///
- /// Looks up a localized string similar to Encryption error.
+ /// Sucht eine lokalisierte Zeichenfolge, die Encryption error ähnelt.
///
public static string EncryptionError {
get {
@@ -3303,7 +3313,7 @@ public static string EncryptionError {
}
///
- /// Looks up a localized string similar to Could not encrpyt file. You may report this issue on GitHub..
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not encrpyt file. You may report this issue on GitHub. ähnelt.
///
public static string EncryptionErrorMessage {
get {
@@ -3312,7 +3322,7 @@ public static string EncryptionErrorMessage {
}
///
- /// Looks up a localized string similar to End time.
+ /// Sucht eine lokalisierte Zeichenfolge, die End time ähnelt.
///
public static string EndTime {
get {
@@ -3321,7 +3331,7 @@ public static string EndTime {
}
///
- /// Looks up a localized string similar to Enter a domain to query whois....
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter a domain to query whois... ähnelt.
///
public static string EnterADomainToQueryWhoisDots {
get {
@@ -3330,7 +3340,7 @@ public static string EnterADomainToQueryWhoisDots {
}
///
- /// Looks up a localized string similar to Enter a number and select a unit to calculate the units....
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter a number and select a unit to calculate the units... ähnelt.
///
public static string EnterANumberAndSelectAUnitToCalculateTheUnitsDots {
get {
@@ -3339,7 +3349,7 @@ public static string EnterANumberAndSelectAUnitToCalculateTheUnitsDots {
}
///
- /// 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 EnterASubnetToCalculateItDots {
get {
@@ -3348,7 +3358,7 @@ public static string EnterASubnetToCalculateItDots {
}
///
- /// Looks up a localized string similar to Enter host to query IP geolocation....
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter host to query IP geolocation... ähnelt.
///
public static string EnterHostToQueryIPGeolocationDots {
get {
@@ -3357,7 +3367,7 @@ public static string EnterHostToQueryIPGeolocationDots {
}
///
- /// Looks up a localized string similar to Enter location....
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter location... ähnelt.
///
public static string EnterLocationDots {
get {
@@ -3366,7 +3376,7 @@ public static string EnterLocationDots {
}
///
- /// Looks up a localized string similar to Enter master password to unlock the profile file:.
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter master password to unlock the profile file: ähnelt.
///
public static string EnterMasterPasswordToUnlockProfile {
get {
@@ -3375,7 +3385,7 @@ public static string EnterMasterPasswordToUnlockProfile {
}
///
- /// 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 {
@@ -3384,7 +3394,7 @@ public static string EnterOneOrMoreValidIPAddresses {
}
///
- /// Looks up a localized string similar to Enter password....
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter password... ähnelt.
///
public static string EnterPasswordDots {
get {
@@ -3393,7 +3403,7 @@ public static string EnterPasswordDots {
}
///
- /// 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 {
@@ -3402,7 +3412,7 @@ public static string EnterSubnetAndANewSubnetmaskToCreateSubnets {
}
///
- /// Looks up a localized string similar to Enter subnets to create a wide subnet....
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter subnets to create a wide subnet... ähnelt.
///
public static string EnterSubnetsToCreateAWideSubnet {
get {
@@ -3411,7 +3421,7 @@ public static string EnterSubnetsToCreateAWideSubnet {
}
///
- /// 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 {
@@ -3420,7 +3430,7 @@ public static string EnterValidBaud {
}
///
- /// Looks up a localized string similar to Enter a valid domain (like "example.com")!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid domain (like "example.com")! ähnelt.
///
public static string EnterValidDomain {
get {
@@ -3429,7 +3439,7 @@ public static string EnterValidDomain {
}
///
- /// Looks up a localized string similar to Enter a valid file name!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid file name! ähnelt.
///
public static string EnterValidFileName {
get {
@@ -3438,7 +3448,7 @@ public static string EnterValidFileName {
}
///
- /// Looks up a localized string similar to Enter a valid file path!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid file path! ähnelt.
///
public static string EnterValidFilePath {
get {
@@ -3447,7 +3457,7 @@ public static string EnterValidFilePath {
}
///
- /// Looks up a localized string similar to Enter a valid hostname!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid hostname! ähnelt.
///
public static string EnterValidHostname {
get {
@@ -3456,7 +3466,7 @@ public static string EnterValidHostname {
}
///
- /// Looks up a localized string similar to Enter a valid hostname and port!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid hostname and port! ähnelt.
///
public static string EnterValidHostnameAndPort {
get {
@@ -3465,7 +3475,7 @@ public static string EnterValidHostnameAndPort {
}
///
- /// Looks up a localized string similar to Enter a valid hostname (like "server-01" or "example.com") or a valid IP address (like 192.168.178.1)!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid hostname (like "server-01" or "example.com") or a valid IP address (like 192.168.178.1)! ähnelt.
///
public static string EnterValidHostnameOrIPAddress {
get {
@@ -3474,7 +3484,7 @@ public static string EnterValidHostnameOrIPAddress {
}
///
- /// 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 {
@@ -3483,7 +3493,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 {
@@ -3492,7 +3502,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 {
@@ -3501,7 +3511,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 {
@@ -3510,7 +3520,7 @@ public static string EnterValidIPv4Address {
}
///
- /// Looks up a localized string similar to Enter a valid IPv6 address!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Enter a valid IPv6 address! ähnelt.
///
public static string EnterValidIPv6Address {
get {
@@ -3519,7 +3529,7 @@ public static string EnterValidIPv6Address {
}
///
- /// 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 {
@@ -3528,7 +3538,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 {
@@ -3537,7 +3547,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 {
@@ -3546,7 +3556,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 {
@@ -3555,7 +3565,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 {
@@ -3564,7 +3574,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 {
@@ -3573,7 +3583,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 {
@@ -3582,7 +3592,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 {
@@ -3591,7 +3601,7 @@ public static string EnterValidSubnetmaskOrCIDR {
}
///
- /// 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 {
@@ -3600,7 +3610,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 {
@@ -3609,7 +3619,7 @@ public static string Error {
}
///
- /// Looks up a localized string similar to Couldn't connect to 'api.github.com', check your network connection!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Couldn't connect to 'api.github.com', check your network connection! ähnelt.
///
public static string ErrorCheckingApiGithubComVerifyYourNetworkConnection {
get {
@@ -3618,7 +3628,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 {
@@ -3627,7 +3637,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 {
@@ -3636,7 +3646,7 @@ public static string ErrorInResponseCheckIfYouHaveWritePermissions {
}
///
- /// Looks up a localized string similar to The name is already used!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The name is already used! ähnelt.
///
public static string ErrorMessage_NameIsAlreadyUsed {
get {
@@ -3645,7 +3655,7 @@ public static string ErrorMessage_NameIsAlreadyUsed {
}
///
- /// Looks up a localized string similar to The settings on this page contain errors. Correct them to be able to save..
+ /// Sucht eine lokalisierte Zeichenfolge, die The settings on this page contain errors. Correct them to be able to save. ähnelt.
///
public static string ErrorMessage_TabPageHasError {
get {
@@ -3654,7 +3664,7 @@ public static string ErrorMessage_TabPageHasError {
}
///
- /// Looks up a localized string similar to Error while scanning WiFi adapter "{0}" with error: "{1}".
+ /// Sucht eine lokalisierte Zeichenfolge, die Error while scanning WiFi adapter "{0}" with error: "{1}" ähnelt.
///
public static string ErrorWhileScanningWiFiAdapterXXXWithErrorXXX {
get {
@@ -3663,7 +3673,7 @@ public static string ErrorWhileScanningWiFiAdapterXXXWithErrorXXX {
}
///
- /// Looks up a localized string similar to Everything.
+ /// Sucht eine lokalisierte Zeichenfolge, die Everything ähnelt.
///
public static string Everything {
get {
@@ -3672,7 +3682,7 @@ public static string Everything {
}
///
- /// Looks up a localized string similar to Linux servers running in AWS....
+ /// Sucht eine lokalisierte Zeichenfolge, die Linux servers running in AWS... ähnelt.
///
public static string ExampleGroupDescription {
get {
@@ -3681,7 +3691,7 @@ public static string ExampleGroupDescription {
}
///
- /// Looks up a localized string similar to Ubuntu Server running Docker with Nextcloud and Traefik....
+ /// Sucht eine lokalisierte Zeichenfolge, die Ubuntu Server running Docker with Nextcloud and Traefik... ähnelt.
///
public static string ExampleProfileDescription {
get {
@@ -3690,7 +3700,7 @@ public static string ExampleProfileDescription {
}
///
- /// Looks up a localized string similar to Customer 1.
+ /// Sucht eine lokalisierte Zeichenfolge, die Customer 1 ähnelt.
///
public static string ExampleProfileFileName {
get {
@@ -3699,7 +3709,7 @@ public static string ExampleProfileFileName {
}
///
- /// Looks up a localized string similar to Execution Policy.
+ /// Sucht eine lokalisierte Zeichenfolge, die Execution Policy ähnelt.
///
public static string ExecutionPolicy {
get {
@@ -3708,7 +3718,7 @@ public static string ExecutionPolicy {
}
///
- /// Looks up a localized string similar to Expand.
+ /// Sucht eine lokalisierte Zeichenfolge, die Expand ähnelt.
///
public static string Expand {
get {
@@ -3717,7 +3727,7 @@ public static string Expand {
}
///
- /// Looks up a localized string similar to Expand and open search....
+ /// Sucht eine lokalisierte Zeichenfolge, die Expand and open search... ähnelt.
///
public static string ExpandAndOpenSearchDots {
get {
@@ -3726,7 +3736,7 @@ public static string ExpandAndOpenSearchDots {
}
///
- /// Looks up a localized string similar to Expand host view.
+ /// Sucht eine lokalisierte Zeichenfolge, die Expand host view ähnelt.
///
public static string ExpandHostView {
get {
@@ -3735,7 +3745,7 @@ public static string ExpandHostView {
}
///
- /// Looks up a localized string similar to Experience.
+ /// Sucht eine lokalisierte Zeichenfolge, die Experience ähnelt.
///
public static string Experience {
get {
@@ -3744,7 +3754,7 @@ public static string Experience {
}
///
- /// Looks up a localized string similar to Experimental.
+ /// Sucht eine lokalisierte Zeichenfolge, die Experimental ähnelt.
///
public static string Experimental {
get {
@@ -3753,7 +3763,7 @@ public static string Experimental {
}
///
- /// Looks up a localized string similar to Experimental features.
+ /// Sucht eine lokalisierte Zeichenfolge, die Experimental features ähnelt.
///
public static string ExperimentalFeatures {
get {
@@ -3762,7 +3772,7 @@ public static string ExperimentalFeatures {
}
///
- /// Looks up a localized string similar to Export.
+ /// Sucht eine lokalisierte Zeichenfolge, die Export ähnelt.
///
public static string Export {
get {
@@ -3771,7 +3781,7 @@ public static string Export {
}
///
- /// Looks up a localized string similar to Export all.
+ /// Sucht eine lokalisierte Zeichenfolge, die Export all ähnelt.
///
public static string ExportAll {
get {
@@ -3780,7 +3790,7 @@ public static string ExportAll {
}
///
- /// Looks up a localized string similar to Export....
+ /// Sucht eine lokalisierte Zeichenfolge, die Export... ähnelt.
///
public static string ExportDots {
get {
@@ -3789,7 +3799,7 @@ public static string ExportDots {
}
///
- /// Looks up a localized string similar to Export selected.
+ /// Sucht eine lokalisierte Zeichenfolge, die Export selected ähnelt.
///
public static string ExportSelected {
get {
@@ -3798,7 +3808,7 @@ public static string ExportSelected {
}
///
- /// Looks up a localized string similar to IP Geolocation API - Fast, accurate, reliable.
+ /// Sucht eine lokalisierte Zeichenfolge, die IP Geolocation API - Fast, accurate, reliable ähnelt.
///
public static string ExternalService_ip_api_Description {
get {
@@ -3807,7 +3817,7 @@ public static string ExternalService_ip_api_Description {
}
///
- /// Looks up a localized string similar to A Simple Public IP Address API.
+ /// Sucht eine lokalisierte Zeichenfolge, die A Simple Public IP Address API ähnelt.
///
public static string ExternalService_ipify_Description {
get {
@@ -3816,7 +3826,7 @@ public static string ExternalService_ipify_Description {
}
///
- /// Looks up a localized string similar to External services.
+ /// Sucht eine lokalisierte Zeichenfolge, die External services ähnelt.
///
public static string ExternalServices {
get {
@@ -3825,7 +3835,7 @@ public static string ExternalServices {
}
///
- /// 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 {
@@ -3834,7 +3844,7 @@ public static string FieldCannotBeEmpty {
}
///
- /// Looks up a localized string similar to File.
+ /// Sucht eine lokalisierte Zeichenfolge, die File ähnelt.
///
public static string File {
get {
@@ -3843,7 +3853,7 @@ public static string File {
}
///
- /// 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 {
@@ -3852,7 +3862,7 @@ public static string FileDoesNotExist {
}
///
- /// Looks up a localized string similar to File exported to "{0}"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die File exported to "{0}"! ähnelt.
///
public static string FileExportedToXX {
get {
@@ -3861,7 +3871,7 @@ public static string FileExportedToXX {
}
///
- /// Looks up a localized string similar to File path.
+ /// Sucht eine lokalisierte Zeichenfolge, die File path ähnelt.
///
public static string FilePath {
get {
@@ -3870,7 +3880,7 @@ public static string FilePath {
}
///
- /// Looks up a localized string similar to Filter.
+ /// Sucht eine lokalisierte Zeichenfolge, die Filter ähnelt.
///
public static string Filter {
get {
@@ -3879,7 +3889,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 {
@@ -3888,7 +3898,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 {
@@ -3897,7 +3907,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 {
@@ -3906,7 +3916,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 {
@@ -3915,7 +3925,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 {
@@ -3924,7 +3934,7 @@ public static string FolderDoesNotExist {
}
///
- /// Looks up a localized string similar to Font smoothing.
+ /// Sucht eine lokalisierte Zeichenfolge, die Font smoothing ähnelt.
///
public static string FontSmoothing {
get {
@@ -3933,7 +3943,7 @@ public static string FontSmoothing {
}
///
- /// Looks up a localized string similar to Format.
+ /// Sucht eine lokalisierte Zeichenfolge, die Format ähnelt.
///
public static string Format {
get {
@@ -3942,7 +3952,7 @@ public static string Format {
}
///
- /// Looks up a localized string similar to Found.
+ /// Sucht eine lokalisierte Zeichenfolge, die Found ähnelt.
///
public static string Found {
get {
@@ -3951,7 +3961,7 @@ public static string Found {
}
///
- /// Looks up a localized string similar to Frequency.
+ /// Sucht eine lokalisierte Zeichenfolge, die Frequency ähnelt.
///
public static string Frequency {
get {
@@ -3960,7 +3970,7 @@ public static string Frequency {
}
///
- /// Looks up a localized string similar to (from profile).
+ /// Sucht eine lokalisierte Zeichenfolge, die (from profile) ähnelt.
///
public static string FromProfile {
get {
@@ -3969,7 +3979,7 @@ public static string FromProfile {
}
///
- /// Looks up a localized string similar to Fullscreen.
+ /// Sucht eine lokalisierte Zeichenfolge, die Fullscreen ähnelt.
///
public static string Fullscreen {
get {
@@ -3978,7 +3988,7 @@ public static string Fullscreen {
}
///
- /// Looks up a localized string similar to Gateway.
+ /// Sucht eine lokalisierte Zeichenfolge, die Gateway ähnelt.
///
public static string Gateway {
get {
@@ -3987,7 +3997,7 @@ public static string Gateway {
}
///
- /// Looks up a localized string similar to Gateway / Router.
+ /// Sucht eine lokalisierte Zeichenfolge, die Gateway / Router ähnelt.
///
public static string GatewayRouter {
get {
@@ -3996,7 +4006,7 @@ public static string GatewayRouter {
}
///
- /// Looks up a localized string similar to Gateway server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Gateway server ähnelt.
///
public static string GatewayServer {
get {
@@ -4005,7 +4015,7 @@ public static string GatewayServer {
}
///
- /// Looks up a localized string similar to General.
+ /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt.
///
public static string General {
get {
@@ -4014,7 +4024,7 @@ public static string General {
}
///
- /// Looks up a localized string similar to Geolocation.
+ /// Sucht eine lokalisierte Zeichenfolge, die Geolocation ähnelt.
///
public static string Geolocation {
get {
@@ -4023,7 +4033,7 @@ public static string Geolocation {
}
///
- /// Looks up a localized string similar to 2.4 GHz.
+ /// Sucht eine lokalisierte Zeichenfolge, die 2.4 GHz ähnelt.
///
public static string GHz2dot4 {
get {
@@ -4032,7 +4042,7 @@ public static string GHz2dot4 {
}
///
- /// Looks up a localized string similar to 5 GHz.
+ /// Sucht eine lokalisierte Zeichenfolge, die 5 GHz ähnelt.
///
public static string GHz5 {
get {
@@ -4041,7 +4051,7 @@ public static string GHz5 {
}
///
- /// Looks up a localized string similar to 6 GHz.
+ /// Sucht eine lokalisierte Zeichenfolge, die 6 GHz ähnelt.
///
public static string GHz6 {
get {
@@ -4050,7 +4060,7 @@ public static string GHz6 {
}
///
- /// Looks up a localized string similar to Gigabits.
+ /// Sucht eine lokalisierte Zeichenfolge, die Gigabits ähnelt.
///
public static string Gigabits {
get {
@@ -4059,7 +4069,7 @@ public static string Gigabits {
}
///
- /// Looks up a localized string similar to Gigabytes.
+ /// Sucht eine lokalisierte Zeichenfolge, die Gigabytes ähnelt.
///
public static string Gigabytes {
get {
@@ -4068,7 +4078,7 @@ public static string Gigabytes {
}
///
- /// Looks up a localized string similar to Got "{0}" as public ip address from "{1}"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Got "{0}" as public ip address from "{1}"! ähnelt.
///
public static string GotXXXAsPublicIPAddressFromXXXMessage {
get {
@@ -4077,7 +4087,7 @@ public static string GotXXXAsPublicIPAddressFromXXXMessage {
}
///
- /// Looks up a localized string similar to Green.
+ /// Sucht eine lokalisierte Zeichenfolge, die Green ähnelt.
///
public static string Green {
get {
@@ -4086,7 +4096,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 {
@@ -4095,7 +4105,7 @@ public static string Group {
}
///
- /// Looks up a localized string similar to Group / domain name.
+ /// Sucht eine lokalisierte Zeichenfolge, die Group / domain name ähnelt.
///
public static string GroupDomainName {
get {
@@ -4104,7 +4114,7 @@ public static string GroupDomainName {
}
///
- /// Looks up a localized string similar to Group name cannot start with "{0}"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Group name cannot start with "{0}"! ähnelt.
///
public static string GroupNameCannotStartWithX {
get {
@@ -4113,7 +4123,7 @@ public static string GroupNameCannotStartWithX {
}
///
- /// Looks up a localized string similar to Groups.
+ /// Sucht eine lokalisierte Zeichenfolge, die Groups ähnelt.
///
public static string Groups {
get {
@@ -4122,7 +4132,7 @@ public static string Groups {
}
///
- /// Looks up a localized string similar to Headers.
+ /// Sucht eine lokalisierte Zeichenfolge, die Headers ähnelt.
///
public static string Headers {
get {
@@ -4131,7 +4141,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 {
@@ -4140,7 +4150,7 @@ public static string Height {
}
///
- /// Looks up a localized string similar to Help.
+ /// Sucht eine lokalisierte Zeichenfolge, die Help ähnelt.
///
public static string Help {
get {
@@ -4149,11 +4159,11 @@ public static string Help {
}
///
- /// Looks up a localized string similar to If you enable this option, the default PowerShell console settings in the registry under HKCU:\Console are overridden so that the PowerShell console window matches the application theme. This is a global system setting that may affect the appearance of the normal PowerShell window.
+ /// Sucht eine lokalisierte Zeichenfolge, die If you enable this option, the default PowerShell console settings in the registry under HKCU:\Console are overridden so that the PowerShell console window matches the application theme. This is a global system setting that may affect the appearance of the normal PowerShell window.
///
///Only the PowerShell consoles configured in the PowerShell and AWS Session Manager settings are modified. Both Windows PowerShell and PWSH (PowerShell 7 and higher) are supported.
///
- ///Click in the upper right corner on the help [rest of string was truncated]";.
+ ///Click in the upper right corner on the help [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt.
///
public static string HelpMessage_ApplyThemeToPowerShellConsole {
get {
@@ -4162,7 +4172,7 @@ public static string HelpMessage_ApplyThemeToPowerShellConsole {
}
///
- /// Looks up a localized string similar to If not set, the default AWS CLI settings are used..
+ /// Sucht eine lokalisierte Zeichenfolge, die If not set, the default AWS CLI settings are used. ähnelt.
///
public static string HelpMessage_AWSCLIDefaultsAreUsedIfNotSet {
get {
@@ -4171,9 +4181,9 @@ public static string HelpMessage_AWSCLIDefaultsAreUsedIfNotSet {
}
///
- /// Looks up a localized string similar to Profile which is used by manually created profiles to connect to an EC2 instance via AWS CLI.
+ /// Sucht eine lokalisierte Zeichenfolge, die Profile which is used by manually created profiles to connect to an EC2 instance via AWS CLI.
///
- ///If not set, the default AWS CLI settings are used..
+ ///If not set, the default AWS CLI settings are used. ähnelt.
///
public static string HelpMessage_AWSSessionManagerProfile {
get {
@@ -4182,7 +4192,7 @@ public static string HelpMessage_AWSSessionManagerProfile {
}
///
- /// Looks up a localized string similar to To synchronize EC2 instances from AWS, the AWS CLI must be configured on the system. The EC2 instances can be queried for multiple AWS accounts (profiles) and multiple regions. To do this, the profile stored in the file "~/.aws/credentials" must be configured along with the region to query..
+ /// Sucht eine lokalisierte Zeichenfolge, die To synchronize EC2 instances from AWS, the AWS CLI must be configured on the system. The EC2 instances can be queried for multiple AWS accounts (profiles) and multiple regions. To do this, the profile stored in the file "~/.aws/credentials" must be configured along with the region to query. ähnelt.
///
public static string HelpMessage_AWSSessionManagerProfilesAndRegionsToSync {
get {
@@ -4191,9 +4201,9 @@ public static string HelpMessage_AWSSessionManagerProfilesAndRegionsToSync {
}
///
- /// Looks up a localized string similar to Region which is used by manually created profiles to connect to an EC2 instance via AWS CLI .
+ /// Sucht eine lokalisierte Zeichenfolge, die Region which is used by manually created profiles to connect to an EC2 instance via AWS CLI .
///
- ///If not set, the default AWS CLI settings are used..
+ ///If not set, the default AWS CLI settings are used. ähnelt.
///
public static string HelpMessage_AWSSessionManagerRegion {
get {
@@ -4202,11 +4212,11 @@ public static string HelpMessage_AWSSessionManagerRegion {
}
///
- /// Looks up a localized string similar to The background job will save settings and profiles every x-minutes.
+ /// Sucht eine lokalisierte Zeichenfolge, die The background job will save settings and profiles every x-minutes.
///
///Value 0 will disable this feature.
///
- ///Changes to this value will take effect after restarting the application..
+ ///Changes to this value will take effect after restarting the application. ähnelt.
///
public static string HelpMessage_BackgroundJob {
get {
@@ -4215,9 +4225,9 @@ public static string HelpMessage_BackgroundJob {
}
///
- /// Looks up a localized string similar to The DNS resolver is determined via ip-api.com.
+ /// Sucht eine lokalisierte Zeichenfolge, die The DNS resolver is determined via ip-api.com.
///
- ///URL: https://edns.ip-api.com/.
+ ///URL: https://edns.ip-api.com/ ähnelt.
///
public static string HelpMessage_CheckDNSResolver {
get {
@@ -4226,9 +4236,9 @@ public static string HelpMessage_CheckDNSResolver {
}
///
- /// Looks up a localized string similar to When starting the program, it checks in the background whether a new program version is available on GitHub.
+ /// Sucht eine lokalisierte Zeichenfolge, die When starting the program, it checks in the background whether a new program version is available on GitHub.
///
- ///URL: https://api.github.com/.
+ ///URL: https://api.github.com/ ähnelt.
///
public static string HelpMessage_CheckForUpdatesAtStartup {
get {
@@ -4237,9 +4247,9 @@ public static string HelpMessage_CheckForUpdatesAtStartup {
}
///
- /// Looks up a localized string similar to The IP geolocation is determined via ip-api.com.
+ /// Sucht eine lokalisierte Zeichenfolge, die The IP geolocation is determined via ip-api.com.
///
- ///URL: http://ip-api.com/.
+ ///URL: http://ip-api.com/ ähnelt.
///
public static string HelpMessage_CheckIPGeolocation {
get {
@@ -4248,9 +4258,9 @@ public static string HelpMessage_CheckIPGeolocation {
}
///
- /// Looks up a localized string similar to The public IP address is determined via ipify.org.
+ /// Sucht eine lokalisierte Zeichenfolge, die The public IP address is determined via ipify.org.
///
- ///URL: https://api.ipify.org and https://api6.ipify.org.
+ ///URL: https://api.ipify.org and https://api6.ipify.org ähnelt.
///
public static string HelpMessage_CheckPublicIPAddress {
get {
@@ -4259,7 +4269,7 @@ public static string HelpMessage_CheckPublicIPAddress {
}
///
- /// 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 {
@@ -4268,10 +4278,10 @@ public static string HelpMessage_Credentials {
}
///
- /// Looks up a localized string similar to The following variables are available:
+ /// Sucht eine lokalisierte Zeichenfolge, die The following variables are available:
///
///$$ipaddress$$ --> IP adresse
- ///$$hostname$$ --> Hostname.
+ ///$$hostname$$ --> Hostname ähnelt.
///
public static string HelpMessage_CustomCommandVariables {
get {
@@ -4280,7 +4290,7 @@ public static string HelpMessage_CustomCommandVariables {
}
///
- /// Looks up a localized string similar to URL to a web service that can be reached via http or https and returns an IPv4 address like "xx.xx.xx.xx" as response..
+ /// Sucht eine lokalisierte Zeichenfolge, die URL to a web service that can be reached via http or https and returns an IPv4 address like "xx.xx.xx.xx" as response. ähnelt.
///
public static string HelpMessage_CustomPublicIPv4AddressAPI {
get {
@@ -4289,7 +4299,7 @@ public static string HelpMessage_CustomPublicIPv4AddressAPI {
}
///
- /// Looks up a localized string similar to URL to a web service that can be reached via http or https and returns an IPv6 address like "xxxx:xx:xxx::xx" as response..
+ /// Sucht eine lokalisierte Zeichenfolge, die URL to a web service that can be reached via http or https and returns an IPv6 address like "xxxx:xx:xxx::xx" as response. ähnelt.
///
public static string HelpMessage_CustomPublicIPv6AddressAPI {
get {
@@ -4298,7 +4308,7 @@ public static string HelpMessage_CustomPublicIPv6AddressAPI {
}
///
- /// Looks up a localized string similar to Enable experimental features to test new functions. These are not yet complete, contain bugs, can crash the application and may change again until release..
+ /// Sucht eine lokalisierte Zeichenfolge, die Enable experimental features to test new functions. These are not yet complete, contain bugs, can crash the application and may change again until release. ähnelt.
///
public static string HelpMessage_ExperimentalFeatures {
get {
@@ -4307,7 +4317,7 @@ public static string HelpMessage_ExperimentalFeatures {
}
///
- /// Looks up a localized string similar to Application that is displayed at startup..
+ /// Sucht eine lokalisierte Zeichenfolge, die Application that is displayed at startup. ähnelt.
///
public static string HelpMessage_ParameterApplication {
get {
@@ -4316,7 +4326,7 @@ public static string HelpMessage_ParameterApplication {
}
///
- /// 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 {
@@ -4325,7 +4335,7 @@ public static string HelpMessage_ParameterHelp {
}
///
- /// Looks up a localized string similar to Resets all application settings..
+ /// Sucht eine lokalisierte Zeichenfolge, die Resets all application settings. ähnelt.
///
public static string HelpMessage_ParameterResetSettings {
get {
@@ -4334,7 +4344,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 {
@@ -4343,7 +4353,7 @@ public static string HelpMessage_PasswordNotDisplayedCanBeOverwritten {
}
///
- /// Looks up a localized string similar to Public IPv4 address reachable via ICMP..
+ /// Sucht eine lokalisierte Zeichenfolge, die Public IPv4 address reachable via ICMP. ähnelt.
///
public static string HelpMessage_PublicIPv4Address {
get {
@@ -4352,7 +4362,7 @@ public static string HelpMessage_PublicIPv4Address {
}
///
- /// Looks up a localized string similar to Public IPv6 address reachable via ICMP..
+ /// Sucht eine lokalisierte Zeichenfolge, die Public IPv6 address reachable via ICMP. ähnelt.
///
public static string HelpMessage_PublicIPv6Address {
get {
@@ -4361,7 +4371,7 @@ public static string HelpMessage_PublicIPv6Address {
}
///
- /// Looks up a localized string similar to SSH hostkey to use for the connection (like "71:b8:f2:6e..."). Only available if the mode is "SSH"..
+ /// Sucht eine lokalisierte Zeichenfolge, die SSH hostkey to use for the connection (like "71:b8:f2:6e..."). Only available if the mode is "SSH". ähnelt.
///
public static string HelpMessage_PuTTYHostkey {
get {
@@ -4370,7 +4380,7 @@ public static string HelpMessage_PuTTYHostkey {
}
///
- /// Looks up a localized string similar to Full path to the private key file (like "C:\Users\BornToBeRoot\SSH\private_key.ppk"). Only available if the mode is "SSH"..
+ /// Sucht eine lokalisierte Zeichenfolge, die Full path to the private key file (like "C:\Users\BornToBeRoot\SSH\private_key.ppk"). Only available if the mode is "SSH". ähnelt.
///
public static string HelpMessage_PuTTYPrivateKeyFile {
get {
@@ -4379,7 +4389,7 @@ public static string HelpMessage_PuTTYPrivateKeyFile {
}
///
- /// Looks up a localized string similar to Username that will be passed into the PuTTY session. Only available if the mode is "SSH", "Telnet" or "Rlogin"..
+ /// Sucht eine lokalisierte Zeichenfolge, die Username that will be passed into the PuTTY session. Only available if the mode is "SSH", "Telnet" or "Rlogin". ähnelt.
///
public static string HelpMessage_PuTTYUsername {
get {
@@ -4388,10 +4398,10 @@ public static string HelpMessage_PuTTYUsername {
}
///
- /// Looks up a localized string similar to [0] If server authentication fails, connect to the computer without warning.
+ /// Sucht eine lokalisierte Zeichenfolge, die [0] If server authentication fails, connect to the computer without warning.
///[1] If server authentication fails, do not establish a connection.
///[2] If server authentication fails, show a warning and allow me to connect or refuse the connection.
- ///[3] No authentication requirement is specified..
+ ///[3] No authentication requirement is specified. ähnelt.
///
public static string HelpMessage_RDPAuthenticationLevel {
get {
@@ -4400,7 +4410,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 {
@@ -4409,13 +4419,13 @@ public static string HelpMessage_Tags {
}
///
- /// Looks up a localized string similar to This setting specifies the minimum number of threads that will be created from the application's ThreadPool on demand. This can improve the performance for example of the IP scanner or port scanner.
+ /// Sucht eine lokalisierte Zeichenfolge, die This setting specifies the minimum number of threads that will be created from the application's ThreadPool on demand. This can improve the performance for example of the IP scanner or port scanner.
///
///The value is added to the default min. threads (number of CPU threads). The value 0 leaves the default settings. If the value is higher than the default max. threads of the ThreadPool, this value is used.
///
///If the value is too high, performance problems may occur.
///
- ///Changes to this value will take effect a [rest of string was truncated]";.
+ ///Changes to this value will take effect a [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt.
///
public static string HelpMessage_ThreadPoolAdditionalMinThreads {
get {
@@ -4424,7 +4434,7 @@ public static string HelpMessage_ThreadPoolAdditionalMinThreads {
}
///
- /// Looks up a localized string similar to Hidden applications.
+ /// Sucht eine lokalisierte Zeichenfolge, die Hidden applications ähnelt.
///
public static string HiddenApplications {
get {
@@ -4433,7 +4443,7 @@ public static string HiddenApplications {
}
///
- /// Looks up a localized string similar to Hidden Network.
+ /// Sucht eine lokalisierte Zeichenfolge, die Hidden Network ähnelt.
///
public static string HiddenNetwork {
get {
@@ -4442,7 +4452,7 @@ public static string HiddenNetwork {
}
///
- /// Looks up a localized string similar to Hide.
+ /// Sucht eine lokalisierte Zeichenfolge, die Hide ähnelt.
///
public static string Hide {
get {
@@ -4451,7 +4461,7 @@ public static string Hide {
}
///
- /// Looks up a localized string similar to Highlight timeouts.
+ /// Sucht eine lokalisierte Zeichenfolge, die Highlight timeouts ähnelt.
///
public static string HighlightTimeouts {
get {
@@ -4460,7 +4470,7 @@ public static string HighlightTimeouts {
}
///
- /// Looks up a localized string similar to History.
+ /// Sucht eine lokalisierte Zeichenfolge, die History ähnelt.
///
public static string History {
get {
@@ -4469,7 +4479,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 {
@@ -4478,7 +4488,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 {
@@ -4487,7 +4497,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 {
@@ -4496,7 +4506,7 @@ public static string Host {
}
///
- /// Looks up a localized string similar to Hosting.
+ /// Sucht eine lokalisierte Zeichenfolge, die Hosting ähnelt.
///
public static string Hosting {
get {
@@ -4505,7 +4515,7 @@ public static string Hosting {
}
///
- /// Looks up a localized string similar to Hostkey.
+ /// Sucht eine lokalisierte Zeichenfolge, die Hostkey ähnelt.
///
public static string Hostkey {
get {
@@ -4514,7 +4524,7 @@ public static string Hostkey {
}
///
- /// Looks up a localized string similar to Hostname.
+ /// Sucht eine lokalisierte Zeichenfolge, die Hostname ähnelt.
///
public static string Hostname {
get {
@@ -4523,7 +4533,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 {
@@ -4532,7 +4542,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 {
@@ -4541,7 +4551,7 @@ public static string Hosts {
}
///
- /// Looks up a localized string similar to Hosts File Editor.
+ /// Sucht eine lokalisierte Zeichenfolge, die Hosts File Editor ähnelt.
///
public static string HostsFileEditor {
get {
@@ -4550,7 +4560,7 @@ public static string HostsFileEditor {
}
///
- /// Looks up a localized string similar to To edit the hosts file, the application must be started with elevated rights!.
+ /// Sucht eine lokalisierte Zeichenfolge, die To edit the hosts file, the application must be started with elevated rights! ähnelt.
///
public static string HostsFileEditorAdminMessage {
get {
@@ -4559,7 +4569,7 @@ public static string HostsFileEditorAdminMessage {
}
///
- /// Looks up a localized string similar to HotKeys.
+ /// Sucht eine lokalisierte Zeichenfolge, die HotKeys ähnelt.
///
public static string HotKeys {
get {
@@ -4568,7 +4578,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 {
@@ -4577,7 +4587,7 @@ public static string HTTPHeaders {
}
///
- /// Looks up a localized string similar to HTTP status code.
+ /// Sucht eine lokalisierte Zeichenfolge, die HTTP status code ähnelt.
///
public static string HTTPStatusCode {
get {
@@ -4586,7 +4596,7 @@ public static string HTTPStatusCode {
}
///
- /// Looks up a localized string similar to ICMPv4.
+ /// Sucht eine lokalisierte Zeichenfolge, die ICMPv4 ähnelt.
///
public static string ICMPv4 {
get {
@@ -4595,7 +4605,7 @@ public static string ICMPv4 {
}
///
- /// Looks up a localized string similar to ICMPv6.
+ /// Sucht eine lokalisierte Zeichenfolge, die ICMPv6 ähnelt.
///
public static string ICMPv6 {
get {
@@ -4604,7 +4614,7 @@ public static string ICMPv6 {
}
///
- /// Looks up a localized string similar to ID.
+ /// Sucht eine lokalisierte Zeichenfolge, die ID ähnelt.
///
public static string ID {
get {
@@ -4613,7 +4623,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 {
@@ -4622,7 +4632,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 {
@@ -4631,7 +4641,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 {
@@ -4640,7 +4650,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 {
@@ -4649,7 +4659,7 @@ public static string Information {
}
///
- /// Looks up a localized string similar to Infrastructure.
+ /// Sucht eine lokalisierte Zeichenfolge, die Infrastructure ähnelt.
///
public static string Infrastructure {
get {
@@ -4658,7 +4668,7 @@ public static string Infrastructure {
}
///
- /// Looks up a localized string similar to Inherit host from general.
+ /// Sucht eine lokalisierte Zeichenfolge, die Inherit host from general ähnelt.
///
public static string InheritHostFromGeneral {
get {
@@ -4667,7 +4677,7 @@ public static string InheritHostFromGeneral {
}
///
- /// Looks up a localized string similar to Input.
+ /// Sucht eine lokalisierte Zeichenfolge, die Input ähnelt.
///
public static string Input {
get {
@@ -4676,7 +4686,7 @@ public static string Input {
}
///
- /// Looks up a localized string similar to Input cannot end with a ";"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Input cannot end with a ";"! ähnelt.
///
public static string InputCannotEndWithSemicolon {
get {
@@ -4685,7 +4695,7 @@ public static string InputCannotEndWithSemicolon {
}
///
- /// Looks up a localized string similar to Input does not contain any text!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Input does not contain any text! ähnelt.
///
public static string InputDoesNotContainAnyText {
get {
@@ -4694,7 +4704,7 @@ public static string InputDoesNotContainAnyText {
}
///
- /// Looks up a localized string similar to Instance ID.
+ /// Sucht eine lokalisierte Zeichenfolge, die Instance ID ähnelt.
///
public static string InstanceId {
get {
@@ -4703,7 +4713,7 @@ public static string InstanceId {
}
///
- /// Looks up a localized string similar to Interface.
+ /// Sucht eine lokalisierte Zeichenfolge, die Interface ähnelt.
///
public static string Interface {
get {
@@ -4712,7 +4722,7 @@ public static string Interface {
}
///
- /// Looks up a localized string similar to Internet.
+ /// Sucht eine lokalisierte Zeichenfolge, die Internet ähnelt.
///
public static string Internet {
get {
@@ -4721,7 +4731,7 @@ public static string Internet {
}
///
- /// Looks up a localized string similar to IP address.
+ /// Sucht eine lokalisierte Zeichenfolge, die IP address ähnelt.
///
public static string IPAddress {
get {
@@ -4730,7 +4740,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 {
@@ -4739,7 +4749,7 @@ public static string IPAddresses {
}
///
- /// Looks up a localized string similar to IP address to detect local ip address based on routing.
+ /// Sucht eine lokalisierte Zeichenfolge, die IP address to detect local ip address based on routing ähnelt.
///
public static string IPAddressToDetectLocalIPAddressBasedOnRouting {
get {
@@ -4748,8 +4758,8 @@ public static string IPAddressToDetectLocalIPAddressBasedOnRouting {
}
///
- /// Looks up a localized string similar to ip-api.com rate limit reached (too many requests from your network)!
- ///Try again in a few seconds..
+ /// Sucht eine lokalisierte Zeichenfolge, die ip-api.com rate limit reached (too many requests from your network)!
+ ///Try again in a few seconds. ähnelt.
///
public static string IPApiRateLimitMessage {
get {
@@ -4758,7 +4768,7 @@ public static string IPApiRateLimitMessage {
}
///
- /// Looks up a localized string similar to IP endpoint.
+ /// Sucht eine lokalisierte Zeichenfolge, die IP endpoint ähnelt.
///
public static string IPEndPoint {
get {
@@ -4767,7 +4777,7 @@ public static string IPEndPoint {
}
///
- /// Looks up a localized string similar to IP geolocation.
+ /// Sucht eine lokalisierte Zeichenfolge, die IP geolocation ähnelt.
///
public static string IPGeolocation {
get {
@@ -4776,7 +4786,7 @@ public static string IPGeolocation {
}
///
- /// Looks up a localized string similar to IP range.
+ /// Sucht eine lokalisierte Zeichenfolge, die IP range ähnelt.
///
public static string IPRange {
get {
@@ -4785,7 +4795,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 {
@@ -4794,7 +4804,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 {
@@ -4803,7 +4813,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 {
@@ -4812,7 +4822,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 {
@@ -4821,7 +4831,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 {
@@ -4830,7 +4840,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 {
@@ -4839,7 +4849,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 {
@@ -4848,7 +4858,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 {
@@ -4857,7 +4867,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 {
@@ -4866,7 +4876,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 {
@@ -4875,7 +4885,7 @@ public static string IPv4DefaultGateway {
}
///
- /// Looks up a localized string similar to IPv4 protocol available.
+ /// Sucht eine lokalisierte Zeichenfolge, die IPv4 protocol available ähnelt.
///
public static string IPv4ProtocolAvailable {
get {
@@ -4884,7 +4894,7 @@ public static string IPv4ProtocolAvailable {
}
///
- /// Looks up a localized string similar to IPv6.
+ /// Sucht eine lokalisierte Zeichenfolge, die IPv6 ähnelt.
///
public static string IPv6 {
get {
@@ -4893,7 +4903,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 {
@@ -4902,7 +4912,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 {
@@ -4911,7 +4921,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 {
@@ -4920,7 +4930,7 @@ public static string IPv6DefaultGateway {
}
///
- /// Looks up a localized string similar to IPv6 protocol available.
+ /// Sucht eine lokalisierte Zeichenfolge, die IPv6 protocol available ähnelt.
///
public static string IPv6ProtocolAvailable {
get {
@@ -4929,7 +4939,7 @@ public static string IPv6ProtocolAvailable {
}
///
- /// Looks up a localized string similar to Is encrypted.
+ /// Sucht eine lokalisierte Zeichenfolge, die Is encrypted ähnelt.
///
public static string IsEncrypted {
get {
@@ -4938,7 +4948,7 @@ public static string IsEncrypted {
}
///
- /// Looks up a localized string similar to ISP.
+ /// Sucht eine lokalisierte Zeichenfolge, die ISP ähnelt.
///
public static string ISP {
get {
@@ -4947,7 +4957,7 @@ public static string ISP {
}
///
- /// Looks up a localized string similar to Keyboard.
+ /// Sucht eine lokalisierte Zeichenfolge, die Keyboard ähnelt.
///
public static string Keyboard {
get {
@@ -4956,7 +4966,7 @@ public static string Keyboard {
}
///
- /// Looks up a localized string similar to Keyboard shortcuts.
+ /// Sucht eine lokalisierte Zeichenfolge, die Keyboard shortcuts ähnelt.
///
public static string KeyboardShortcuts {
get {
@@ -4965,7 +4975,7 @@ public static string KeyboardShortcuts {
}
///
- /// 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 {
@@ -4974,7 +4984,7 @@ public static string KeyMustHave8CharactersOrMore {
}
///
- /// Looks up a localized string similar to Kilobits.
+ /// Sucht eine lokalisierte Zeichenfolge, die Kilobits ähnelt.
///
public static string Kilobits {
get {
@@ -4983,7 +4993,7 @@ public static string Kilobits {
}
///
- /// Looks up a localized string similar to Kilobytes.
+ /// Sucht eine lokalisierte Zeichenfolge, die Kilobytes ähnelt.
///
public static string Kilobytes {
get {
@@ -4992,7 +5002,7 @@ public static string Kilobytes {
}
///
- /// Looks up a localized string similar to Language.
+ /// Sucht eine lokalisierte Zeichenfolge, die Language ähnelt.
///
public static string Language {
get {
@@ -5001,7 +5011,7 @@ public static string Language {
}
///
- /// Looks up a localized string similar to Last scan at {0}.
+ /// Sucht eine lokalisierte Zeichenfolge, die Last scan at {0} ähnelt.
///
public static string LastScanAtX {
get {
@@ -5010,7 +5020,7 @@ public static string LastScanAtX {
}
///
- /// 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 {
@@ -5019,7 +5029,7 @@ public static string LastUsableIPAddress {
}
///
- /// Looks up a localized string similar to Latitude.
+ /// Sucht eine lokalisierte Zeichenfolge, die Latitude ähnelt.
///
public static string Latitude {
get {
@@ -5028,7 +5038,7 @@ public static string Latitude {
}
///
- /// Looks up a localized string similar to Libraries.
+ /// Sucht eine lokalisierte Zeichenfolge, die Libraries ähnelt.
///
public static string Libraries {
get {
@@ -5037,7 +5047,7 @@ public static string Libraries {
}
///
- /// Looks up a localized string similar to AirspacePanel fixes all Airspace issues with WPF-hosted Winforms..
+ /// Sucht eine lokalisierte Zeichenfolge, die AirspacePanel fixes all Airspace issues with WPF-hosted Winforms. ähnelt.
///
public static string Library_AirspaceFixer_Description {
get {
@@ -5046,7 +5056,7 @@ public static string Library_AirspaceFixer_Description {
}
///
- /// Looks up a localized string similar to AWS SDK for .NET to work with Amazon Elastic Compute Cloud (Amazon EC2) in Amazon Web Services (AWS)..
+ /// Sucht eine lokalisierte Zeichenfolge, die AWS SDK for .NET to work with Amazon Elastic Compute Cloud (Amazon EC2) in Amazon Web Services (AWS). ähnelt.
///
public static string Library_AWSSDKdotEC2_Description {
get {
@@ -5055,7 +5065,7 @@ public static string Library_AWSSDKdotEC2_Description {
}
///
- /// Looks up a localized string similar to Shared Controlz for WPF and ... more.
+ /// Sucht eine lokalisierte Zeichenfolge, die Shared Controlz for WPF and ... more ähnelt.
///
public static string Library_ControlzEx_Description {
get {
@@ -5064,7 +5074,7 @@ public static string Library_ControlzEx_Description {
}
///
- /// Looks up a localized string similar to C#/WinRT provides packaged WinRT projection support for the C# language..
+ /// Sucht eine lokalisierte Zeichenfolge, die C#/WinRT provides packaged WinRT projection support for the C# language. ähnelt.
///
public static string Library_CsWinRT_Description {
get {
@@ -5073,7 +5083,7 @@ public static string Library_CsWinRT_Description {
}
///
- /// Looks up a localized string similar to DnsClient.NET is a simple yet very powerful and high performant open source library for the .NET Framework to do DNS lookups.
+ /// Sucht eine lokalisierte Zeichenfolge, die DnsClient.NET is a simple yet very powerful and high performant open source library for the .NET Framework to do DNS lookups ähnelt.
///
public static string Library_DnsClientNET_Description {
get {
@@ -5082,7 +5092,7 @@ public static string Library_DnsClientNET_Description {
}
///
- /// Looks up a localized string similar to Dragable and tearable tab control for WPF.
+ /// Sucht eine lokalisierte Zeichenfolge, die Dragable and tearable tab control for WPF ähnelt.
///
public static string Library_Dragablz_Description {
get {
@@ -5091,7 +5101,7 @@ public static string Library_Dragablz_Description {
}
///
- /// Looks up a localized string similar to An easy to use drag'n'drop framework for WPF..
+ /// Sucht eine lokalisierte Zeichenfolge, die An easy to use drag'n'drop framework for WPF. ähnelt.
///
public static string Library_GongSolutionsWpfDragDrop_Description {
get {
@@ -5100,7 +5110,7 @@ public static string Library_GongSolutionsWpfDragDrop_Description {
}
///
- /// Looks up a localized string similar to C# library take care of complex network, IP, IPv4, IPv6, netmask, CIDR, subnet, subnetting, supernet, and supernetting calculation for .NET developers..
+ /// Sucht eine lokalisierte Zeichenfolge, die C# library take care of complex network, IP, IPv4, IPv6, netmask, CIDR, subnet, subnetting, supernet, and supernetting calculation for .NET developers. ähnelt.
///
public static string Library_IPNetwork_Description {
get {
@@ -5109,7 +5119,7 @@ public static string Library_IPNetwork_Description {
}
///
- /// Looks up a localized string similar to Simple, flexible, interactive & powerful charts, maps and gauges for .Net.
+ /// Sucht eine lokalisierte Zeichenfolge, die Simple, flexible, interactive & powerful charts, maps and gauges for .Net ähnelt.
///
public static string Library_LiveCharts_Description {
get {
@@ -5118,7 +5128,7 @@ public static string Library_LiveCharts_Description {
}
///
- /// Looks up a localized string similar to A collection of loading indicators for WPF.
+ /// Sucht eine lokalisierte Zeichenfolge, die A collection of loading indicators for WPF ähnelt.
///
public static string Library_LoadingIndicatorsWPF_Description {
get {
@@ -5127,7 +5137,7 @@ public static string Library_LoadingIndicatorsWPF_Description {
}
///
- /// Looks up a localized string similar to log4net is a tool to help the programmer output log statements to a variety of output targets..
+ /// Sucht eine lokalisierte Zeichenfolge, die log4net is a tool to help the programmer output log statements to a variety of output targets. ähnelt.
///
public static string Library_log4net_Description {
get {
@@ -5136,7 +5146,7 @@ public static string Library_log4net_Description {
}
///
- /// Looks up a localized string similar to A toolkit for creating Metro / Modern UI styled WPF apps..
+ /// Sucht eine lokalisierte Zeichenfolge, die A toolkit for creating Metro / Modern UI styled WPF apps. ähnelt.
///
public static string Library_MahAppsMetro_Description {
get {
@@ -5145,7 +5155,7 @@ public static string Library_MahAppsMetro_Description {
}
///
- /// Looks up a localized string similar to Some awesome icons for WPF and UWP all together....
+ /// Sucht eine lokalisierte Zeichenfolge, die Some awesome icons for WPF and UWP all together... ähnelt.
///
public static string Library_MahAppsMetroIconPacks_Description {
get {
@@ -5154,7 +5164,7 @@ public static string Library_MahAppsMetroIconPacks_Description {
}
///
- /// Looks up a localized string similar to Json.NET is a popular high-performance JSON framework for .NET.
+ /// Sucht eine lokalisierte Zeichenfolge, die Json.NET is a popular high-performance JSON framework for .NET ähnelt.
///
public static string Library_NewtonsoftJson_Description {
get {
@@ -5163,7 +5173,7 @@ public static string Library_NewtonsoftJson_Description {
}
///
- /// Looks up a localized string similar to Move a .NET Framework/.NET Core app runtime components and dependencies into a sub-directory and make it beauty..
+ /// Sucht eine lokalisierte Zeichenfolge, die Move a .NET Framework/.NET Core app runtime components and dependencies into a sub-directory and make it beauty. ähnelt.
///
public static string Library_nulastudioNetBeauty_Description {
get {
@@ -5172,7 +5182,7 @@ public static string Library_nulastudioNetBeauty_Description {
}
///
- /// Looks up a localized string similar to A GitHub API client library for .NET.
+ /// Sucht eine lokalisierte Zeichenfolge, die A GitHub API client library for .NET ähnelt.
///
public static string Library_Octokit_Description {
get {
@@ -5181,7 +5191,7 @@ public static string Library_Octokit_Description {
}
///
- /// Looks up a localized string similar to Runtime for hosting PowerShell.
+ /// Sucht eine lokalisierte Zeichenfolge, die Runtime for hosting PowerShell ähnelt.
///
public static string Library_PowerShellSDK_Description {
get {
@@ -5190,7 +5200,7 @@ public static string Library_PowerShellSDK_Description {
}
///
- /// Looks up a localized string similar to Capture and parse CDP and LLDP packets on local or remote computers.
+ /// Sucht eine lokalisierte Zeichenfolge, die Capture and parse CDP and LLDP packets on local or remote computers ähnelt.
///
public static string Library_PSDicoveryProtocol_Description {
get {
@@ -5199,7 +5209,7 @@ public static string Library_PSDicoveryProtocol_Description {
}
///
- /// Looks up a localized string similar to Sharp SNMP Library - Open Source SNMP for .NET and Mono.
+ /// Sucht eine lokalisierte Zeichenfolge, die Sharp SNMP Library - Open Source SNMP for .NET and Mono ähnelt.
///
public static string Library_SharpSNMP_Description {
get {
@@ -5208,7 +5218,7 @@ public static string Library_SharpSNMP_Description {
}
///
- /// Looks up a localized string similar to The WebView2 control enables you to embed web technologies (HTML, CSS, and JavaScript) in your native applications powered by Microsoft Edge (Chromium)..
+ /// Sucht eine lokalisierte Zeichenfolge, die The WebView2 control enables you to embed web technologies (HTML, CSS, and JavaScript) in your native applications powered by Microsoft Edge (Chromium). ähnelt.
///
public static string Library_WebView2_Description {
get {
@@ -5217,7 +5227,7 @@ public static string Library_WebView2_Description {
}
///
- /// Looks up a localized string similar to Easily add interactivity to your apps using XAML Behaviors for WPF..
+ /// Sucht eine lokalisierte Zeichenfolge, die Easily add interactivity to your apps using XAML Behaviors for WPF. ähnelt.
///
public static string Library_XamlBehaviorsWpf_Description {
get {
@@ -5226,7 +5236,7 @@ public static string Library_XamlBehaviorsWpf_Description {
}
///
- /// Looks up a localized string similar to License.
+ /// Sucht eine lokalisierte Zeichenfolge, die License ähnelt.
///
public static string License {
get {
@@ -5235,7 +5245,7 @@ public static string License {
}
///
- /// Looks up a localized string similar to Apache License 2.0.
+ /// Sucht eine lokalisierte Zeichenfolge, die Apache License 2.0 ähnelt.
///
public static string License_ApacheLicense2dot0 {
get {
@@ -5244,7 +5254,7 @@ public static string License_ApacheLicense2dot0 {
}
///
- /// Looks up a localized string similar to BSD-2-Clause.
+ /// Sucht eine lokalisierte Zeichenfolge, die BSD-2-Clause ähnelt.
///
public static string License_BDS2Clause {
get {
@@ -5253,7 +5263,7 @@ public static string License_BDS2Clause {
}
///
- /// Looks up a localized string similar to BSD-3-Clause.
+ /// Sucht eine lokalisierte Zeichenfolge, die BSD-3-Clause ähnelt.
///
public static string License_BDS3Clause {
get {
@@ -5262,7 +5272,7 @@ public static string License_BDS3Clause {
}
///
- /// Looks up a localized string similar to Microsoft WebView2 License.
+ /// Sucht eine lokalisierte Zeichenfolge, die Microsoft WebView2 License ähnelt.
///
public static string License_MicrosoftWebView2License {
get {
@@ -5271,7 +5281,7 @@ public static string License_MicrosoftWebView2License {
}
///
- /// Looks up a localized string similar to MIT License.
+ /// Sucht eine lokalisierte Zeichenfolge, die MIT License ähnelt.
///
public static string License_MITLicense {
get {
@@ -5280,7 +5290,7 @@ public static string License_MITLicense {
}
///
- /// Looks up a localized string similar to Unlicense.
+ /// Sucht eine lokalisierte Zeichenfolge, die Unlicense ähnelt.
///
public static string License_Unlicense {
get {
@@ -5289,7 +5299,7 @@ public static string License_Unlicense {
}
///
- /// Looks up a localized string similar to Lime.
+ /// Sucht eine lokalisierte Zeichenfolge, die Lime ähnelt.
///
public static string Lime {
get {
@@ -5298,7 +5308,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 {
@@ -5307,7 +5317,7 @@ public static string Listeners {
}
///
- /// Looks up a localized string similar to LLDP / CDP.
+ /// Sucht eine lokalisierte Zeichenfolge, die LLDP / CDP ähnelt.
///
public static string LldpCdp {
get {
@@ -5316,7 +5326,7 @@ public static string LldpCdp {
}
///
- /// Looks up a localized string similar to Local connection.
+ /// Sucht eine lokalisierte Zeichenfolge, die Local connection ähnelt.
///
public static string LocalConnection {
get {
@@ -5325,7 +5335,7 @@ public static string LocalConnection {
}
///
- /// 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 {
@@ -5334,7 +5344,7 @@ public static string LocalDevicesAndResources {
}
///
- /// Looks up a localized string similar to Local end time.
+ /// Sucht eine lokalisierte Zeichenfolge, die Local end time ähnelt.
///
public static string LocalEndTime {
get {
@@ -5343,7 +5353,7 @@ public static string LocalEndTime {
}
///
- /// Looks up a localized string similar to Local interface.
+ /// Sucht eine lokalisierte Zeichenfolge, die Local interface ähnelt.
///
public static string LocalInterface {
get {
@@ -5352,7 +5362,7 @@ public static string LocalInterface {
}
///
- /// Looks up a localized string similar to Local IP address.
+ /// Sucht eine lokalisierte Zeichenfolge, die Local IP address ähnelt.
///
public static string LocalIPAddress {
get {
@@ -5361,7 +5371,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 {
@@ -5370,7 +5380,7 @@ public static string LocalPort {
}
///
- /// Looks up a localized string similar to Local start time.
+ /// Sucht eine lokalisierte Zeichenfolge, die Local start time ähnelt.
///
public static string LocalStartTime {
get {
@@ -5379,7 +5389,7 @@ public static string LocalStartTime {
}
///
- /// Looks up a localized string similar to Location.
+ /// Sucht eine lokalisierte Zeichenfolge, die Location ähnelt.
///
public static string Location {
get {
@@ -5388,7 +5398,7 @@ public static string Location {
}
///
- /// Looks up a localized string similar to Location cannot be changed in portable version!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Location cannot be changed in portable version! ähnelt.
///
public static string LocationCannotBeChangedInThePortableVersion {
get {
@@ -5397,7 +5407,7 @@ public static string LocationCannotBeChangedInThePortableVersion {
}
///
- /// Looks up a localized string similar to Location....
+ /// Sucht eine lokalisierte Zeichenfolge, die Location... ähnelt.
///
public static string LocationDots {
get {
@@ -5406,7 +5416,7 @@ public static string LocationDots {
}
///
- /// 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 {
@@ -5415,7 +5425,7 @@ public static string LocationOfTheImport {
}
///
- /// Looks up a localized string similar to Log.
+ /// Sucht eine lokalisierte Zeichenfolge, die Log ähnelt.
///
public static string Log {
get {
@@ -5424,7 +5434,7 @@ public static string Log {
}
///
- /// Looks up a localized string similar to Log file name.
+ /// Sucht eine lokalisierte Zeichenfolge, die Log file name ähnelt.
///
public static string LogFileName {
get {
@@ -5433,7 +5443,7 @@ public static string LogFileName {
}
///
- /// Looks up a localized string similar to Log mode.
+ /// Sucht eine lokalisierte Zeichenfolge, die Log mode ähnelt.
///
public static string LogMode {
get {
@@ -5442,7 +5452,7 @@ public static string LogMode {
}
///
- /// Looks up a localized string similar to Logon method.
+ /// Sucht eine lokalisierte Zeichenfolge, die Logon method ähnelt.
///
public static string LogonMethod {
get {
@@ -5451,7 +5461,7 @@ public static string LogonMethod {
}
///
- /// Looks up a localized string similar to Log path.
+ /// Sucht eine lokalisierte Zeichenfolge, die Log path ähnelt.
///
public static string LogPath {
get {
@@ -5460,7 +5470,7 @@ public static string LogPath {
}
///
- /// Looks up a localized string similar to Longitude.
+ /// Sucht eine lokalisierte Zeichenfolge, die Longitude ähnelt.
///
public static string Longitude {
get {
@@ -5469,7 +5479,7 @@ public static string Longitude {
}
///
- /// Looks up a localized string similar to Lookup.
+ /// Sucht eine lokalisierte Zeichenfolge, die Lookup ähnelt.
///
public static string Lookup {
get {
@@ -5478,7 +5488,7 @@ public static string Lookup {
}
///
- /// Looks up a localized string similar to Lost.
+ /// Sucht eine lokalisierte Zeichenfolge, die Lost ähnelt.
///
public static string Lost {
get {
@@ -5487,7 +5497,7 @@ public static string Lost {
}
///
- /// Looks up a localized string similar to MAC Address.
+ /// Sucht eine lokalisierte Zeichenfolge, die MAC Address ähnelt.
///
public static string MACAddress {
get {
@@ -5496,7 +5506,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 {
@@ -5505,7 +5515,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 {
@@ -5514,7 +5524,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 {
@@ -5523,7 +5533,7 @@ public static string MagicPacketSentMessage {
}
///
- /// Looks up a localized string similar to Management.
+ /// Sucht eine lokalisierte Zeichenfolge, die Management ähnelt.
///
public static string Management {
get {
@@ -5532,7 +5542,7 @@ public static string Management {
}
///
- /// Looks up a localized string similar to Master Password.
+ /// Sucht eine lokalisierte Zeichenfolge, die Master Password ähnelt.
///
public static string MasterPassword {
get {
@@ -5541,7 +5551,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 {
@@ -5550,7 +5560,7 @@ public static string Mauve {
}
///
- /// Looks up a localized string similar to Max. concurrent host threads.
+ /// Sucht eine lokalisierte Zeichenfolge, die Max. concurrent host threads ähnelt.
///
public static string MaxHostThreads {
get {
@@ -5559,7 +5569,7 @@ public static string MaxHostThreads {
}
///
- /// Looks up a localized string similar to Maximum.
+ /// Sucht eine lokalisierte Zeichenfolge, die Maximum ähnelt.
///
public static string Maximum {
get {
@@ -5568,7 +5578,7 @@ public static string Maximum {
}
///
- /// Looks up a localized string similar to Maximum hops.
+ /// Sucht eine lokalisierte Zeichenfolge, die Maximum hops ähnelt.
///
public static string MaximumHops {
get {
@@ -5577,7 +5587,7 @@ public static string MaximumHops {
}
///
- /// 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 {
@@ -5586,7 +5596,7 @@ public static string MaximumNumberOfHopsReached {
}
///
- /// Looks up a localized string similar to Max. concurrent port threads.
+ /// Sucht eine lokalisierte Zeichenfolge, die Max. concurrent port threads ähnelt.
///
public static string MaxPortThreads {
get {
@@ -5595,7 +5605,7 @@ public static string MaxPortThreads {
}
///
- /// Looks up a localized string similar to These settings only change the maximum number of concurrently executed threads per host/port scan. Go to Settings > General > General to adjust the (min) threads of the application..
+ /// Sucht eine lokalisierte Zeichenfolge, die These settings only change the maximum number of concurrently executed threads per host/port scan. Go to Settings > General > General to adjust the (min) threads of the application. ähnelt.
///
public static string MaxThreadsOnlyGoToSettingsGeneralGeneral {
get {
@@ -5604,7 +5614,7 @@ public static string MaxThreadsOnlyGoToSettingsGeneralGeneral {
}
///
- /// Looks up a localized string similar to Measured time.
+ /// Sucht eine lokalisierte Zeichenfolge, die Measured time ähnelt.
///
public static string MeasuredTime {
get {
@@ -5613,7 +5623,7 @@ public static string MeasuredTime {
}
///
- /// Looks up a localized string similar to Megabits.
+ /// Sucht eine lokalisierte Zeichenfolge, die Megabits ähnelt.
///
public static string Megabits {
get {
@@ -5622,7 +5632,7 @@ public static string Megabits {
}
///
- /// Looks up a localized string similar to Megabytes.
+ /// Sucht eine lokalisierte Zeichenfolge, die Megabytes ähnelt.
///
public static string Megabytes {
get {
@@ -5631,7 +5641,7 @@ public static string Megabytes {
}
///
- /// Looks up a localized string similar to Menu and window animation.
+ /// Sucht eine lokalisierte Zeichenfolge, die Menu and window animation ähnelt.
///
public static string MenuAndWindowAnimation {
get {
@@ -5640,7 +5650,7 @@ public static string MenuAndWindowAnimation {
}
///
- /// Looks up a localized string similar to Merge.
+ /// Sucht eine lokalisierte Zeichenfolge, die Merge ähnelt.
///
public static string Merge {
get {
@@ -5649,7 +5659,7 @@ public static string Merge {
}
///
- /// Looks up a localized string similar to Message size.
+ /// Sucht eine lokalisierte Zeichenfolge, die Message size ähnelt.
///
public static string MessageSize {
get {
@@ -5658,7 +5668,7 @@ public static string MessageSize {
}
///
- /// Looks up a localized string similar to MIB.
+ /// Sucht eine lokalisierte Zeichenfolge, die MIB ähnelt.
///
public static string MIB {
get {
@@ -5667,7 +5677,7 @@ public static string MIB {
}
///
- /// Looks up a localized string similar to Microsoft Edge WebView2 Runtime is not available!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Microsoft Edge WebView2 Runtime is not available! ähnelt.
///
public static string MicrosoftEdgeWebView2RuntimeIsNotAvailable {
get {
@@ -5676,7 +5686,7 @@ public static string MicrosoftEdgeWebView2RuntimeIsNotAvailable {
}
///
- /// Looks up a localized string similar to Microsoft.Windows.SDK.Contracts is required for this feature but not available on this system (e.g. on Windows Server)..
+ /// Sucht eine lokalisierte Zeichenfolge, die Microsoft.Windows.SDK.Contracts is required for this feature but not available on this system (e.g. on Windows Server). ähnelt.
///
public static string MicrosoftWindowsSDKContractsIsNotAvailable {
get {
@@ -5685,7 +5695,7 @@ public static string MicrosoftWindowsSDKContractsIsNotAvailable {
}
///
- /// Looks up a localized string similar to Migrate.
+ /// Sucht eine lokalisierte Zeichenfolge, die Migrate ähnelt.
///
public static string Migrate {
get {
@@ -5694,7 +5704,7 @@ public static string Migrate {
}
///
- /// 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 {
@@ -5703,7 +5713,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 {
@@ -5712,7 +5722,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 {
@@ -5721,7 +5731,7 @@ public static string Minimum {
}
///
- /// Looks up a localized string similar to Mobile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Mobile ähnelt.
///
public static string Mobile {
get {
@@ -5730,7 +5740,7 @@ public static string Mobile {
}
///
- /// Looks up a localized string similar to Mode.
+ /// Sucht eine lokalisierte Zeichenfolge, die Mode ähnelt.
///
public static string Mode {
get {
@@ -5739,7 +5749,7 @@ public static string Mode {
}
///
- /// Looks up a localized string similar to Model.
+ /// Sucht eine lokalisierte Zeichenfolge, die Model ähnelt.
///
public static string Model {
get {
@@ -5748,7 +5758,7 @@ public static string Model {
}
///
- /// Looks up a localized string similar to Move.
+ /// Sucht eine lokalisierte Zeichenfolge, die Move ähnelt.
///
public static string Move {
get {
@@ -5757,7 +5767,7 @@ public static string Move {
}
///
- /// Looks up a localized string similar to Move & Restart.
+ /// Sucht eine lokalisierte Zeichenfolge, die Move & Restart ähnelt.
///
public static string MoveAndRestart {
get {
@@ -5766,7 +5776,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 {
@@ -5775,7 +5785,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 {
@@ -5784,7 +5794,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 {
@@ -5793,7 +5803,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 {
@@ -5802,7 +5812,7 @@ public static string Name {
}
///
- /// Looks up a localized string similar to NetBIOS.
+ /// Sucht eine lokalisierte Zeichenfolge, die NetBIOS ähnelt.
///
public static string NetBIOS {
get {
@@ -5811,7 +5821,7 @@ public static string NetBIOS {
}
///
- /// Looks up a localized string similar to NetBIOS scan is disabled!.
+ /// Sucht eine lokalisierte Zeichenfolge, die NetBIOS scan is disabled! ähnelt.
///
public static string NetBIOSIsDisabled {
get {
@@ -5820,7 +5830,7 @@ public static string NetBIOSIsDisabled {
}
///
- /// Looks up a localized string similar to NetBIOS reachable.
+ /// Sucht eine lokalisierte Zeichenfolge, die NetBIOS reachable ähnelt.
///
public static string NetBIOSReachable {
get {
@@ -5829,7 +5839,7 @@ public static string NetBIOSReachable {
}
///
- /// Looks up a localized string similar to Network.
+ /// Sucht eine lokalisierte Zeichenfolge, die Network ähnelt.
///
public static string Network {
get {
@@ -5838,7 +5848,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 {
@@ -5847,7 +5857,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 {
@@ -5856,7 +5866,7 @@ public static string NetworkConnectionsDots {
}
///
- /// Looks up a localized string similar to Network connection type.
+ /// Sucht eine lokalisierte Zeichenfolge, die Network connection type ähnelt.
///
public static string NetworkConnectionType {
get {
@@ -5865,7 +5875,7 @@ public static string NetworkConnectionType {
}
///
- /// Looks up a localized string similar to Network Interface.
+ /// Sucht eine lokalisierte Zeichenfolge, die Network Interface ähnelt.
///
public static string NetworkInterface {
get {
@@ -5874,7 +5884,7 @@ public static string NetworkInterface {
}
///
- /// Looks up a localized string similar to Network kind.
+ /// Sucht eine lokalisierte Zeichenfolge, die Network kind ähnelt.
///
public static string NetworkKind {
get {
@@ -5883,7 +5893,7 @@ public static string NetworkKind {
}
///
- /// 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 {
@@ -5892,7 +5902,7 @@ public static string NetworkLocationCannotBeReachedMessage {
}
///
- /// Looks up a localized string similar to To analyze network packets, the application must be started with elevated rights!.
+ /// Sucht eine lokalisierte Zeichenfolge, die To analyze network packets, the application must be started with elevated rights! ähnelt.
///
public static string NetworkPacketsCaptureAdminMessage {
get {
@@ -5901,7 +5911,7 @@ public static string NetworkPacketsCaptureAdminMessage {
}
///
- /// Looks up a localized string similar to Networks.
+ /// Sucht eine lokalisierte Zeichenfolge, die Networks ähnelt.
///
public static string Networks {
get {
@@ -5910,7 +5920,7 @@ public static string Networks {
}
///
- /// Looks up a localized string similar to Network time.
+ /// Sucht eine lokalisierte Zeichenfolge, die Network time ähnelt.
///
public static string NetworkTime {
get {
@@ -5919,7 +5929,7 @@ public static string NetworkTime {
}
///
- /// Looks up a localized string similar to Network unavailable!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Network unavailable! ähnelt.
///
public static string NetworkUnavailable {
get {
@@ -5928,7 +5938,7 @@ public static string NetworkUnavailable {
}
///
- /// Looks up a localized string similar to Network usage.
+ /// Sucht eine lokalisierte Zeichenfolge, die Network usage ähnelt.
///
public static string NetworkUsage {
get {
@@ -5937,7 +5947,7 @@ public static string NetworkUsage {
}
///
- /// Looks up a localized string similar to New connection....
+ /// Sucht eine lokalisierte Zeichenfolge, die New connection... ähnelt.
///
public static string NewConnectionDots {
get {
@@ -5946,7 +5956,7 @@ public static string NewConnectionDots {
}
///
- /// Looks up a localized string similar to New password.
+ /// Sucht eine lokalisierte Zeichenfolge, die New password ähnelt.
///
public static string NewPassword {
get {
@@ -5955,7 +5965,7 @@ public static string NewPassword {
}
///
- /// Looks up a localized string similar to New subnet mask.
+ /// Sucht eine lokalisierte Zeichenfolge, die New subnet mask ähnelt.
///
public static string NewSubnetMask {
get {
@@ -5964,7 +5974,7 @@ public static string NewSubnetMask {
}
///
- /// 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 {
@@ -5973,7 +5983,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 {
@@ -5982,7 +5992,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 {
@@ -5991,7 +6001,7 @@ public static string No {
}
///
- /// Looks up a localized string similar to No A dns records resolved for "{0}"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die No A dns records resolved for "{0}"! ähnelt.
///
public static string NoADNSRecordsResolvedForXXXMessage {
get {
@@ -6000,7 +6010,7 @@ public static string NoADNSRecordsResolvedForXXXMessage {
}
///
- /// Looks up a localized string similar to No discovery protocol packages received!.
+ /// Sucht eine lokalisierte Zeichenfolge, die No discovery protocol packages received! ähnelt.
///
public static string NoDiscoveryProtocolPackagesReceived {
get {
@@ -6009,7 +6019,7 @@ public static string NoDiscoveryProtocolPackagesReceived {
}
///
- /// 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 {
@@ -6018,7 +6028,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 {
@@ -6027,7 +6037,7 @@ public static string NoEnabledNetworkAdaptersFound {
}
///
- /// Looks up a localized string similar to No matching commands!.
+ /// Sucht eine lokalisierte Zeichenfolge, die No matching commands! ähnelt.
///
public static string NoMatchingCommands {
get {
@@ -6036,7 +6046,7 @@ public static string NoMatchingCommands {
}
///
- /// Looks up a localized string similar to No open ports found!.
+ /// Sucht eine lokalisierte Zeichenfolge, die No open ports found! ähnelt.
///
public static string NoOpenPortsFound {
get {
@@ -6045,7 +6055,7 @@ public static string NoOpenPortsFound {
}
///
- /// 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 {
@@ -6054,8 +6064,8 @@ 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 {
@@ -6064,7 +6074,7 @@ public static string NoProfilesFoundCreateOne {
}
///
- /// Looks up a localized string similar to No PTR dns record resolved for "{0}"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die No PTR dns record resolved for "{0}"! ähnelt.
///
public static string NoPTRDNSRecordResolvedForXXXMessage {
get {
@@ -6073,7 +6083,7 @@ public static string NoPTRDNSRecordResolvedForXXXMessage {
}
///
- /// Looks up a localized string similar to No reachable hosts found!.
+ /// Sucht eine lokalisierte Zeichenfolge, die No reachable hosts found! ähnelt.
///
public static string NoReachableHostsFound {
get {
@@ -6082,7 +6092,7 @@ public static string NoReachableHostsFound {
}
///
- /// Looks up a localized string similar to Notation.
+ /// Sucht eine lokalisierte Zeichenfolge, die Notation ähnelt.
///
public static string Notation {
get {
@@ -6091,7 +6101,7 @@ public static string Notation {
}
///
- /// Looks up a localized string similar to (not changed).
+ /// Sucht eine lokalisierte Zeichenfolge, die (not changed) ähnelt.
///
public static string NotChanged {
get {
@@ -6100,7 +6110,7 @@ public static string NotChanged {
}
///
- /// Looks up a localized string similar to Note.
+ /// Sucht eine lokalisierte Zeichenfolge, die Note ähnelt.
///
public static string Note {
get {
@@ -6109,7 +6119,7 @@ public static string Note {
}
///
- /// Looks up a localized string similar to Nothing found!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Nothing found! ähnelt.
///
public static string NothingFound {
get {
@@ -6118,7 +6128,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 {
@@ -6127,7 +6137,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 {
@@ -6136,7 +6146,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 {
@@ -6145,7 +6155,7 @@ public static string NoValidFileFoundToImport {
}
///
- /// Looks up a localized string similar to A valid path to PowerShell should end with "pwsh.exe" or "powershell.exe"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die A valid path to PowerShell should end with "pwsh.exe" or "powershell.exe"! ähnelt.
///
public static string NoValidPowerShellPath {
get {
@@ -6154,7 +6164,7 @@ public static string NoValidPowerShellPath {
}
///
- /// Looks up a localized string similar to A valid path to PuTTY should end with "PuTTY.exe"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die A valid path to PuTTY should end with "PuTTY.exe"! ähnelt.
///
public static string NoValidPuTTYPath {
get {
@@ -6163,7 +6173,7 @@ public static string NoValidPuTTYPath {
}
///
- /// Looks up a localized string similar to A valid path to TigerVNC should end with "vncviewer-*.exe" or "vncviewer64-*.exe"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die A valid path to TigerVNC should end with "vncviewer-*.exe" or "vncviewer64-*.exe"! ähnelt.
///
public static string NoValidTigerVNCPath {
get {
@@ -6172,7 +6182,7 @@ public static string NoValidTigerVNCPath {
}
///
- /// 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 {
@@ -6181,7 +6191,7 @@ public static string NoVendorFoundCheckYourInput {
}
///
- /// Looks up a localized string similar to No WiFi adapters found!.
+ /// Sucht eine lokalisierte Zeichenfolge, die No WiFi adapters found! ähnelt.
///
public static string NoWiFiAdaptersFound {
get {
@@ -6190,7 +6200,7 @@ public static string NoWiFiAdaptersFound {
}
///
- /// Looks up a localized string similar to No WiFi networks found!.
+ /// Sucht eine lokalisierte Zeichenfolge, die No WiFi networks found! ähnelt.
///
public static string NoWiFiNetworksFound {
get {
@@ -6199,7 +6209,7 @@ public static string NoWiFiNetworksFound {
}
///
- /// 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 {
@@ -6208,7 +6218,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 {
@@ -6217,7 +6227,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 {
@@ -6226,7 +6236,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 {
@@ -6235,7 +6245,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 {
@@ -6244,7 +6254,7 @@ public static string Off {
}
///
- /// Looks up a localized string similar to Official.
+ /// Sucht eine lokalisierte Zeichenfolge, die Official ähnelt.
///
public static string Official {
get {
@@ -6253,7 +6263,7 @@ public static string Official {
}
///
- /// Looks up a localized string similar to Offset.
+ /// Sucht eine lokalisierte Zeichenfolge, die Offset ähnelt.
///
public static string Offset {
get {
@@ -6262,7 +6272,7 @@ public static string Offset {
}
///
- /// Looks up a localized string similar to OID.
+ /// Sucht eine lokalisierte Zeichenfolge, die OID ähnelt.
///
public static string OID {
get {
@@ -6271,7 +6281,7 @@ public static string OID {
}
///
- /// Looks up a localized string similar to OID profiles.
+ /// Sucht eine lokalisierte Zeichenfolge, die OID profiles ähnelt.
///
public static string OIDProfiles {
get {
@@ -6280,7 +6290,7 @@ public static string OIDProfiles {
}
///
- /// Looks up a localized string similar to OK.
+ /// Sucht eine lokalisierte Zeichenfolge, die OK ähnelt.
///
public static string OK {
get {
@@ -6289,7 +6299,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 {
@@ -6298,7 +6308,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 {
@@ -6307,7 +6317,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 {
@@ -6316,7 +6326,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 {
@@ -6325,7 +6335,7 @@ public static string OnlyWhenUsingTheFullScreen {
}
///
- /// Looks up a localized string similar to Open.
+ /// Sucht eine lokalisierte Zeichenfolge, die Open ähnelt.
///
public static string Open {
get {
@@ -6334,7 +6344,7 @@ public static string Open {
}
///
- /// Looks up a localized string similar to Open documentation.
+ /// Sucht eine lokalisierte Zeichenfolge, die Open documentation ähnelt.
///
public static string OpenDocumentation {
get {
@@ -6343,7 +6353,7 @@ public static string OpenDocumentation {
}
///
- /// Looks up a localized string similar to Open license.
+ /// Sucht eine lokalisierte Zeichenfolge, die Open license ähnelt.
///
public static string OpenLicense {
get {
@@ -6352,7 +6362,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 {
@@ -6361,7 +6371,7 @@ public static string OpenLocation {
}
///
- /// Looks up a localized string similar to Open OID profiles....
+ /// Sucht eine lokalisierte Zeichenfolge, die Open OID profiles... ähnelt.
///
public static string OpenOIDProfilesDots {
get {
@@ -6370,7 +6380,7 @@ public static string OpenOIDProfilesDots {
}
///
- /// Looks up a localized string similar to Open port profiles....
+ /// Sucht eine lokalisierte Zeichenfolge, die Open port profiles... ähnelt.
///
public static string OpenPortProfilesDots {
get {
@@ -6379,7 +6389,7 @@ public static string OpenPortProfilesDots {
}
///
- /// Looks up a localized string similar to Open project.
+ /// Sucht eine lokalisierte Zeichenfolge, die Open project ähnelt.
///
public static string OpenProject {
get {
@@ -6388,7 +6398,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 {
@@ -6397,7 +6407,7 @@ public static string OpenSettings {
}
///
- /// Looks up a localized string similar to Open settings....
+ /// Sucht eine lokalisierte Zeichenfolge, die Open settings... ähnelt.
///
public static string OpenSettingsDots {
get {
@@ -6406,7 +6416,7 @@ public static string OpenSettingsDots {
}
///
- /// Looks up a localized string similar to Open website.
+ /// Sucht eine lokalisierte Zeichenfolge, die Open website ähnelt.
///
public static string OpenWebsite {
get {
@@ -6415,7 +6425,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 {
@@ -6424,7 +6434,7 @@ public static string Orange {
}
///
- /// Looks up a localized string similar to Organization.
+ /// Sucht eine lokalisierte Zeichenfolge, die Organization ähnelt.
///
public static string Organization {
get {
@@ -6433,7 +6443,7 @@ public static string Organization {
}
///
- /// Looks up a localized string similar to OUI.
+ /// Sucht eine lokalisierte Zeichenfolge, die OUI ähnelt.
///
public static string OUI {
get {
@@ -6442,7 +6452,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 {
@@ -6451,7 +6461,7 @@ public static string Override {
}
///
- /// Looks up a localized string similar to Override default settings.
+ /// Sucht eine lokalisierte Zeichenfolge, die Override default settings ähnelt.
///
public static string OverrideDefaultSettings {
get {
@@ -6460,7 +6470,7 @@ public static string OverrideDefaultSettings {
}
///
- /// Looks up a localized string similar to Overwrite.
+ /// Sucht eine lokalisierte Zeichenfolge, die Overwrite ähnelt.
///
public static string Overwrite {
get {
@@ -6469,7 +6479,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 {
@@ -6478,7 +6488,7 @@ public static string OverwriteQuestion {
}
///
- /// Looks up a localized string similar to Packet loss.
+ /// Sucht eine lokalisierte Zeichenfolge, die Packet loss ähnelt.
///
public static string PacketLoss {
get {
@@ -6487,7 +6497,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 {
@@ -6496,7 +6506,7 @@ public static string PacketsTransmitted {
}
///
- /// Looks up a localized string similar to Parameter.
+ /// Sucht eine lokalisierte Zeichenfolge, die Parameter ähnelt.
///
public static string Parameter {
get {
@@ -6505,7 +6515,7 @@ public static string Parameter {
}
///
- /// Looks up a localized string similar to Password.
+ /// Sucht eine lokalisierte Zeichenfolge, die Password ähnelt.
///
public static string Password {
get {
@@ -6514,7 +6524,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 {
@@ -6523,7 +6533,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 {
@@ -6532,7 +6542,7 @@ public static string Paste {
}
///
- /// Looks up a localized string similar to Patch.
+ /// Sucht eine lokalisierte Zeichenfolge, die Patch ähnelt.
///
public static string Patch {
get {
@@ -6541,7 +6551,7 @@ public static string Patch {
}
///
- /// Looks up a localized string similar to Path.
+ /// Sucht eine lokalisierte Zeichenfolge, die Path ähnelt.
///
public static string Path {
get {
@@ -6550,7 +6560,7 @@ public static string Path {
}
///
- /// Looks up a localized string similar to Pause.
+ /// Sucht eine lokalisierte Zeichenfolge, die Pause ähnelt.
///
public static string Pause {
get {
@@ -6559,7 +6569,7 @@ public static string Pause {
}
///
- /// Looks up a localized string similar to Performance.
+ /// Sucht eine lokalisierte Zeichenfolge, die Performance ähnelt.
///
public static string Performance {
get {
@@ -6568,7 +6578,7 @@ public static string Performance {
}
///
- /// Looks up a localized string similar to Persistent bitmap caching.
+ /// Sucht eine lokalisierte Zeichenfolge, die Persistent bitmap caching ähnelt.
///
public static string PersistentBitmapCaching {
get {
@@ -6577,7 +6587,7 @@ public static string PersistentBitmapCaching {
}
///
- /// Looks up a localized string similar to Petabits.
+ /// Sucht eine lokalisierte Zeichenfolge, die Petabits ähnelt.
///
public static string Petabits {
get {
@@ -6586,7 +6596,7 @@ public static string Petabits {
}
///
- /// Looks up a localized string similar to Petabytes.
+ /// Sucht eine lokalisierte Zeichenfolge, die Petabytes ähnelt.
///
public static string Petabytes {
get {
@@ -6595,7 +6605,7 @@ public static string Petabytes {
}
///
- /// Looks up a localized string similar to Phy kind.
+ /// Sucht eine lokalisierte Zeichenfolge, die Phy kind ähnelt.
///
public static string PhyKind {
get {
@@ -6604,7 +6614,7 @@ public static string PhyKind {
}
///
- /// Looks up a localized string similar to PhysicalAddress.
+ /// Sucht eine lokalisierte Zeichenfolge, die PhysicalAddress ähnelt.
///
public static string PhysicalAddress {
get {
@@ -6613,7 +6623,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 {
@@ -6622,7 +6632,7 @@ public static string Ping {
}
///
- /// Looks up a localized string similar to Ping details.
+ /// Sucht eine lokalisierte Zeichenfolge, die Ping details ähnelt.
///
public static string PingDetails {
get {
@@ -6631,7 +6641,7 @@ public static string PingDetails {
}
///
- /// Looks up a localized string similar to Ping Monitor.
+ /// Sucht eine lokalisierte Zeichenfolge, die Ping Monitor ähnelt.
///
public static string PingMonitor {
get {
@@ -6640,7 +6650,7 @@ public static string PingMonitor {
}
///
- /// Looks up a localized string similar to Ping status.
+ /// Sucht eine lokalisierte Zeichenfolge, die Ping status ähnelt.
///
public static string PingStatus {
get {
@@ -6649,7 +6659,7 @@ public static string PingStatus {
}
///
- /// Looks up a localized string similar to Pink.
+ /// Sucht eine lokalisierte Zeichenfolge, die Pink ähnelt.
///
public static string Pink {
get {
@@ -6658,7 +6668,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 {
@@ -6667,7 +6677,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 {
@@ -6676,7 +6686,7 @@ public static string Portable {
}
///
- /// Looks up a localized string similar to Port description.
+ /// Sucht eine lokalisierte Zeichenfolge, die Port description ähnelt.
///
public static string PortDescription {
get {
@@ -6685,7 +6695,7 @@ public static string PortDescription {
}
///
- /// Looks up a localized string similar to Port or service.
+ /// Sucht eine lokalisierte Zeichenfolge, die Port or service ähnelt.
///
public static string PortOrService {
get {
@@ -6694,7 +6704,7 @@ public static string PortOrService {
}
///
- /// Looks up a localized string similar to Port profiles.
+ /// Sucht eine lokalisierte Zeichenfolge, die Port profiles ähnelt.
///
public static string PortProfiles {
get {
@@ -6703,7 +6713,7 @@ public static string PortProfiles {
}
///
- /// Looks up a localized string similar to Ports.
+ /// Sucht eine lokalisierte Zeichenfolge, die Ports ähnelt.
///
public static string Ports {
get {
@@ -6712,7 +6722,7 @@ public static string Ports {
}
///
- /// Looks up a localized string similar to Port scan is disabled!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Port scan is disabled! ähnelt.
///
public static string PortScanIsDisabled {
get {
@@ -6721,7 +6731,7 @@ public static string PortScanIsDisabled {
}
///
- /// Looks up a localized string similar to Port Scanner.
+ /// Sucht eine lokalisierte Zeichenfolge, die Port Scanner ähnelt.
///
public static string PortScanner {
get {
@@ -6730,7 +6740,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 {
@@ -6739,7 +6749,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 {
@@ -6748,7 +6758,7 @@ public static string PortState_Open {
}
///
- /// Looks up a localized string similar to Timed out.
+ /// Sucht eine lokalisierte Zeichenfolge, die Timed out ähnelt.
///
public static string PortState_TimedOut {
get {
@@ -6757,7 +6767,7 @@ public static string PortState_TimedOut {
}
///
- /// Looks up a localized string similar to Port status.
+ /// Sucht eine lokalisierte Zeichenfolge, die Port status ähnelt.
///
public static string PortStatus {
get {
@@ -6766,7 +6776,7 @@ public static string PortStatus {
}
///
- /// Looks up a localized string similar to PowerShell.
+ /// Sucht eine lokalisierte Zeichenfolge, die PowerShell ähnelt.
///
public static string PowerShell {
get {
@@ -6775,7 +6785,7 @@ public static string PowerShell {
}
///
- /// Looks up a localized string similar to The color of the PowerShell console can be changed to the application theme under Settings > General > Appearance.
+ /// Sucht eine lokalisierte Zeichenfolge, die The color of the PowerShell console can be changed to the application theme under Settings > General > Appearance ähnelt.
///
public static string PowerShellConsoleColorCanBeChangedUnderSettingsGeneralApperance {
get {
@@ -6784,7 +6794,7 @@ public static string PowerShellConsoleColorCanBeChangedUnderSettingsGeneralApper
}
///
- /// Looks up a localized string similar to PowerShell process has ended!.
+ /// Sucht eine lokalisierte Zeichenfolge, die PowerShell process has ended! ähnelt.
///
public static string PowerShellProcessHasEnded {
get {
@@ -6793,7 +6803,7 @@ public static string PowerShellProcessHasEnded {
}
///
- /// 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 {
@@ -6802,7 +6812,7 @@ public static string PreferredProtocolWhenResolvingHostname {
}
///
- /// Looks up a localized string similar to Pre-shared key.
+ /// Sucht eine lokalisierte Zeichenfolge, die Pre-shared key ähnelt.
///
public static string PreSharedKey {
get {
@@ -6811,7 +6821,7 @@ public static string PreSharedKey {
}
///
- /// Looks up a localized string similar to Preview.
+ /// Sucht eine lokalisierte Zeichenfolge, die Preview ähnelt.
///
public static string Preview {
get {
@@ -6820,7 +6830,7 @@ public static string Preview {
}
///
- /// Looks up a localized string similar to Primary DNS server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Primary DNS server ähnelt.
///
public static string PrimaryDNSServer {
get {
@@ -6829,7 +6839,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 {
@@ -6838,7 +6848,7 @@ public static string Priv {
}
///
- /// Looks up a localized string similar to Privacy.
+ /// Sucht eine lokalisierte Zeichenfolge, die Privacy ähnelt.
///
public static string Privacy {
get {
@@ -6847,7 +6857,7 @@ public static string Privacy {
}
///
- /// Looks up a localized string similar to Private key file.
+ /// Sucht eine lokalisierte Zeichenfolge, die Private key file ähnelt.
///
public static string PrivateKeyFile {
get {
@@ -6856,7 +6866,7 @@ public static string PrivateKeyFile {
}
///
- /// Looks up a localized string similar to Process ID.
+ /// Sucht eine lokalisierte Zeichenfolge, die Process ID ähnelt.
///
public static string ProcessID {
get {
@@ -6865,7 +6875,7 @@ public static string ProcessID {
}
///
- /// Looks up a localized string similar to Process name.
+ /// Sucht eine lokalisierte Zeichenfolge, die Process name ähnelt.
///
public static string ProcessName {
get {
@@ -6874,7 +6884,7 @@ public static string ProcessName {
}
///
- /// Looks up a localized string similar to Process path.
+ /// Sucht eine lokalisierte Zeichenfolge, die Process path ähnelt.
///
public static string ProcessPath {
get {
@@ -6883,7 +6893,7 @@ public static string ProcessPath {
}
///
- /// Looks up a localized string similar to Profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Profile ähnelt.
///
public static string Profile {
get {
@@ -6892,9 +6902,9 @@ public static string Profile {
}
///
- /// Looks up a localized string similar to Profile files are encrypted on disk using AES with a key size of 256 bits and a block size of 128 bits in CBC mode. The encryption key is derived from a master password using Rfc2898DeriveBytes (PBKDF2) with 1,000,000 iterations. At runtime, passwords are stored as SecureString once the profile file is loaded. For some functions, the password must be converted to a normal string and remains unencrypted in memory until the garbage collector cleans them up.
+ /// Sucht eine lokalisierte Zeichenfolge, die Profile files are encrypted on disk using AES with a key size of 256 bits and a block size of 128 bits in CBC mode. The encryption key is derived from a master password using Rfc2898DeriveBytes (PBKDF2) with 1,000,000 iterations. At runtime, passwords are stored as SecureString once the profile file is loaded. For some functions, the password must be converted to a normal string and remains unencrypted in memory until the garbage collector cleans them up.
///
- ///First make a backup copy of your profile files be [rest of string was truncated]";.
+ ///First make a backup copy of your profile files be [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt.
///
public static string ProfileEncryptionDisclaimer {
get {
@@ -6903,7 +6913,7 @@ public static string ProfileEncryptionDisclaimer {
}
///
- /// Looks up a localized string similar to Profile file.
+ /// Sucht eine lokalisierte Zeichenfolge, die Profile file ähnelt.
///
public static string ProfileFile {
get {
@@ -6912,7 +6922,7 @@ public static string ProfileFile {
}
///
- /// Looks up a localized string similar to Profile file could not be loaded!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Profile file could not be loaded! ähnelt.
///
public static string ProfileFileCouldNotBeLoaded {
get {
@@ -6921,13 +6931,13 @@ public static string ProfileFileCouldNotBeLoaded {
}
///
- /// Looks up a localized string similar to The profile file could not be loaded and may be corrupted. You can try to restore the file from a backup or delete it.
+ /// Sucht eine lokalisierte Zeichenfolge, die The profile file could not be loaded and may be corrupted. You can try to restore the file from a backup or delete it.
///
///If this happens unexpectedly or after an update, please report the error on GitHub.
///
///
///Error message:
- ///"{0}".
+ ///"{0}" ähnelt.
///
public static string ProfileFileCouldNotBeLoadedMessage {
get {
@@ -6936,7 +6946,7 @@ public static string ProfileFileCouldNotBeLoadedMessage {
}
///
- /// Looks up a localized string similar to Profile files.
+ /// Sucht eine lokalisierte Zeichenfolge, die Profile files ähnelt.
///
public static string ProfileFiles {
get {
@@ -6945,7 +6955,7 @@ public static string ProfileFiles {
}
///
- /// Looks up a localized string similar to Application.
+ /// Sucht eine lokalisierte Zeichenfolge, die Application ähnelt.
///
public static string ProfileGroup_Application {
get {
@@ -6954,7 +6964,7 @@ public static string ProfileGroup_Application {
}
///
- /// Looks up a localized string similar to General.
+ /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt.
///
public static string ProfileGroup_General {
get {
@@ -6963,7 +6973,7 @@ public static string ProfileGroup_General {
}
///
- /// Looks up a localized string similar to General.
+ /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt.
///
public static string ProfileName_General {
get {
@@ -6972,7 +6982,7 @@ public static string ProfileName_General {
}
///
- /// Looks up a localized string similar to Profile name already exists!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Profile name already exists! ähnelt.
///
public static string ProfileNameAlreadyExists {
get {
@@ -6981,7 +6991,7 @@ public static string ProfileNameAlreadyExists {
}
///
- /// Looks up a localized string similar to Profiles.
+ /// Sucht eine lokalisierte Zeichenfolge, die Profiles ähnelt.
///
public static string Profiles {
get {
@@ -6990,7 +7000,7 @@ public static string Profiles {
}
///
- /// Looks up a localized string similar to Profiles and regions to synchronize.
+ /// Sucht eine lokalisierte Zeichenfolge, die Profiles and regions to synchronize ähnelt.
///
public static string ProfilesAndRegionsToSync {
get {
@@ -6999,7 +7009,7 @@ public static string ProfilesAndRegionsToSync {
}
///
- /// Looks up a localized string similar to Profiles reloaded.
+ /// Sucht eine lokalisierte Zeichenfolge, die Profiles reloaded ähnelt.
///
public static string ProfilesReloaded {
get {
@@ -7008,7 +7018,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 {
@@ -7017,7 +7027,7 @@ public static string ProfileWithThisNameAlreadyExists {
}
///
- /// Looks up a localized string similar to Program.
+ /// Sucht eine lokalisierte Zeichenfolge, die Program ähnelt.
///
public static string Program {
get {
@@ -7026,7 +7036,7 @@ public static string Program {
}
///
- /// Looks up a localized string similar to Protocol.
+ /// Sucht eine lokalisierte Zeichenfolge, die Protocol ähnelt.
///
public static string Protocol {
get {
@@ -7035,7 +7045,7 @@ public static string Protocol {
}
///
- /// Looks up a localized string similar to Proxy.
+ /// Sucht eine lokalisierte Zeichenfolge, die Proxy ähnelt.
///
public static string Proxy {
get {
@@ -7044,7 +7054,7 @@ public static string Proxy {
}
///
- /// Looks up a localized string similar to PTR dns record resolved for "{0}"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die PTR dns record resolved for "{0}"! ähnelt.
///
public static string PTRDNSRecordResolvedForXXXMessage {
get {
@@ -7053,7 +7063,7 @@ public static string PTRDNSRecordResolvedForXXXMessage {
}
///
- /// Looks up a localized string similar to PTR record.
+ /// Sucht eine lokalisierte Zeichenfolge, die PTR record ähnelt.
///
public static string PTRRecord {
get {
@@ -7062,8 +7072,8 @@ public static string PTRRecord {
}
///
- /// Looks up a localized string similar to Public IP address check
- ///is disabled!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Public IP address check
+ ///is disabled! ähnelt.
///
public static string PublicIPAddressCheckIsDisabled {
get {
@@ -7072,7 +7082,7 @@ public static string PublicIPAddressCheckIsDisabled {
}
///
- /// Looks up a localized string similar to Public IPv4 address.
+ /// Sucht eine lokalisierte Zeichenfolge, die Public IPv4 address ähnelt.
///
public static string PublicIPv4Address {
get {
@@ -7081,7 +7091,7 @@ public static string PublicIPv4Address {
}
///
- /// Looks up a localized string similar to Public IPv6 address.
+ /// Sucht eine lokalisierte Zeichenfolge, die Public IPv6 address ähnelt.
///
public static string PublicIPv6Address {
get {
@@ -7090,7 +7100,7 @@ public static string PublicIPv6Address {
}
///
- /// Looks up a localized string similar to Purple.
+ /// Sucht eine lokalisierte Zeichenfolge, die Purple ähnelt.
///
public static string Purple {
get {
@@ -7099,7 +7109,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 {
@@ -7108,7 +7118,7 @@ public static string PuTTY {
}
///
- /// Looks up a localized string similar to Session log.
+ /// Sucht eine lokalisierte Zeichenfolge, die Session log ähnelt.
///
public static string PuTTYLogMode_SessionLog {
get {
@@ -7117,7 +7127,7 @@ public static string PuTTYLogMode_SessionLog {
}
///
- /// Looks up a localized string similar to SSH log.
+ /// Sucht eine lokalisierte Zeichenfolge, die SSH log ähnelt.
///
public static string PuTTYLogMode_SSHLog {
get {
@@ -7126,7 +7136,7 @@ public static string PuTTYLogMode_SSHLog {
}
///
- /// Looks up a localized string similar to SSH and Raw log.
+ /// Sucht eine lokalisierte Zeichenfolge, die SSH and Raw log ähnelt.
///
public static string PuTTYLogMode_SSHRawLog {
get {
@@ -7135,7 +7145,7 @@ public static string PuTTYLogMode_SSHRawLog {
}
///
- /// 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 {
@@ -7144,7 +7154,7 @@ public static string PuTTYProcessHasEnded {
}
///
- /// Looks up a localized string similar to Query.
+ /// Sucht eine lokalisierte Zeichenfolge, die Query ähnelt.
///
public static string Query {
get {
@@ -7153,7 +7163,7 @@ public static string Query {
}
///
- /// Looks up a localized string similar to Query class.
+ /// Sucht eine lokalisierte Zeichenfolge, die Query class ähnelt.
///
public static string QueryClass {
get {
@@ -7162,7 +7172,7 @@ public static string QueryClass {
}
///
- /// Looks up a localized string similar to Questions.
+ /// Sucht eine lokalisierte Zeichenfolge, die Questions ähnelt.
///
public static string Questions {
get {
@@ -7171,7 +7181,7 @@ public static string Questions {
}
///
- /// Looks up a localized string similar to Rate limit reached! Try again in {0} seconds....
+ /// Sucht eine lokalisierte Zeichenfolge, die Rate limit reached! Try again in {0} seconds... ähnelt.
///
public static string RateLimitReachedTryAgainInXSeconds {
get {
@@ -7180,7 +7190,7 @@ public static string RateLimitReachedTryAgainInXSeconds {
}
///
- /// Looks up a localized string similar to RAW.
+ /// Sucht eine lokalisierte Zeichenfolge, die RAW ähnelt.
///
public static string RAW {
get {
@@ -7189,7 +7199,7 @@ public static string RAW {
}
///
- /// Looks up a localized string similar to Received.
+ /// Sucht eine lokalisierte Zeichenfolge, die Received ähnelt.
///
public static string Received {
get {
@@ -7198,7 +7208,7 @@ public static string Received {
}
///
- /// Looks up a localized string similar to Received / Lost.
+ /// Sucht eine lokalisierte Zeichenfolge, die Received / Lost ähnelt.
///
public static string ReceivedLost {
get {
@@ -7207,7 +7217,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 {
@@ -7216,7 +7226,7 @@ public static string Reconnect {
}
///
- /// Looks up a localized string similar to Reconnect if the connection is dropped.
+ /// Sucht eine lokalisierte Zeichenfolge, die Reconnect if the connection is dropped ähnelt.
///
public static string ReconnectIfTheConnectionIsDropped {
get {
@@ -7225,7 +7235,7 @@ public static string ReconnectIfTheConnectionIsDropped {
}
///
- /// Looks up a localized string similar to Recursion.
+ /// Sucht eine lokalisierte Zeichenfolge, die Recursion ähnelt.
///
public static string Recursion {
get {
@@ -7234,7 +7244,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 {
@@ -7243,7 +7253,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 {
@@ -7252,7 +7262,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 {
@@ -7261,7 +7271,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 {
@@ -7270,7 +7280,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 {
@@ -7279,7 +7289,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 {
@@ -7288,7 +7298,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 {
@@ -7297,7 +7307,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 {
@@ -7306,7 +7316,7 @@ public static string Refresh {
}
///
- /// Looks up a localized string similar to Region.
+ /// Sucht eine lokalisierte Zeichenfolge, die Region ähnelt.
///
public static string Region {
get {
@@ -7315,7 +7325,7 @@ public static string Region {
}
///
- /// Looks up a localized string similar to Release.
+ /// Sucht eine lokalisierte Zeichenfolge, die Release ähnelt.
///
public static string Release {
get {
@@ -7324,7 +7334,7 @@ public static string Release {
}
///
- /// Looks up a localized string similar to Release & Renew.
+ /// Sucht eine lokalisierte Zeichenfolge, die Release & Renew ähnelt.
///
public static string ReleaseRenew {
get {
@@ -7333,7 +7343,7 @@ public static string ReleaseRenew {
}
///
- /// Looks up a localized string similar to Reload.
+ /// Sucht eine lokalisierte Zeichenfolge, die Reload ähnelt.
///
public static string Reload {
get {
@@ -7342,7 +7352,7 @@ public static string Reload {
}
///
- /// Looks up a localized string similar to Remaining time.
+ /// Sucht eine lokalisierte Zeichenfolge, die Remaining time ähnelt.
///
public static string RemainingTime {
get {
@@ -7351,7 +7361,7 @@ public static string RemainingTime {
}
///
- /// Looks up a localized string similar to Remote audio.
+ /// Sucht eine lokalisierte Zeichenfolge, die Remote audio ähnelt.
///
public static string RemoteAudio {
get {
@@ -7360,7 +7370,7 @@ public static string RemoteAudio {
}
///
- /// Looks up a localized string similar to Remote audio playback.
+ /// Sucht eine lokalisierte Zeichenfolge, die Remote audio playback ähnelt.
///
public static string RemoteAudioPlayback {
get {
@@ -7369,7 +7379,7 @@ public static string RemoteAudioPlayback {
}
///
- /// Looks up a localized string similar to Remote audio recording.
+ /// Sucht eine lokalisierte Zeichenfolge, die Remote audio recording ähnelt.
///
public static string RemoteAudioRecording {
get {
@@ -7378,7 +7388,7 @@ public static string RemoteAudioRecording {
}
///
- /// Looks up a localized string similar to Remote console.
+ /// Sucht eine lokalisierte Zeichenfolge, die Remote console ähnelt.
///
public static string RemoteConsole {
get {
@@ -7387,7 +7397,7 @@ public static string RemoteConsole {
}
///
- /// Looks up a localized string similar to Remote Desktop.
+ /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop ähnelt.
///
public static string RemoteDesktop {
get {
@@ -7396,7 +7406,7 @@ public static string RemoteDesktop {
}
///
- /// Looks up a localized string similar to Do not record.
+ /// Sucht eine lokalisierte Zeichenfolge, die Do not record ähnelt.
///
public static string RemoteDesktopAudioCaptureRedirectionMode_DoNotRecord {
get {
@@ -7405,7 +7415,7 @@ public static string RemoteDesktopAudioCaptureRedirectionMode_DoNotRecord {
}
///
- /// Looks up a localized string similar to Record from this computer.
+ /// Sucht eine lokalisierte Zeichenfolge, die Record from this computer ähnelt.
///
public static string RemoteDesktopAudioCaptureRedirectionMode_RecordFromThisComputer {
get {
@@ -7414,7 +7424,7 @@ public static string RemoteDesktopAudioCaptureRedirectionMode_RecordFromThisComp
}
///
- /// Looks up a localized string similar to Do not play.
+ /// Sucht eine lokalisierte Zeichenfolge, die Do not play ähnelt.
///
public static string RemoteDesktopAudioRedirectionMode_DoNotPlay {
get {
@@ -7423,7 +7433,7 @@ public static string RemoteDesktopAudioRedirectionMode_DoNotPlay {
}
///
- /// Looks up a localized string similar to Play on remote computer.
+ /// Sucht eine lokalisierte Zeichenfolge, die Play on remote computer ähnelt.
///
public static string RemoteDesktopAudioRedirectionMode_PlayOnRemoteComputer {
get {
@@ -7432,7 +7442,7 @@ public static string RemoteDesktopAudioRedirectionMode_PlayOnRemoteComputer {
}
///
- /// Looks up a localized string similar to Play on this computer.
+ /// Sucht eine lokalisierte Zeichenfolge, die Play on this computer ähnelt.
///
public static string RemoteDesktopAudioRedirectionMode_PlayOnThisComputer {
get {
@@ -7441,7 +7451,7 @@ public static string RemoteDesktopAudioRedirectionMode_PlayOnThisComputer {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer due to one of the following reasons: 1) The requested Remote Desktop Gateway server address and the server SSL certificate subject name do not match. 2) The certificate is expired or revoked. 3) The certificate root authority does not trust the certificate. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer due to one of the following reasons: 1) The requested Remote Desktop Gateway server address and the server SSL certificate subject name do not match. 2) The certificate is expired or revoked. 3) The certificate root authority does not trust the certificate. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331651 {
get {
@@ -7450,7 +7460,7 @@ public static string RemoteDesktopDisconnectReason_50331651 {
}
///
- /// Looks up a localized string similar to This computer can't verify the identity of the RD Gateway "". It's not safe to connect to servers that can't be identified. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die This computer can't verify the identity of the RD Gateway "". It's not safe to connect to servers that can't be identified. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331653 {
get {
@@ -7459,7 +7469,7 @@ public static string RemoteDesktopDisconnectReason_50331653 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server address requested and the certificate subject name do not match. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server address requested and the certificate subject name do not match. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331654 {
get {
@@ -7468,7 +7478,7 @@ public static string RemoteDesktopDisconnectReason_50331654 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server's certificate has expired or has been revoked. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server's certificate has expired or has been revoked. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331655 {
get {
@@ -7477,7 +7487,7 @@ public static string RemoteDesktopDisconnectReason_50331655 {
}
///
- /// Looks up a localized string similar to An error occurred while sending data to the Remote Desktop Gateway server. The server is temporarily unavailable or a network connection is down. Try again later, or contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die An error occurred while sending data to the Remote Desktop Gateway server. The server is temporarily unavailable or a network connection is down. Try again later, or contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331657 {
get {
@@ -7486,7 +7496,7 @@ public static string RemoteDesktopDisconnectReason_50331657 {
}
///
- /// Looks up a localized string similar to An error occurred while receiving data from the Remote Desktop Gateway server. Either the server is temporarily unavailable or a network connection is down. Try again later, or contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die An error occurred while receiving data from the Remote Desktop Gateway server. Either the server is temporarily unavailable or a network connection is down. Try again later, or contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331658 {
get {
@@ -7495,7 +7505,7 @@ public static string RemoteDesktopDisconnectReason_50331658 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server address is unreachable or incorrect. Type a valid Remote Desktop Gateway server address..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server address is unreachable or incorrect. Type a valid Remote Desktop Gateway server address. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331660 {
get {
@@ -7504,7 +7514,7 @@ public static string RemoteDesktopDisconnectReason_50331660 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server is temporarily unavailable. Try reconnecting later or contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server is temporarily unavailable. Try reconnecting later or contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331661 {
get {
@@ -7513,7 +7523,7 @@ public static string RemoteDesktopDisconnectReason_50331661 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server is running low on server resources and is temporarily unavailable. Try reconnecting later or contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server is running low on server resources and is temporarily unavailable. Try reconnecting later or contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331663 {
get {
@@ -7522,7 +7532,7 @@ public static string RemoteDesktopDisconnectReason_50331663 {
}
///
- /// Looks up a localized string similar to The Remote Desktop Gateway server has ended the connection. Try reconnecting later or contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die The Remote Desktop Gateway server has ended the connection. Try reconnecting later or contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331672 {
get {
@@ -7531,7 +7541,7 @@ public static string RemoteDesktopDisconnectReason_50331672 {
}
///
- /// Looks up a localized string similar to The Remote Desktop Gateway server administrator has ended the connection. Try reconnecting later or contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die The Remote Desktop Gateway server administrator has ended the connection. Try reconnecting later or contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331673 {
get {
@@ -7540,7 +7550,7 @@ public static string RemoteDesktopDisconnectReason_50331673 {
}
///
- /// Looks up a localized string similar to Remote Desktop can't connect to the remote computer "" for one of these reasons: 1) Your user account is not listed in the RD Gateway's permission list 2) You might have specified the remote computer in NetBIOS format (for example, computer1), but the RD Gateway is expecting an FQDN or IP address format (for example, computer1.fabrikam.com or 157.60.0.1). Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop can't connect to the remote computer "" for one of these reasons: 1) Your user account is not listed in the RD Gateway's permission list 2) You might have specified the remote computer in NetBIOS format (for example, computer1), but the RD Gateway is expecting an FQDN or IP address format (for example, computer1.fabrikam.com or 157.60.0.1). Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331675 {
get {
@@ -7549,7 +7559,7 @@ public static string RemoteDesktopDisconnectReason_50331675 {
}
///
- /// Looks up a localized string similar to Remote Desktop can't connect to the remote computer "" for one of these reasons: 1) Your user account is not authorized to access the RD Gateway "" 2) Your computer is not authorized to access the RD Gateway "" 3) You are using an incompatible authentication method (for example, the RD Gateway might be expecting a smart card but you provided a password) Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Remote Desktop can't connect to the remote computer "" for one of these reasons: 1) Your user account is not authorized to access the RD Gateway "" 2) Your computer is not authorized to access the RD Gateway "" 3) You are using an incompatible authentication method (for example, the RD Gateway might be expecting a smart card but you provided a password) Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331676 {
get {
@@ -7558,7 +7568,7 @@ public static string RemoteDesktopDisconnectReason_50331676 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because your network administrator has restricted access to this RD Gateway server. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because your network administrator has restricted access to this RD Gateway server. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331679 {
get {
@@ -7567,7 +7577,7 @@ public static string RemoteDesktopDisconnectReason_50331679 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the web proxy server requires authentication. To allow unauthenticated traffic to an RD Gateway server through your web proxy server, contact your network administrator..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the web proxy server requires authentication. To allow unauthenticated traffic to an RD Gateway server through your web proxy server, contact your network administrator. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331680 {
get {
@@ -7576,7 +7586,7 @@ public static string RemoteDesktopDisconnectReason_50331680 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server reached its maximum allowed connections. Try reconnecting later or contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server reached its maximum allowed connections. Try reconnecting later or contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331682 {
get {
@@ -7585,7 +7595,7 @@ public static string RemoteDesktopDisconnectReason_50331682 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server does not support the request. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server does not support the request. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331683 {
get {
@@ -7594,7 +7604,7 @@ public static string RemoteDesktopDisconnectReason_50331683 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the client does not support one of the Remote Desktop Gateway's capabilities. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the client does not support one of the Remote Desktop Gateway's capabilities. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331684 {
get {
@@ -7603,7 +7613,7 @@ public static string RemoteDesktopDisconnectReason_50331684 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server and this computer are incompatible. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server and this computer are incompatible. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331685 {
get {
@@ -7612,7 +7622,7 @@ public static string RemoteDesktopDisconnectReason_50331685 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because no certificate was configured to use at the Remote Desktop Gateway server. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because no certificate was configured to use at the Remote Desktop Gateway server. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331688 {
get {
@@ -7621,7 +7631,7 @@ public static string RemoteDesktopDisconnectReason_50331688 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the RD Gateway server that you are trying to connect to is not allowed by your computer administrator. If you are the administrator, add this Remote Desktop Gateway server name to the trusted Remote Desktop Gateway server list on your computer and then try connecting again..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the RD Gateway server that you are trying to connect to is not allowed by your computer administrator. If you are the administrator, add this Remote Desktop Gateway server name to the trusted Remote Desktop Gateway server list on your computer and then try connecting again. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331689 {
get {
@@ -7630,7 +7640,7 @@ public static string RemoteDesktopDisconnectReason_50331689 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because your computer or device did not meet the Network Access Protection requirements set by your network administrator, for one of the following reasons: 1) The Remote Desktop Gateway server name and the server's public key certificate subject name do not match. 2) The certificate has expired or has been revoked. 3) The certificate root authority does not trust the certificate. 4) The certificate key extension does not support encryption. 5) Your comput [rest of string was truncated]";.
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because your computer or device did not meet the Network Access Protection requirements set by your network administrator, for one of the following reasons: 1) The Remote Desktop Gateway server name and the server's public key certificate subject name do not match. 2) The certificate has expired or has been revoked. 3) The certificate root authority does not trust the certificate. 4) The certificate key extension does not support encryption. 5) Your comput [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331690 {
get {
@@ -7639,7 +7649,7 @@ public static string RemoteDesktopDisconnectReason_50331690 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because a user name and password are required to authenticate to the Remote Desktop Gateway server instead of smart card credentials..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because a user name and password are required to authenticate to the Remote Desktop Gateway server instead of smart card credentials. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331691 {
get {
@@ -7648,7 +7658,7 @@ public static string RemoteDesktopDisconnectReason_50331691 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because smart card credentials are required to authenticate to the Remote Desktop Gateway server instead of a user name and password..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because smart card credentials are required to authenticate to the Remote Desktop Gateway server instead of a user name and password. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331692 {
get {
@@ -7657,7 +7667,7 @@ public static string RemoteDesktopDisconnectReason_50331692 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because an invalid cookie was sent to the Remote Desktop Gateway server. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because an invalid cookie was sent to the Remote Desktop Gateway server. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331700 {
get {
@@ -7666,7 +7676,7 @@ public static string RemoteDesktopDisconnectReason_50331700 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the cookie was rejected by the Remote Desktop Gateway server. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the cookie was rejected by the Remote Desktop Gateway server. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331701 {
get {
@@ -7675,7 +7685,7 @@ public static string RemoteDesktopDisconnectReason_50331701 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway server is expecting an authentication method different from the one attempted. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway server is expecting an authentication method different from the one attempted. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331703 {
get {
@@ -7684,7 +7694,7 @@ public static string RemoteDesktopDisconnectReason_50331703 {
}
///
- /// Looks up a localized string similar to The RD Gateway connection ended because periodic user authentication failed. Try reconnecting with a correct user name and password. If the reconnection fails, contact your network administrator for further assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die The RD Gateway connection ended because periodic user authentication failed. Try reconnecting with a correct user name and password. If the reconnection fails, contact your network administrator for further assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331704 {
get {
@@ -7693,7 +7703,7 @@ public static string RemoteDesktopDisconnectReason_50331704 {
}
///
- /// Looks up a localized string similar to The RD Gateway connection ended because periodic user authorization failed. Try reconnecting with a correct user name and password. If the reconnection fails, contact your network administrator for further assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die The RD Gateway connection ended because periodic user authorization failed. Try reconnecting with a correct user name and password. If the reconnection fails, contact your network administrator for further assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331705 {
get {
@@ -7702,7 +7712,7 @@ public static string RemoteDesktopDisconnectReason_50331705 {
}
///
- /// Looks up a localized string similar to Your computer can't connect to the remote computer because the Remote Desktop Gateway and the remote computer are unable to exchange policies. This could happen due to one of the following reasons: 1. The remote computer is not capable of exchanging policies with the Remote Desktop Gateway. 2. The remote computer's configuration does not permit a new connection. 3. The connection between the Remote Desktop Gateway and the remote computer ended. Contact your network administrator for assistanc [rest of string was truncated]";.
+ /// Sucht eine lokalisierte Zeichenfolge, die Your computer can't connect to the remote computer because the Remote Desktop Gateway and the remote computer are unable to exchange policies. This could happen due to one of the following reasons: 1. The remote computer is not capable of exchanging policies with the Remote Desktop Gateway. 2. The remote computer's configuration does not permit a new connection. 3. The connection between the Remote Desktop Gateway and the remote computer ended. Contact your network administrator for assistanc [Rest der Zeichenfolge wurde abgeschnitten]"; ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331707 {
get {
@@ -7711,7 +7721,7 @@ public static string RemoteDesktopDisconnectReason_50331707 {
}
///
- /// Looks up a localized string similar to The RD Gateway connection ended because periodic user authorization failed. Your computer or device didn't pass the Network Access Protection (NAP) requirements set by your network administrator. Contact your network administrator for assistance..
+ /// Sucht eine lokalisierte Zeichenfolge, die The RD Gateway connection ended because periodic user authorization failed. Your computer or device didn't pass the Network Access Protection (NAP) requirements set by your network administrator. Contact your network administrator for assistance. ähnelt.
///
public static string RemoteDesktopDisconnectReason_50331713 {
get {
@@ -7720,7 +7730,7 @@ public static string RemoteDesktopDisconnectReason_50331713 {
}
///
- /// Looks up a localized string similar to Socket closed..
+ /// Sucht eine lokalisierte Zeichenfolge, die Socket closed. ähnelt.
///
public static string RemoteDesktopDisconnectReason_AtClientWinsockFDCLOSE {
get {
@@ -7729,7 +7739,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 {
@@ -7738,7 +7748,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 {
@@ -7747,7 +7757,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 {
@@ -7756,7 +7766,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 {
@@ -7765,7 +7775,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 {
@@ -7774,7 +7784,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 {
@@ -7783,7 +7793,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 {
@@ -7792,7 +7802,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 {
@@ -7801,7 +7811,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 {
@@ -7810,7 +7820,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 {
@@ -7819,7 +7829,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 {
@@ -7828,7 +7838,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 {
@@ -7837,7 +7847,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 {
@@ -7846,7 +7856,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 {
@@ -7855,7 +7865,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 {
@@ -7864,7 +7874,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 {
@@ -7873,7 +7883,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 {
@@ -7882,7 +7892,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 {
@@ -7891,7 +7901,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 {
@@ -7900,7 +7910,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 {
@@ -7909,7 +7919,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 {
@@ -7918,7 +7928,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 {
@@ -7927,7 +7937,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 {
@@ -7936,7 +7946,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 {
@@ -7945,7 +7955,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 {
@@ -7954,7 +7964,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 {
@@ -7963,7 +7973,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 {
@@ -7972,7 +7982,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 {
@@ -7981,7 +7991,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 {
@@ -7990,7 +8000,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 {
@@ -7999,7 +8009,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 {
@@ -8008,7 +8018,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 {
@@ -8017,7 +8027,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 {
@@ -8026,7 +8036,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 {
@@ -8035,7 +8045,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 {
@@ -8044,7 +8054,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 {
@@ -8053,7 +8063,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 {
@@ -8062,7 +8072,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 {
@@ -8071,7 +8081,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 {
@@ -8080,7 +8090,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 {
@@ -8089,7 +8099,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 {
@@ -8098,7 +8108,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 {
@@ -8107,7 +8117,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 {
@@ -8116,7 +8126,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 {
@@ -8125,7 +8135,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 {
@@ -8134,7 +8144,7 @@ public static string RemoteDesktopDisconnectReason_TimerError {
}
///
- /// Looks up a localized string similar to The remote session ended because the total login time limit was reached. This limit is set by the server administrator or by network policies..
+ /// Sucht eine lokalisierte Zeichenfolge, die The remote session ended because the total login time limit was reached. This limit is set by the server administrator or by network policies. ähnelt.
///
public static string RemoteDesktopDisconnectReason_TotalLoginTimeLimitReached {
get {
@@ -8143,7 +8153,7 @@ public static string RemoteDesktopDisconnectReason_TotalLoginTimeLimitReached {
}
///
- /// Looks up a localized string similar to Unable to reconnect to the remote session..
+ /// Sucht eine lokalisierte Zeichenfolge, die Unable to reconnect to the remote session. ähnelt.
///
public static string RemoteDesktopDisconnectReason_UnableToReconnectToRemoteSession {
get {
@@ -8152,7 +8162,7 @@ public static string RemoteDesktopDisconnectReason_UnableToReconnectToRemoteSess
}
///
- /// 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 {
@@ -8161,7 +8171,7 @@ public static string RemoteDesktopDisconnectReason_WinsockSendFailed {
}
///
- /// Looks up a localized string similar to Allow me to select later.
+ /// Sucht eine lokalisierte Zeichenfolge, die Allow me to select later ähnelt.
///
public static string RemoteDesktopGatewayServerLogonMethod_Any {
get {
@@ -8170,7 +8180,7 @@ public static string RemoteDesktopGatewayServerLogonMethod_Any {
}
///
- /// Looks up a localized string similar to Smart card or Windows Hello for Business.
+ /// Sucht eine lokalisierte Zeichenfolge, die Smart card or Windows Hello for Business ähnelt.
///
public static string RemoteDesktopGatewayServerLogonMethod_Smartcard {
get {
@@ -8179,7 +8189,7 @@ public static string RemoteDesktopGatewayServerLogonMethod_Smartcard {
}
///
- /// Looks up a localized string similar to Ask for password (NTLM).
+ /// Sucht eine lokalisierte Zeichenfolge, die Ask for password (NTLM) ähnelt.
///
public static string RemoteDesktopGatewayServerLogonMethod_Userpass {
get {
@@ -8188,7 +8198,7 @@ public static string RemoteDesktopGatewayServerLogonMethod_Userpass {
}
///
- /// Looks up a localized string similar to On the remote computer.
+ /// Sucht eine lokalisierte Zeichenfolge, die On the remote computer ähnelt.
///
public static string RemoteDesktopKeyboardHookMode_OnTheRemoteComputer {
get {
@@ -8197,7 +8207,7 @@ public static string RemoteDesktopKeyboardHookMode_OnTheRemoteComputer {
}
///
- /// Looks up a localized string similar to On this computer.
+ /// Sucht eine lokalisierte Zeichenfolge, die On this computer ähnelt.
///
public static string RemoteDesktopKeyboardHookMode_OnThisComputer {
get {
@@ -8206,7 +8216,7 @@ public static string RemoteDesktopKeyboardHookMode_OnThisComputer {
}
///
- /// Looks up a localized string similar to High-speed broadband (2 Mbps - 10 Mbps).
+ /// Sucht eine lokalisierte Zeichenfolge, die High-speed broadband (2 Mbps - 10 Mbps) ähnelt.
///
public static string RemoteDesktopNetworkConnectionType_BroadbandHigh {
get {
@@ -8215,7 +8225,7 @@ public static string RemoteDesktopNetworkConnectionType_BroadbandHigh {
}
///
- /// Looks up a localized string similar to Low-speed broadband (256 kbps - 2 Mbps).
+ /// Sucht eine lokalisierte Zeichenfolge, die Low-speed broadband (256 kbps - 2 Mbps) ähnelt.
///
public static string RemoteDesktopNetworkConnectionType_BroadbandLow {
get {
@@ -8224,7 +8234,7 @@ public static string RemoteDesktopNetworkConnectionType_BroadbandLow {
}
///
- /// Looks up a localized string similar to Detect connection quality automatically.
+ /// Sucht eine lokalisierte Zeichenfolge, die Detect connection quality automatically ähnelt.
///
public static string RemoteDesktopNetworkConnectionType_DetectAutomatically {
get {
@@ -8233,7 +8243,7 @@ public static string RemoteDesktopNetworkConnectionType_DetectAutomatically {
}
///
- /// Looks up a localized string similar to LAN (10 Mbps or higher).
+ /// Sucht eine lokalisierte Zeichenfolge, die LAN (10 Mbps or higher) ähnelt.
///
public static string RemoteDesktopNetworkConnectionType_LAN {
get {
@@ -8242,7 +8252,7 @@ public static string RemoteDesktopNetworkConnectionType_LAN {
}
///
- /// Looks up a localized string similar to Modem (56 kbps).
+ /// Sucht eine lokalisierte Zeichenfolge, die Modem (56 kbps) ähnelt.
///
public static string RemoteDesktopNetworkConnectionType_Modem {
get {
@@ -8251,7 +8261,7 @@ public static string RemoteDesktopNetworkConnectionType_Modem {
}
///
- /// Looks up a localized string similar to Satellite (2 Mbps - 16 Mbps with high latency).
+ /// Sucht eine lokalisierte Zeichenfolge, die Satellite (2 Mbps - 16 Mbps with high latency) ähnelt.
///
public static string RemoteDesktopNetworkConnectionType_Satellite {
get {
@@ -8260,7 +8270,7 @@ public static string RemoteDesktopNetworkConnectionType_Satellite {
}
///
- /// Looks up a localized string similar to WAN (10 Mbps or higher with high latency).
+ /// Sucht eine lokalisierte Zeichenfolge, die WAN (10 Mbps or higher with high latency) ähnelt.
///
public static string RemoteDesktopNetworkConnectionType_WAN {
get {
@@ -8269,7 +8279,7 @@ public static string RemoteDesktopNetworkConnectionType_WAN {
}
///
- /// Looks up a localized string similar to Remote hostname.
+ /// Sucht eine lokalisierte Zeichenfolge, die Remote hostname ähnelt.
///
public static string RemoteHostname {
get {
@@ -8278,7 +8288,7 @@ public static string RemoteHostname {
}
///
- /// Looks up a localized string similar to Remote IP address.
+ /// Sucht eine lokalisierte Zeichenfolge, die Remote IP address ähnelt.
///
public static string RemoteIPAddress {
get {
@@ -8287,7 +8297,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 {
@@ -8296,7 +8306,7 @@ public static string RemotePort {
}
///
- /// Looks up a localized string similar to Remove IPv4 address.
+ /// Sucht eine lokalisierte Zeichenfolge, die Remove IPv4 address ähnelt.
///
public static string RemoveIPv4Address {
get {
@@ -8305,7 +8315,7 @@ public static string RemoveIPv4Address {
}
///
- /// Looks up a localized string similar to Remove IPv4 address....
+ /// Sucht eine lokalisierte Zeichenfolge, die Remove IPv4 address... ähnelt.
///
public static string RemoveIPv4AddressDots {
get {
@@ -8314,7 +8324,7 @@ public static string RemoveIPv4AddressDots {
}
///
- /// Looks up a localized string similar to Rename.
+ /// Sucht eine lokalisierte Zeichenfolge, die Rename ähnelt.
///
public static string Rename {
get {
@@ -8323,7 +8333,7 @@ public static string Rename {
}
///
- /// Looks up a localized string similar to Renew.
+ /// Sucht eine lokalisierte Zeichenfolge, die Renew ähnelt.
///
public static string Renew {
get {
@@ -8332,7 +8342,7 @@ public static string Renew {
}
///
- /// Looks up a localized string similar to Repeat.
+ /// Sucht eine lokalisierte Zeichenfolge, die Repeat ähnelt.
///
public static string Repeat {
get {
@@ -8341,7 +8351,7 @@ public static string Repeat {
}
///
- /// Looks up a localized string similar to .
+ /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
///
public static string ReportAnIssueOrCreateAFeatureRequest {
get {
@@ -8350,7 +8360,7 @@ public static string ReportAnIssueOrCreateAFeatureRequest {
}
///
- /// Looks up a localized string similar to Report on GitHub.
+ /// Sucht eine lokalisierte Zeichenfolge, die Report on GitHub ähnelt.
///
public static string ReportOnGitHub {
get {
@@ -8359,7 +8369,7 @@ public static string ReportOnGitHub {
}
///
- /// Looks up a localized string similar to Reset.
+ /// Sucht eine lokalisierte Zeichenfolge, die Reset ähnelt.
///
public static string Reset {
get {
@@ -8368,7 +8378,7 @@ public static string Reset {
}
///
- /// Looks up a localized string similar to All profiles in this profile file will be permanently deleted!.
+ /// Sucht eine lokalisierte Zeichenfolge, die All profiles in this profile file will be permanently deleted! ähnelt.
///
public static string ResetProfilesMessage {
get {
@@ -8377,7 +8387,7 @@ public static string ResetProfilesMessage {
}
///
- /// Looks up a localized string similar to Reset settings?.
+ /// Sucht eine lokalisierte Zeichenfolge, die Reset settings? ähnelt.
///
public static string ResetSettingsQuestion {
get {
@@ -8386,7 +8396,7 @@ public static string ResetSettingsQuestion {
}
///
- /// Looks up a localized string similar to Resize.
+ /// Sucht eine lokalisierte Zeichenfolge, die Resize ähnelt.
///
public static string Resize {
get {
@@ -8395,7 +8405,7 @@ public static string Resize {
}
///
- /// 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 {
@@ -8404,7 +8414,7 @@ public static string ResolveCNAMEOnANYRequests {
}
///
- /// Looks up a localized string similar to Resolved "{0}" as hostname for ip address "{1}"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Resolved "{0}" as hostname for ip address "{1}"! ähnelt.
///
public static string ResolvedXXXAsHostnameForIPAddressXXXMessage {
get {
@@ -8413,7 +8423,7 @@ public static string ResolvedXXXAsHostnameForIPAddressXXXMessage {
}
///
- /// Looks up a localized string similar to Resolve hostname.
+ /// Sucht eine lokalisierte Zeichenfolge, die Resolve hostname ähnelt.
///
public static string ResolveHostname {
get {
@@ -8422,7 +8432,7 @@ public static string ResolveHostname {
}
///
- /// Looks up a localized string similar to Resolve Hostname is disabled!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Resolve Hostname is disabled! ähnelt.
///
public static string ResolveHostnameIsDisabled {
get {
@@ -8431,7 +8441,7 @@ public static string ResolveHostnameIsDisabled {
}
///
- /// Looks up a localized string similar to Resolve IP address for this host (IPv4 is preferred).
+ /// Sucht eine lokalisierte Zeichenfolge, die Resolve IP address for this host (IPv4 is preferred) ähnelt.
///
public static string ResolveIPAddressForThisHost {
get {
@@ -8440,7 +8450,7 @@ public static string ResolveIPAddressForThisHost {
}
///
- /// Looks up a localized string similar to Resolve IPv4 address for this host.
+ /// Sucht eine lokalisierte Zeichenfolge, die Resolve IPv4 address for this host ähnelt.
///
public static string ResolveIPv4AddressForThisHost {
get {
@@ -8449,7 +8459,7 @@ public static string ResolveIPv4AddressForThisHost {
}
///
- /// Looks up a localized string similar to Resolve MAC address and vendor.
+ /// Sucht eine lokalisierte Zeichenfolge, die Resolve MAC address and vendor ähnelt.
///
public static string ResolveMACAddressAndVendor {
get {
@@ -8458,7 +8468,7 @@ public static string ResolveMACAddressAndVendor {
}
///
- /// Looks up a localized string similar to Resolve MAC address is disabled!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Resolve MAC address is disabled! ähnelt.
///
public static string ResolveMACAddressIsDisabled {
get {
@@ -8467,7 +8477,7 @@ public static string ResolveMACAddressIsDisabled {
}
///
- /// Looks up a localized string similar to Resolve PTR.
+ /// Sucht eine lokalisierte Zeichenfolge, die Resolve PTR ähnelt.
///
public static string ResolvePTR {
get {
@@ -8476,7 +8486,7 @@ public static string ResolvePTR {
}
///
- /// Looks up a localized string similar to A collection of all country flags in SVG.
+ /// Sucht eine lokalisierte Zeichenfolge, die A collection of all country flags in SVG ähnelt.
///
public static string Resource_Flag_Description {
get {
@@ -8485,7 +8495,7 @@ public static string Resource_Flag_Description {
}
///
- /// Looks up a localized string similar to List of Top-Level-Domains from iana.org, which is used to query whois servers of the TLD from whois.iana.org via port 43.
+ /// Sucht eine lokalisierte Zeichenfolge, die List of Top-Level-Domains from iana.org, which is used to query whois servers of the TLD from whois.iana.org via port 43 ähnelt.
///
public static string Resource_ListTLD_Description {
get {
@@ -8494,7 +8504,7 @@ public static string Resource_ListTLD_Description {
}
///
- /// Looks up a localized string similar to OUI data from ieee.org..
+ /// Sucht eine lokalisierte Zeichenfolge, die OUI data from ieee.org. ähnelt.
///
public static string Resource_OUI_Description {
get {
@@ -8503,7 +8513,7 @@ public static string Resource_OUI_Description {
}
///
- /// Looks up a localized string similar to Service Name and Transport Protocol Port Number Registry from iana.org..
+ /// Sucht eine lokalisierte Zeichenfolge, die Service Name and Transport Protocol Port Number Registry from iana.org. ähnelt.
///
public static string Resource_ServiceNamePortNumber_Description {
get {
@@ -8512,7 +8522,7 @@ public static string Resource_ServiceNamePortNumber_Description {
}
///
- /// Looks up a localized string similar to Resources.
+ /// Sucht eine lokalisierte Zeichenfolge, die Resources ähnelt.
///
public static string Resources {
get {
@@ -8521,7 +8531,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 {
@@ -8530,7 +8540,7 @@ public static string Responses {
}
///
- /// Looks up a localized string similar to Restart.
+ /// Sucht eine lokalisierte Zeichenfolge, die Restart ähnelt.
///
public static string Restart {
get {
@@ -8539,7 +8549,7 @@ public static string Restart {
}
///
- /// Looks up a localized string similar to Restart as Administrator.
+ /// Sucht eine lokalisierte Zeichenfolge, die Restart as Administrator ähnelt.
///
public static string RestartAsAdmin {
get {
@@ -8548,7 +8558,7 @@ public static string RestartAsAdmin {
}
///
- /// Looks up a localized string similar to Restart now.
+ /// Sucht eine lokalisierte Zeichenfolge, die Restart now ähnelt.
///
public static string RestartNow {
get {
@@ -8557,7 +8567,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 {
@@ -8566,7 +8576,7 @@ public static string RestartRequired {
}
///
- /// Looks up a localized string similar to Restart session.
+ /// Sucht eine lokalisierte Zeichenfolge, die Restart session ähnelt.
///
public static string RestartSession {
get {
@@ -8575,7 +8585,7 @@ public static string RestartSession {
}
///
- /// Looks up a localized string similar to Restart the application to change the language!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Restart the application to change the language! ähnelt.
///
public static string RestartTheApplicationToChangeTheLanguage {
get {
@@ -8584,7 +8594,7 @@ public static string RestartTheApplicationToChangeTheLanguage {
}
///
- /// Looks up a localized string similar to Restore defaults.
+ /// Sucht eine lokalisierte Zeichenfolge, die Restore defaults ähnelt.
///
public static string RestoreDefaults {
get {
@@ -8593,7 +8603,7 @@ public static string RestoreDefaults {
}
///
- /// Looks up a localized string similar to Result.
+ /// Sucht eine lokalisierte Zeichenfolge, die Result ähnelt.
///
public static string Result {
get {
@@ -8602,7 +8612,7 @@ public static string Result {
}
///
- /// Looks up a localized string similar to Resume.
+ /// Sucht eine lokalisierte Zeichenfolge, die Resume ähnelt.
///
public static string Resume {
get {
@@ -8611,7 +8621,7 @@ public static string Resume {
}
///
- /// Looks up a localized string similar to Retries.
+ /// Sucht eine lokalisierte Zeichenfolge, die Retries ähnelt.
///
public static string Retries {
get {
@@ -8620,7 +8630,7 @@ public static string Retries {
}
///
- /// Looks up a localized string similar to Rlogin.
+ /// Sucht eine lokalisierte Zeichenfolge, die Rlogin ähnelt.
///
public static string Rlogin {
get {
@@ -8629,7 +8639,7 @@ public static string Rlogin {
}
///
- /// Looks up a localized string similar to Rlogin port.
+ /// Sucht eine lokalisierte Zeichenfolge, die Rlogin port ähnelt.
///
public static string RloginPort {
get {
@@ -8638,7 +8648,7 @@ public static string RloginPort {
}
///
- /// Looks up a localized string similar to Round trip delay.
+ /// Sucht eine lokalisierte Zeichenfolge, die Round trip delay ähnelt.
///
public static string RoundTripDelay {
get {
@@ -8647,7 +8657,7 @@ public static string RoundTripDelay {
}
///
- /// Looks up a localized string similar to Route.
+ /// Sucht eine lokalisierte Zeichenfolge, die Route ähnelt.
///
public static string Route {
get {
@@ -8656,7 +8666,7 @@ public static string Route {
}
///
- /// Looks up a localized string similar to Routing.
+ /// Sucht eine lokalisierte Zeichenfolge, die Routing ähnelt.
///
public static string Routing {
get {
@@ -8665,7 +8675,7 @@ public static string Routing {
}
///
- /// Looks up a localized string similar to Run background job every x-minute.
+ /// Sucht eine lokalisierte Zeichenfolge, die Run background job every x-minute ähnelt.
///
public static string RunBackgroundJobEveryXMinute {
get {
@@ -8674,7 +8684,7 @@ public static string RunBackgroundJobEveryXMinute {
}
///
- /// Looks up a localized string similar to Save.
+ /// Sucht eine lokalisierte Zeichenfolge, die Save ähnelt.
///
public static string Save {
get {
@@ -8683,7 +8693,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 {
@@ -8692,7 +8702,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 {
@@ -8701,7 +8711,7 @@ public static string Scan {
}
///
- /// Looks up a localized string similar to Scan for NetBIOS.
+ /// Sucht eine lokalisierte Zeichenfolge, die Scan for NetBIOS ähnelt.
///
public static string ScanForNetBIOS {
get {
@@ -8710,7 +8720,7 @@ public static string ScanForNetBIOS {
}
///
- /// Looks up a localized string similar to Scanned.
+ /// Sucht eine lokalisierte Zeichenfolge, die Scanned ähnelt.
///
public static string Scanned {
get {
@@ -8719,7 +8729,7 @@ public static string Scanned {
}
///
- /// Looks up a localized string similar to Scan ports.
+ /// Sucht eine lokalisierte Zeichenfolge, die Scan ports ähnelt.
///
public static string ScanPorts {
get {
@@ -8728,7 +8738,7 @@ public static string ScanPorts {
}
///
- /// Looks up a localized string similar to Search.
+ /// Sucht eine lokalisierte Zeichenfolge, die Search ähnelt.
///
public static string Search {
get {
@@ -8737,7 +8747,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 {
@@ -8746,7 +8756,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 {
@@ -8755,7 +8765,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 {
@@ -8764,7 +8774,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 {
@@ -8773,7 +8783,7 @@ public static string SearchedSettingNotFound {
}
///
- /// Looks up a localized string similar to Searching for networks....
+ /// Sucht eine lokalisierte Zeichenfolge, die Searching for networks... ähnelt.
///
public static string SearchingForNetworksDots {
get {
@@ -8782,7 +8792,7 @@ public static string SearchingForNetworksDots {
}
///
- /// Looks up a localized string similar to Searching for WiFi adapters....
+ /// Sucht eine lokalisierte Zeichenfolge, die Searching for WiFi adapters... ähnelt.
///
public static string SearchingWiFiAdaptersDots {
get {
@@ -8791,7 +8801,7 @@ public static string SearchingWiFiAdaptersDots {
}
///
- /// Looks up a localized string similar to Secondary DNS server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Secondary DNS server ähnelt.
///
public static string SecondaryDNSServer {
get {
@@ -8800,7 +8810,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 {
@@ -8809,7 +8819,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 {
@@ -8818,7 +8828,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 {
@@ -8827,7 +8837,7 @@ public static string SelectAScreenResolution {
}
///
- /// Looks up a localized string similar to Selected.
+ /// Sucht eine lokalisierte Zeichenfolge, die Selected ähnelt.
///
public static string Selected {
get {
@@ -8836,7 +8846,7 @@ public static string Selected {
}
///
- /// Looks up a localized string similar to Select OID profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Select OID profile ähnelt.
///
public static string SelectOIDProfile {
get {
@@ -8845,7 +8855,7 @@ public static string SelectOIDProfile {
}
///
- /// Looks up a localized string similar to Select port profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Select port profile ähnelt.
///
public static string SelectPortProfile {
get {
@@ -8854,7 +8864,7 @@ public static string SelectPortProfile {
}
///
- /// Looks up a localized string similar to Send.
+ /// Sucht eine lokalisierte Zeichenfolge, die Send ähnelt.
///
public static string Send {
get {
@@ -8863,7 +8873,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 {
@@ -8872,7 +8882,7 @@ public static string Serial {
}
///
- /// Looks up a localized string similar to Serial line.
+ /// Sucht eine lokalisierte Zeichenfolge, die Serial line ähnelt.
///
public static string SerialLine {
get {
@@ -8881,7 +8891,7 @@ public static string SerialLine {
}
///
- /// Looks up a localized string similar to Server.
+ /// Sucht eine lokalisierte Zeichenfolge, die Server ähnelt.
///
public static string Server {
get {
@@ -8890,7 +8900,7 @@ public static string Server {
}
///
- /// Looks up a localized string similar to Server name.
+ /// Sucht eine lokalisierte Zeichenfolge, die Server name ähnelt.
///
public static string ServerName {
get {
@@ -8899,7 +8909,7 @@ public static string ServerName {
}
///
- /// Looks up a localized string similar to Server(s).
+ /// Sucht eine lokalisierte Zeichenfolge, die Server(s) ähnelt.
///
public static string Servers {
get {
@@ -8908,7 +8918,7 @@ public static string Servers {
}
///
- /// Looks up a localized string similar to Service.
+ /// Sucht eine lokalisierte Zeichenfolge, die Service ähnelt.
///
public static string Service {
get {
@@ -8917,7 +8927,7 @@ public static string Service {
}
///
- /// Looks up a localized string similar to Set default.
+ /// Sucht eine lokalisierte Zeichenfolge, die Set default ähnelt.
///
public static string SetDefault {
get {
@@ -8926,7 +8936,7 @@ public static string SetDefault {
}
///
- /// Looks up a localized string similar to Set Master Password.
+ /// Sucht eine lokalisierte Zeichenfolge, die Set Master Password ähnelt.
///
public static string SetMasterPassword {
get {
@@ -8935,7 +8945,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 {
@@ -8944,7 +8954,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 {
@@ -8953,7 +8963,7 @@ public static string Settings {
}
///
- /// Looks up a localized string similar to The settings will be reset and the application will be restarted afterwards!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The settings will be reset and the application will be restarted afterwards! ähnelt.
///
public static string SettingsAreResetAndApplicationWillBeRestartedMessage {
get {
@@ -8962,11 +8972,11 @@ public static string SettingsAreResetAndApplicationWillBeRestartedMessage {
}
///
- /// Looks up a localized string similar to The found settings file was corrupted or is not compatible with this version! You may report this issue on GitHub.
+ /// Sucht eine lokalisierte Zeichenfolge, die The found settings file was corrupted or is not compatible with this version! You may report this issue on GitHub.
///
///A backup of the settings file was created in the settings folder and the settings were reset.
///
- ///Profile files are not affected!.
+ ///Profile files are not affected! ähnelt.
///
public static string SettingsFileFoundWasCorruptOrNotCompatibleMessage {
get {
@@ -8975,7 +8985,7 @@ public static string SettingsFileFoundWasCorruptOrNotCompatibleMessage {
}
///
- /// Looks up a localized string similar to Applications.
+ /// Sucht eine lokalisierte Zeichenfolge, die Applications ähnelt.
///
public static string SettingsGroup_Application {
get {
@@ -8984,7 +8994,7 @@ public static string SettingsGroup_Application {
}
///
- /// Looks up a localized string similar to General.
+ /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt.
///
public static string SettingsGroup_General {
get {
@@ -8993,7 +9003,7 @@ public static string SettingsGroup_General {
}
///
- /// 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 {
@@ -9002,7 +9012,7 @@ public static string SettingsHaveBeenReset {
}
///
- /// Looks up a localized string similar to Appearance.
+ /// Sucht eine lokalisierte Zeichenfolge, die Appearance ähnelt.
///
public static string SettingsName_Appearance {
get {
@@ -9011,7 +9021,7 @@ public static string SettingsName_Appearance {
}
///
- /// Looks up a localized string similar to Autostart.
+ /// Sucht eine lokalisierte Zeichenfolge, die Autostart ähnelt.
///
public static string SettingsName_Autostart {
get {
@@ -9020,7 +9030,7 @@ public static string SettingsName_Autostart {
}
///
- /// Looks up a localized string similar to General.
+ /// Sucht eine lokalisierte Zeichenfolge, die General ähnelt.
///
public static string SettingsName_General {
get {
@@ -9029,7 +9039,7 @@ public static string SettingsName_General {
}
///
- /// Looks up a localized string similar to HotKeys.
+ /// Sucht eine lokalisierte Zeichenfolge, die HotKeys ähnelt.
///
public static string SettingsName_HotKeys {
get {
@@ -9038,7 +9048,7 @@ public static string SettingsName_HotKeys {
}
///
- /// Looks up a localized string similar to Language.
+ /// Sucht eine lokalisierte Zeichenfolge, die Language ähnelt.
///
public static string SettingsName_Language {
get {
@@ -9047,7 +9057,7 @@ public static string SettingsName_Language {
}
///
- /// Looks up a localized string similar to Network.
+ /// Sucht eine lokalisierte Zeichenfolge, die Network ähnelt.
///
public static string SettingsName_Network {
get {
@@ -9056,7 +9066,7 @@ public static string SettingsName_Network {
}
///
- /// Looks up a localized string similar to Profiles.
+ /// Sucht eine lokalisierte Zeichenfolge, die Profiles ähnelt.
///
public static string SettingsName_Profiles {
get {
@@ -9065,7 +9075,7 @@ public static string SettingsName_Profiles {
}
///
- /// Looks up a localized string similar to Settings.
+ /// Sucht eine lokalisierte Zeichenfolge, die Settings ähnelt.
///
public static string SettingsName_Settings {
get {
@@ -9074,7 +9084,7 @@ public static string SettingsName_Settings {
}
///
- /// Looks up a localized string similar to Status.
+ /// Sucht eine lokalisierte Zeichenfolge, die Status ähnelt.
///
public static string SettingsName_Status {
get {
@@ -9083,7 +9093,7 @@ public static string SettingsName_Status {
}
///
- /// Looks up a localized string similar to Update.
+ /// Sucht eine lokalisierte Zeichenfolge, die Update ähnelt.
///
public static string SettingsName_Update {
get {
@@ -9092,7 +9102,7 @@ public static string SettingsName_Update {
}
///
- /// Looks up a localized string similar to Window.
+ /// Sucht eine lokalisierte Zeichenfolge, die Window ähnelt.
///
public static string SettingsName_Window {
get {
@@ -9101,7 +9111,7 @@ public static string SettingsName_Window {
}
///
- /// Looks up a localized string similar to Settings reset!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Settings reset! ähnelt.
///
public static string SettingsResetExclamationMark {
get {
@@ -9110,7 +9120,7 @@ public static string SettingsResetExclamationMark {
}
///
- /// Looks up a localized string similar to Share Gateway credentials with remote computer.
+ /// Sucht eine lokalisierte Zeichenfolge, die Share Gateway credentials with remote computer ähnelt.
///
public static string ShareGatewayCredentialsWithRemoteComputer {
get {
@@ -9119,7 +9129,7 @@ public static string ShareGatewayCredentialsWithRemoteComputer {
}
///
- /// Looks up a localized string similar to Show.
+ /// Sucht eine lokalisierte Zeichenfolge, die Show ähnelt.
///
public static string Show {
get {
@@ -9128,7 +9138,7 @@ public static string Show {
}
///
- /// Looks up a localized string similar to Show address bar.
+ /// Sucht eine lokalisierte Zeichenfolge, die Show address bar ähnelt.
///
public static string ShowAddressBar {
get {
@@ -9137,7 +9147,7 @@ public static string ShowAddressBar {
}
///
- /// Looks up a localized string similar to Show closed ports.
+ /// Sucht eine lokalisierte Zeichenfolge, die Show closed ports ähnelt.
///
public static string ShowClosedPorts {
get {
@@ -9146,7 +9156,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 {
@@ -9155,7 +9165,7 @@ public static string ShowCurrentApplicationTitle {
}
///
- /// Looks up a localized string similar to Show error message.
+ /// Sucht eine lokalisierte Zeichenfolge, die Show error message ähnelt.
///
public static string ShowErrorMessage {
get {
@@ -9164,7 +9174,7 @@ public static string ShowErrorMessage {
}
///
- /// Looks up a localized string similar to Show local licenses.
+ /// Sucht eine lokalisierte Zeichenfolge, die Show local licenses ähnelt.
///
public static string ShowLocalLicenses {
get {
@@ -9173,7 +9183,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 {
@@ -9182,7 +9192,7 @@ public static string ShowOnlyMostCommonQueryTypes {
}
///
- /// Looks up a localized string similar to Show SplashScreen on start.
+ /// Sucht eine lokalisierte Zeichenfolge, die Show SplashScreen on start ähnelt.
///
public static string ShowSplashScreenOnStart {
get {
@@ -9191,7 +9201,7 @@ public static string ShowSplashScreenOnStart {
}
///
- /// Looks up a localized string similar to Show statistics.
+ /// Sucht eine lokalisierte Zeichenfolge, die Show statistics ähnelt.
///
public static string ShowStatistics {
get {
@@ -9200,7 +9210,7 @@ public static string ShowStatistics {
}
///
- /// Looks up a localized string similar to Show status window on network change.
+ /// Sucht eine lokalisierte Zeichenfolge, die Show status window on network change ähnelt.
///
public static string ShowStatusWindowOnNetworkChange {
get {
@@ -9209,7 +9219,7 @@ public static string ShowStatusWindowOnNetworkChange {
}
///
- /// 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 {
@@ -9218,7 +9228,7 @@ public static string ShowTheFollowingApplicationOnStartup {
}
///
- /// Looks up a localized string similar to Show unreachable IP addresses and ports.
+ /// Sucht eine lokalisierte Zeichenfolge, die Show unreachable IP addresses and ports ähnelt.
///
public static string ShowUnreachableIPAddressesAndPorts {
get {
@@ -9227,7 +9237,7 @@ public static string ShowUnreachableIPAddressesAndPorts {
}
///
- /// Looks up a localized string similar to Show window contents while dragging.
+ /// Sucht eine lokalisierte Zeichenfolge, die Show window contents while dragging ähnelt.
///
public static string ShowWindowContentsWhileDragging {
get {
@@ -9236,7 +9246,7 @@ public static string ShowWindowContentsWhileDragging {
}
///
- /// Looks up a localized string similar to Sienna.
+ /// Sucht eine lokalisierte Zeichenfolge, die Sienna ähnelt.
///
public static string Sienna {
get {
@@ -9245,7 +9255,7 @@ public static string Sienna {
}
///
- /// Looks up a localized string similar to Signal strength.
+ /// Sucht eine lokalisierte Zeichenfolge, die Signal strength ähnelt.
///
public static string SignalStrength {
get {
@@ -9254,7 +9264,7 @@ public static string SignalStrength {
}
///
- /// 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 {
@@ -9263,7 +9273,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 {
@@ -9272,7 +9282,7 @@ public static string SNMP {
}
///
- /// Looks up a localized string similar to Authentication failed. Please check the community string!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Authentication failed. Please check the community string! ähnelt.
///
public static string SNMPErrorCode_AuthorizationError {
get {
@@ -9281,7 +9291,7 @@ public static string SNMPErrorCode_AuthorizationError {
}
///
- /// Looks up a localized string similar to A read-write or write-only object was set to an inconsistent value!.
+ /// Sucht eine lokalisierte Zeichenfolge, die A read-write or write-only object was set to an inconsistent value! ähnelt.
///
public static string SNMPErrorCode_BadValue {
get {
@@ -9290,7 +9300,7 @@ public static string SNMPErrorCode_BadValue {
}
///
- /// Looks up a localized string similar to An error occurred during the set operation!.
+ /// Sucht eine lokalisierte Zeichenfolge, die An error occurred during the set operation! ähnelt.
///
public static string SNMPErrorCode_CommitFailed {
get {
@@ -9299,7 +9309,7 @@ public static string SNMPErrorCode_CommitFailed {
}
///
- /// Looks up a localized string similar to An error occurred for which no specific message is available!.
+ /// Sucht eine lokalisierte Zeichenfolge, die An error occurred for which no specific message is available! ähnelt.
///
public static string SNMPErrorCode_GenError {
get {
@@ -9308,7 +9318,7 @@ public static string SNMPErrorCode_GenError {
}
///
- /// Looks up a localized string similar to The object's state is inconsistent, preventing the set operation!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The object's state is inconsistent, preventing the set operation! ähnelt.
///
public static string SNMPErrorCode_InconsistentName {
get {
@@ -9317,7 +9327,7 @@ public static string SNMPErrorCode_InconsistentName {
}
///
- /// Looks up a localized string similar to The MIB variable is currently in an inconsistent state and cannot be modified!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The MIB variable is currently in an inconsistent state and cannot be modified! ähnelt.
///
public static string SNMPErrorCode_InconsistentValue {
get {
@@ -9326,7 +9336,7 @@ public static string SNMPErrorCode_InconsistentValue {
}
///
- /// Looks up a localized string similar to The requested object is not accessible for modification!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The requested object is not accessible for modification! ähnelt.
///
public static string SNMPErrorCode_NoAccess {
get {
@@ -9335,7 +9345,7 @@ public static string SNMPErrorCode_NoAccess {
}
///
- /// Looks up a localized string similar to The requested object does not exist and cannot be created!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The requested object does not exist and cannot be created! ähnelt.
///
public static string SNMPErrorCode_NoCreation {
get {
@@ -9344,7 +9354,7 @@ public static string SNMPErrorCode_NoCreation {
}
///
- /// Looks up a localized string similar to The operation was successful without any errors..
+ /// Sucht eine lokalisierte Zeichenfolge, die The operation was successful without any errors. ähnelt.
///
public static string SNMPErrorCode_NoError {
get {
@@ -9353,7 +9363,7 @@ public static string SNMPErrorCode_NoError {
}
///
- /// Looks up a localized string similar to The requested OID could not be found!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The requested OID could not be found! ähnelt.
///
public static string SNMPErrorCode_NoSuchName {
get {
@@ -9362,7 +9372,7 @@ public static string SNMPErrorCode_NoSuchName {
}
///
- /// Looks up a localized string similar to The requested object is not writable and cannot be modified!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The requested object is not writable and cannot be modified! ähnelt.
///
public static string SNMPErrorCode_NotWritable {
get {
@@ -9371,7 +9381,7 @@ public static string SNMPErrorCode_NotWritable {
}
///
- /// Looks up a localized string similar to The requested OID does not exist and is not writable!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The requested OID does not exist and is not writable! ähnelt.
///
public static string SNMPErrorCode_ReadOnly {
get {
@@ -9380,7 +9390,7 @@ public static string SNMPErrorCode_ReadOnly {
}
///
- /// Looks up a localized string similar to There are no available system resources to perform the requested operation!.
+ /// Sucht eine lokalisierte Zeichenfolge, die There are no available system resources to perform the requested operation! ähnelt.
///
public static string SNMPErrorCode_ResourceUnavailable {
get {
@@ -9389,7 +9399,7 @@ public static string SNMPErrorCode_ResourceUnavailable {
}
///
- /// Looks up a localized string similar to The response to your request was too large to fit into a single response!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The response to your request was too large to fit into a single response! ähnelt.
///
public static string SNMPErrorCode_TooBig {
get {
@@ -9398,7 +9408,7 @@ public static string SNMPErrorCode_TooBig {
}
///
- /// Looks up a localized string similar to A set operation failed, and previous changes could not be rolled back!.
+ /// Sucht eine lokalisierte Zeichenfolge, die A set operation failed, and previous changes could not be rolled back! ähnelt.
///
public static string SNMPErrorCode_UndoFailed {
get {
@@ -9407,7 +9417,7 @@ public static string SNMPErrorCode_UndoFailed {
}
///
- /// Looks up a localized string similar to The encoding used for the object is incorrect!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The encoding used for the object is incorrect! ähnelt.
///
public static string SNMPErrorCode_WrongEncoding {
get {
@@ -9416,7 +9426,7 @@ public static string SNMPErrorCode_WrongEncoding {
}
///
- /// Looks up a localized string similar to The value assigned to the object exceeds its maximum length!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The value assigned to the object exceeds its maximum length! ähnelt.
///
public static string SNMPErrorCode_WrongLength {
get {
@@ -9425,7 +9435,7 @@ public static string SNMPErrorCode_WrongLength {
}
///
- /// Looks up a localized string similar to The object was set to an incompatible data type!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The object was set to an incompatible data type! ähnelt.
///
public static string SNMPErrorCode_WrongType {
get {
@@ -9434,7 +9444,7 @@ public static string SNMPErrorCode_WrongType {
}
///
- /// Looks up a localized string similar to The value assigned to the object is not a valid choice!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The value assigned to the object is not a valid choice! ähnelt.
///
public static string SNMPErrorCode_WrongValue {
get {
@@ -9443,7 +9453,7 @@ public static string SNMPErrorCode_WrongValue {
}
///
- /// Looks up a localized string similar to Authentication failure (incorrect password, community or key)..
+ /// Sucht eine lokalisierte Zeichenfolge, die Authentication failure (incorrect password, community or key). ähnelt.
///
public static string SNMPV3ErrorCode_AuthenticationFailed {
get {
@@ -9452,7 +9462,7 @@ public static string SNMPV3ErrorCode_AuthenticationFailed {
}
///
- /// Looks up a localized string similar to Unknown user name..
+ /// Sucht eine lokalisierte Zeichenfolge, die Unknown user name. ähnelt.
///
public static string SNMPV3ErrorCode_UnknownUserName {
get {
@@ -9461,7 +9471,7 @@ public static string SNMPV3ErrorCode_UnknownUserName {
}
///
- /// Looks up a localized string similar to SNTP Lookup.
+ /// Sucht eine lokalisierte Zeichenfolge, die SNTP Lookup ähnelt.
///
public static string SNTPLookup {
get {
@@ -9470,7 +9480,7 @@ public static string SNTPLookup {
}
///
- /// Looks up a localized string similar to SNTP server.
+ /// Sucht eine lokalisierte Zeichenfolge, die SNTP server ähnelt.
///
public static string SNTPServer {
get {
@@ -9479,7 +9489,7 @@ public static string SNTPServer {
}
///
- /// Looks up a localized string similar to SNTP server(s).
+ /// Sucht eine lokalisierte Zeichenfolge, die SNTP server(s) ähnelt.
///
public static string SNTPServers {
get {
@@ -9488,7 +9498,7 @@ public static string SNTPServers {
}
///
- /// Looks up a localized string similar to An SNTP server with this name already exists!.
+ /// Sucht eine lokalisierte Zeichenfolge, die An SNTP server with this name already exists! ähnelt.
///
public static string SNTPServerWithThisNameAlreadyExists {
get {
@@ -9497,7 +9507,7 @@ public static string SNTPServerWithThisNameAlreadyExists {
}
///
- /// Looks up a localized string similar to Socket.
+ /// Sucht eine lokalisierte Zeichenfolge, die Socket ähnelt.
///
public static string Socket {
get {
@@ -9506,7 +9516,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 {
@@ -9515,7 +9525,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 {
@@ -9524,7 +9534,7 @@ public static string Speed {
}
///
- /// Looks up a localized string similar to SplashScreen.
+ /// Sucht eine lokalisierte Zeichenfolge, die SplashScreen ähnelt.
///
public static string SplashScreen {
get {
@@ -9533,7 +9543,7 @@ public static string SplashScreen {
}
///
- /// Looks up a localized string similar to SSH.
+ /// Sucht eine lokalisierte Zeichenfolge, die SSH ähnelt.
///
public static string SSH {
get {
@@ -9542,7 +9552,7 @@ public static string SSH {
}
///
- /// Looks up a localized string similar to SSH log.
+ /// Sucht eine lokalisierte Zeichenfolge, die SSH log ähnelt.
///
public static string SSHLog {
get {
@@ -9551,7 +9561,7 @@ public static string SSHLog {
}
///
- /// Looks up a localized string similar to SSH port.
+ /// Sucht eine lokalisierte Zeichenfolge, die SSH port ähnelt.
///
public static string SSHPort {
get {
@@ -9560,7 +9570,7 @@ public static string SSHPort {
}
///
- /// Looks up a localized string similar to SSH Raw log.
+ /// Sucht eine lokalisierte Zeichenfolge, die SSH Raw log ähnelt.
///
public static string SSHRawLog {
get {
@@ -9569,7 +9579,7 @@ public static string SSHRawLog {
}
///
- /// Looks up a localized string similar to SSID.
+ /// Sucht eine lokalisierte Zeichenfolge, die SSID ähnelt.
///
public static string SSID {
get {
@@ -9578,7 +9588,7 @@ public static string SSID {
}
///
- /// Looks up a localized string similar to .
+ /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
///
public static string StarForkTheProjectOnGitHub {
get {
@@ -9587,7 +9597,7 @@ public static string StarForkTheProjectOnGitHub {
}
///
- /// 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 {
@@ -9596,7 +9606,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 {
@@ -9605,7 +9615,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 {
@@ -9614,7 +9624,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 {
@@ -9623,7 +9633,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 {
@@ -9632,7 +9642,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 {
@@ -9641,7 +9651,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 {
@@ -9650,7 +9660,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 {
@@ -9659,7 +9669,7 @@ public static string Status {
}
///
- /// Looks up a localized string similar to Status change.
+ /// Sucht eine lokalisierte Zeichenfolge, die Status change ähnelt.
///
public static string StatusChange {
get {
@@ -9668,7 +9678,7 @@ public static string StatusChange {
}
///
- /// Looks up a localized string similar to Status window.
+ /// Sucht eine lokalisierte Zeichenfolge, die Status window ähnelt.
///
public static string StatusWindow {
get {
@@ -9677,7 +9687,7 @@ public static string StatusWindow {
}
///
- /// Looks up a localized string similar to Steel.
+ /// Sucht eine lokalisierte Zeichenfolge, die Steel ähnelt.
///
public static string Steel {
get {
@@ -9686,7 +9696,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 {
@@ -9695,7 +9705,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 {
@@ -9704,7 +9714,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 {
@@ -9713,7 +9723,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 {
@@ -9722,7 +9732,7 @@ public static string SubnetCalculator {
}
///
- /// Looks up a localized string similar to Subnet mask.
+ /// Sucht eine lokalisierte Zeichenfolge, die Subnet mask ähnelt.
///
public static string SubnetMask {
get {
@@ -9731,7 +9741,7 @@ public static string SubnetMask {
}
///
- /// Looks up a localized string similar to Subnetting.
+ /// Sucht eine lokalisierte Zeichenfolge, die Subnetting ähnelt.
///
public static string Subnetting {
get {
@@ -9740,7 +9750,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 {
@@ -9749,7 +9759,7 @@ public static string Success {
}
///
- /// Looks up a localized string similar to Successfully connected to {0}!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Successfully connected to {0}! ähnelt.
///
public static string SuccessfullyConnectedToXXX {
get {
@@ -9758,7 +9768,7 @@ public static string SuccessfullyConnectedToXXX {
}
///
- /// Looks up a localized string similar to Synchronize all EC2 instances from AWS.
+ /// Sucht eine lokalisierte Zeichenfolge, die Synchronize all EC2 instances from AWS ähnelt.
///
public static string SyncAllEC2InstancesFromAWS {
get {
@@ -9767,7 +9777,7 @@ public static string SyncAllEC2InstancesFromAWS {
}
///
- /// Looks up a localized string similar to Synchronize EC2 instances from AWS.
+ /// Sucht eine lokalisierte Zeichenfolge, die Synchronize EC2 instances from AWS ähnelt.
///
public static string SyncEC2InstancesFromAWS {
get {
@@ -9776,7 +9786,7 @@ public static string SyncEC2InstancesFromAWS {
}
///
- /// Looks up a localized string similar to Synchronize group EC2 instances from AWS.
+ /// Sucht eine lokalisierte Zeichenfolge, die Synchronize group EC2 instances from AWS ähnelt.
///
public static string SyncGroupEC2InstancesFromAWS {
get {
@@ -9785,7 +9795,7 @@ public static string SyncGroupEC2InstancesFromAWS {
}
///
- /// Looks up a localized string similar to Synchronization is disabled!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Synchronization is disabled! ähnelt.
///
public static string SyncIsDisabled {
get {
@@ -9794,7 +9804,7 @@ public static string SyncIsDisabled {
}
///
- /// Looks up a localized string similar to Synchronize only running EC2 instances from AWS.
+ /// Sucht eine lokalisierte Zeichenfolge, die Synchronize only running EC2 instances from AWS ähnelt.
///
public static string SyncOnlyRunningEC2InstancesFromAWS {
get {
@@ -9803,7 +9813,7 @@ public static string SyncOnlyRunningEC2InstancesFromAWS {
}
///
- /// Looks up a localized string similar to Tags.
+ /// Sucht eine lokalisierte Zeichenfolge, die Tags ähnelt.
///
public static string Tags {
get {
@@ -9812,7 +9822,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 {
@@ -9821,7 +9831,7 @@ public static string Taupe {
}
///
- /// Looks up a localized string similar to TCP/IP stack is available. "{0}" is reachable via ICMP!.
+ /// Sucht eine lokalisierte Zeichenfolge, die TCP/IP stack is available. "{0}" is reachable via ICMP! ähnelt.
///
public static string TCPIPStackIsAvailableMessage {
get {
@@ -9830,7 +9840,7 @@ public static string TCPIPStackIsAvailableMessage {
}
///
- /// Looks up a localized string similar to TCP/IP stack is not available... "{0}" is not reachable via ICMP!.
+ /// Sucht eine lokalisierte Zeichenfolge, die TCP/IP stack is not available... "{0}" is not reachable via ICMP! ähnelt.
///
public static string TCPIPStackIsNotAvailableMessage {
get {
@@ -9839,7 +9849,7 @@ public static string TCPIPStackIsNotAvailableMessage {
}
///
- /// Looks up a localized string similar to Closed.
+ /// Sucht eine lokalisierte Zeichenfolge, die Closed ähnelt.
///
public static string TcpState_Closed {
get {
@@ -9848,7 +9858,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 {
@@ -9857,7 +9867,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 {
@@ -9866,7 +9876,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 {
@@ -9875,7 +9885,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 {
@@ -9884,7 +9894,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 {
@@ -9893,7 +9903,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 {
@@ -9902,7 +9912,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 {
@@ -9911,7 +9921,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 {
@@ -9920,7 +9930,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 {
@@ -9929,7 +9939,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 {
@@ -9938,7 +9948,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 {
@@ -9947,7 +9957,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 {
@@ -9956,7 +9966,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 {
@@ -9965,7 +9975,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 {
@@ -9974,7 +9984,7 @@ public static string Telnet {
}
///
- /// Looks up a localized string similar to Telnet port.
+ /// Sucht eine lokalisierte Zeichenfolge, die Telnet port ähnelt.
///
public static string TelnetPort {
get {
@@ -9983,7 +9993,7 @@ public static string TelnetPort {
}
///
- /// Looks up a localized string similar to Terabits.
+ /// Sucht eine lokalisierte Zeichenfolge, die Terabits ähnelt.
///
public static string Terabits {
get {
@@ -9992,7 +10002,7 @@ public static string Terabits {
}
///
- /// Looks up a localized string similar to Terabytes.
+ /// Sucht eine lokalisierte Zeichenfolge, die Terabytes ähnelt.
///
public static string Terabytes {
get {
@@ -10001,7 +10011,7 @@ public static string Terabytes {
}
///
- /// 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 {
@@ -10010,7 +10020,7 @@ public static string TheApplicationCanBeStartedWithoutParameters {
}
///
- /// Looks up a localized string similar to The application will be restarted....
+ /// Sucht eine lokalisierte Zeichenfolge, die The application will be restarted... ähnelt.
///
public static string TheApplicationWillBeRestarted {
get {
@@ -10019,7 +10029,7 @@ public static string TheApplicationWillBeRestarted {
}
///
- /// 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 {
@@ -10028,7 +10038,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 {
@@ -10037,7 +10047,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 {
@@ -10046,7 +10056,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 {
@@ -10055,7 +10065,7 @@ public static string Theme {
}
///
- /// Looks up a localized string similar to Dark.
+ /// Sucht eine lokalisierte Zeichenfolge, die Dark ähnelt.
///
public static string Theme_Dark {
get {
@@ -10064,7 +10074,7 @@ public static string Theme_Dark {
}
///
- /// Looks up a localized string similar to Light.
+ /// Sucht eine lokalisierte Zeichenfolge, die Light ähnelt.
///
public static string Theme_Light {
get {
@@ -10073,7 +10083,7 @@ public static string Theme_Light {
}
///
- /// 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 {
@@ -10082,7 +10092,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 {
@@ -10091,7 +10101,7 @@ public static string TheSettingsLocationIsNotAffected {
}
///
- /// Looks up a localized string similar to This will reset all settings!.
+ /// Sucht eine lokalisierte Zeichenfolge, die This will reset all settings! ähnelt.
///
public static string ThisWillResetAllSettings {
get {
@@ -10100,7 +10110,7 @@ public static string ThisWillResetAllSettings {
}
///
- /// Looks up a localized string similar to ThreadPool additional min. threads.
+ /// Sucht eine lokalisierte Zeichenfolge, die ThreadPool additional min. threads ähnelt.
///
public static string ThreadPoolAdditionalMinThreads {
get {
@@ -10109,7 +10119,7 @@ public static string ThreadPoolAdditionalMinThreads {
}
///
- /// Looks up a localized string similar to Threads.
+ /// Sucht eine lokalisierte Zeichenfolge, die Threads ähnelt.
///
public static string Threads {
get {
@@ -10118,7 +10128,7 @@ public static string Threads {
}
///
- /// Looks up a localized string similar to TigerVNC.
+ /// Sucht eine lokalisierte Zeichenfolge, die TigerVNC ähnelt.
///
public static string TigerVNC {
get {
@@ -10127,7 +10137,7 @@ public static string TigerVNC {
}
///
- /// Looks up a localized string similar to TigerVNC process has ended!.
+ /// Sucht eine lokalisierte Zeichenfolge, die TigerVNC process has ended! ähnelt.
///
public static string TigerVNCProcessHasEnded {
get {
@@ -10136,7 +10146,7 @@ public static string TigerVNCProcessHasEnded {
}
///
- /// Looks up a localized string similar to Time.
+ /// Sucht eine lokalisierte Zeichenfolge, die Time ähnelt.
///
public static string Time {
get {
@@ -10145,7 +10155,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 {
@@ -10154,7 +10164,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 {
@@ -10163,7 +10173,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 {
@@ -10172,7 +10182,7 @@ public static string Time3 {
}
///
- /// Looks up a localized string similar to Time in seconds how long the status window is shown.
+ /// Sucht eine lokalisierte Zeichenfolge, die Time in seconds how long the status window is shown ähnelt.
///
public static string TimeInSecondsHowLongTheStatusWindowIsShown {
get {
@@ -10181,7 +10191,7 @@ public static string TimeInSecondsHowLongTheStatusWindowIsShown {
}
///
- /// Looks up a localized string similar to Time (ms) to wait between each ping.
+ /// Sucht eine lokalisierte Zeichenfolge, die Time (ms) to wait between each ping ähnelt.
///
public static string TimeMSToWaitBetweenEachPing {
get {
@@ -10190,7 +10200,7 @@ public static string TimeMSToWaitBetweenEachPing {
}
///
- /// Looks up a localized string similar to Timeout.
+ /// Sucht eine lokalisierte Zeichenfolge, die Timeout ähnelt.
///
public static string Timeout {
get {
@@ -10199,7 +10209,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 {
@@ -10208,7 +10218,7 @@ public static string TimeoutMS {
}
///
- /// Looks up a localized string similar to Timeout on SNMP query. Maybe the host is not reachable or the community / password is wrong..
+ /// Sucht eine lokalisierte Zeichenfolge, die Timeout on SNMP query. Maybe the host is not reachable or the community / password is wrong. ähnelt.
///
public static string TimeoutOnSNMPQuery {
get {
@@ -10217,7 +10227,7 @@ public static string TimeoutOnSNMPQuery {
}
///
- /// Looks up a localized string similar to Timeout (s).
+ /// Sucht eine lokalisierte Zeichenfolge, die Timeout (s) ähnelt.
///
public static string TimeoutS {
get {
@@ -10226,7 +10236,7 @@ public static string TimeoutS {
}
///
- /// 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 {
@@ -10235,7 +10245,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 {
@@ -10244,7 +10254,7 @@ public static string Timestamp {
}
///
- /// Looks up a localized string similar to Time to live.
+ /// Sucht eine lokalisierte Zeichenfolge, die Time to live ähnelt.
///
public static string TimeToLive {
get {
@@ -10253,7 +10263,7 @@ public static string TimeToLive {
}
///
- /// Looks up a localized string similar to Hour(s).
+ /// Sucht eine lokalisierte Zeichenfolge, die Hour(s) ähnelt.
///
public static string TimeUnit_Hour {
get {
@@ -10262,7 +10272,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 {
@@ -10271,7 +10281,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 {
@@ -10280,7 +10290,7 @@ public static string TimeUnit_Second {
}
///
- /// Looks up a localized string similar to Timezone.
+ /// Sucht eine lokalisierte Zeichenfolge, die Timezone ähnelt.
///
public static string Timezone {
get {
@@ -10289,7 +10299,7 @@ public static string Timezone {
}
///
- /// Looks up a localized string similar to Follow or contact me via X..
+ /// Sucht eine lokalisierte Zeichenfolge, die Follow or contact me via X. ähnelt.
///
public static string ToolTip_ContactOrContactMeViaX {
get {
@@ -10298,7 +10308,7 @@ public static string ToolTip_ContactOrContactMeViaX {
}
///
- /// Looks up a localized string similar to .
+ /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
///
public static string ToolTip_GithubDocumentationUrl {
get {
@@ -10307,7 +10317,7 @@ public static string ToolTip_GithubDocumentationUrl {
}
///
- /// Looks up a localized string similar to .
+ /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
///
public static string ToolTip_GithubNewIssueUrl {
get {
@@ -10316,7 +10326,7 @@ public static string ToolTip_GithubNewIssueUrl {
}
///
- /// Looks up a localized string similar to .
+ /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
///
public static string ToolTip_GitHubProjectUrl {
get {
@@ -10325,7 +10335,7 @@ public static string ToolTip_GitHubProjectUrl {
}
///
- /// Looks up a localized string similar to Help translate the project on Transifex..
+ /// Sucht eine lokalisierte Zeichenfolge, die Help translate the project on Transifex. ähnelt.
///
public static string ToolTip_HelpTranslateOnTransifex {
get {
@@ -10334,7 +10344,7 @@ public static string ToolTip_HelpTranslateOnTransifex {
}
///
- /// Looks up a localized string similar to Open the documentation..
+ /// Sucht eine lokalisierte Zeichenfolge, die Open the documentation. ähnelt.
///
public static string ToolTip_OpenTheDocumentation {
get {
@@ -10343,7 +10353,7 @@ public static string ToolTip_OpenTheDocumentation {
}
///
- /// Looks up a localized string similar to Report an issue or create a feature request..
+ /// Sucht eine lokalisierte Zeichenfolge, die Report an issue or create a feature request. ähnelt.
///
public static string ToolTip_ReportIssueOrCreateFeatureRequest {
get {
@@ -10352,7 +10362,7 @@ public static string ToolTip_ReportIssueOrCreateFeatureRequest {
}
///
- /// Looks up a localized string similar to Run command... (Ctrl+Shift+P).
+ /// Sucht eine lokalisierte Zeichenfolge, die Run command... (Ctrl+Shift+P) ähnelt.
///
public static string ToolTip_RunCommandWithHotKey {
get {
@@ -10361,7 +10371,7 @@ public static string ToolTip_RunCommandWithHotKey {
}
///
- /// Looks up a localized string similar to Star/Fork the Project on GitHub..
+ /// Sucht eine lokalisierte Zeichenfolge, die Star/Fork the Project on GitHub. ähnelt.
///
public static string ToolTip_StarForkProjectOnGitHub {
get {
@@ -10370,7 +10380,7 @@ public static string ToolTip_StarForkProjectOnGitHub {
}
///
- /// Looks up a localized string similar to Support this project with a donation..
+ /// Sucht eine lokalisierte Zeichenfolge, die Support this project with a donation. ähnelt.
///
public static string ToolTip_SupportThisProjectWithADonation {
get {
@@ -10379,7 +10389,7 @@ public static string ToolTip_SupportThisProjectWithADonation {
}
///
- /// Looks up a localized string similar to .
+ /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
///
public static string ToolTip_TransifexProjectUrl {
get {
@@ -10388,7 +10398,7 @@ public static string ToolTip_TransifexProjectUrl {
}
///
- /// Looks up a localized string similar to .
+ /// Sucht eine lokalisierte Zeichenfolge, die ähnelt.
///
public static string ToolTip_TwitterContactUrl {
get {
@@ -10397,7 +10407,7 @@ public static string ToolTip_TwitterContactUrl {
}
///
- /// Looks up a localized string similar to Total bytes received.
+ /// Sucht eine lokalisierte Zeichenfolge, die Total bytes received ähnelt.
///
public static string TotalBytesReceived {
get {
@@ -10406,7 +10416,7 @@ public static string TotalBytesReceived {
}
///
- /// Looks up a localized string similar to Total bytes sent.
+ /// Sucht eine lokalisierte Zeichenfolge, die Total bytes sent ähnelt.
///
public static string TotalBytesSent {
get {
@@ -10415,7 +10425,7 @@ public static string TotalBytesSent {
}
///
- /// Looks up a localized string similar to Total download.
+ /// Sucht eine lokalisierte Zeichenfolge, die Total download ähnelt.
///
public static string TotalDownload {
get {
@@ -10424,7 +10434,7 @@ public static string TotalDownload {
}
///
- /// Looks up a localized string similar to Total upload.
+ /// Sucht eine lokalisierte Zeichenfolge, die Total upload ähnelt.
///
public static string TotalUpload {
get {
@@ -10433,7 +10443,7 @@ public static string TotalUpload {
}
///
- /// Looks up a localized string similar to Trace.
+ /// Sucht eine lokalisierte Zeichenfolge, die Trace ähnelt.
///
public static string Trace {
get {
@@ -10442,7 +10452,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 {
@@ -10451,7 +10461,7 @@ public static string Traceroute {
}
///
- /// Looks up a localized string similar to Tray.
+ /// Sucht eine lokalisierte Zeichenfolge, die Tray ähnelt.
///
public static string Tray {
get {
@@ -10460,7 +10470,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 {
@@ -10469,7 +10479,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 {
@@ -10478,7 +10488,7 @@ public static string Type {
}
///
- /// Looks up a localized string similar to Unit.
+ /// Sucht eine lokalisierte Zeichenfolge, die Unit ähnelt.
///
public static string Unit {
get {
@@ -10487,7 +10497,7 @@ public static string Unit {
}
///
- /// Looks up a localized string similar to Unkown error!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Unkown error! ähnelt.
///
public static string UnkownError {
get {
@@ -10496,7 +10506,7 @@ public static string UnkownError {
}
///
- /// Looks up a localized string similar to Unlock profile.
+ /// Sucht eine lokalisierte Zeichenfolge, die Unlock profile ähnelt.
///
public static string UnlockProfile {
get {
@@ -10505,7 +10515,7 @@ public static string UnlockProfile {
}
///
- /// Looks up a localized string similar to Unlock profile file.
+ /// Sucht eine lokalisierte Zeichenfolge, die Unlock profile file ähnelt.
///
public static string UnlockProfileFile {
get {
@@ -10514,7 +10524,7 @@ public static string UnlockProfileFile {
}
///
- /// Looks up a localized string similar to Unlock the profile file to use the profiles!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Unlock the profile file to use the profiles! ähnelt.
///
public static string UnlockTheProfileFileMessage {
get {
@@ -10523,7 +10533,7 @@ public static string UnlockTheProfileFileMessage {
}
///
- /// Looks up a localized string similar to Untray / Bring window to foreground.
+ /// Sucht eine lokalisierte Zeichenfolge, die Untray / Bring window to foreground ähnelt.
///
public static string UntrayBringWindowToForeground {
get {
@@ -10532,7 +10542,7 @@ public static string UntrayBringWindowToForeground {
}
///
- /// Looks up a localized string similar to Update.
+ /// Sucht eine lokalisierte Zeichenfolge, die Update ähnelt.
///
public static string Update {
get {
@@ -10541,7 +10551,7 @@ public static string Update {
}
///
- /// Looks up a localized string similar to Update available!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Update available! ähnelt.
///
public static string UpdateAvailable {
get {
@@ -10550,7 +10560,7 @@ public static string UpdateAvailable {
}
///
- /// Looks up a localized string similar to Upload.
+ /// Sucht eine lokalisierte Zeichenfolge, die Upload ähnelt.
///
public static string Upload {
get {
@@ -10559,7 +10569,7 @@ public static string Upload {
}
///
- /// Looks up a localized string similar to Uptime.
+ /// Sucht eine lokalisierte Zeichenfolge, die Uptime ähnelt.
///
public static string Uptime {
get {
@@ -10568,7 +10578,7 @@ public static string Uptime {
}
///
- /// Looks up a localized string similar to URL.
+ /// Sucht eine lokalisierte Zeichenfolge, die URL ähnelt.
///
public static string URL {
get {
@@ -10577,7 +10587,7 @@ public static string URL {
}
///
- /// Looks up a localized string similar to Use cache.
+ /// Sucht eine lokalisierte Zeichenfolge, die Use cache ähnelt.
///
public static string UseCache {
get {
@@ -10586,7 +10596,7 @@ public static string UseCache {
}
///
- /// Looks up a localized string similar to Use credentials.
+ /// Sucht eine lokalisierte Zeichenfolge, die Use credentials ähnelt.
///
public static string UseCredentials {
get {
@@ -10595,7 +10605,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 {
@@ -10604,7 +10614,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 {
@@ -10613,7 +10623,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 {
@@ -10622,7 +10632,7 @@ public static string UseCustomDNSSuffix {
}
///
- /// Looks up a localized string similar to Use custom IPv4 address API.
+ /// Sucht eine lokalisierte Zeichenfolge, die Use custom IPv4 address API ähnelt.
///
public static string UseCustomIPv4AddressAPI {
get {
@@ -10631,7 +10641,7 @@ public static string UseCustomIPv4AddressAPI {
}
///
- /// Looks up a localized string similar to Use custom IPv6 address API.
+ /// Sucht eine lokalisierte Zeichenfolge, die Use custom IPv6 address API ähnelt.
///
public static string UseCustomIPv6AddressAPI {
get {
@@ -10640,7 +10650,7 @@ public static string UseCustomIPv6AddressAPI {
}
///
- /// Looks up a localized string similar to Use custom themes.
+ /// Sucht eine lokalisierte Zeichenfolge, die Use custom themes ähnelt.
///
public static string UseCustomThemes {
get {
@@ -10649,7 +10659,7 @@ public static string UseCustomThemes {
}
///
- /// Looks up a localized string similar to Use gateway credentials.
+ /// Sucht eine lokalisierte Zeichenfolge, die Use gateway credentials ähnelt.
///
public static string UseGatewayCredentials {
get {
@@ -10658,7 +10668,7 @@ public static string UseGatewayCredentials {
}
///
- /// Looks up a localized string similar to Use only TCP.
+ /// Sucht eine lokalisierte Zeichenfolge, die Use only TCP ähnelt.
///
public static string UseOnlyTCP {
get {
@@ -10667,7 +10677,7 @@ public static string UseOnlyTCP {
}
///
- /// Looks up a localized string similar to Use other.
+ /// Sucht eine lokalisierte Zeichenfolge, die Use other ähnelt.
///
public static string UseOther {
get {
@@ -10676,7 +10686,7 @@ public static string UseOther {
}
///
- /// Looks up a localized string similar to Use resolver cache.
+ /// Sucht eine lokalisierte Zeichenfolge, die Use resolver cache ähnelt.
///
public static string UseResolverCache {
get {
@@ -10685,7 +10695,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 {
@@ -10694,7 +10704,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 {
@@ -10703,7 +10713,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 {
@@ -10712,7 +10722,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 {
@@ -10721,7 +10731,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 {
@@ -10730,7 +10740,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 {
@@ -10739,7 +10749,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 {
@@ -10748,7 +10758,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 {
@@ -10757,7 +10767,7 @@ public static string ValidationFailed {
}
///
- /// Looks up a localized string similar to Value.
+ /// Sucht eine lokalisierte Zeichenfolge, die Value ähnelt.
///
public static string Value {
get {
@@ -10766,7 +10776,7 @@ public static string Value {
}
///
- /// Looks up a localized string similar to Vendor.
+ /// Sucht eine lokalisierte Zeichenfolge, die Vendor ähnelt.
///
public static string Vendor {
get {
@@ -10775,7 +10785,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 {
@@ -10784,7 +10794,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 {
@@ -10793,7 +10803,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 {
@@ -10802,7 +10812,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 {
@@ -10811,7 +10821,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 {
@@ -10820,7 +10830,7 @@ public static string VisibleApplicationsInTheBar {
}
///
- /// Looks up a localized string similar to Visual styles.
+ /// Sucht eine lokalisierte Zeichenfolge, die Visual styles ähnelt.
///
public static string VisualStyles {
get {
@@ -10829,7 +10839,7 @@ public static string VisualStyles {
}
///
- /// Looks up a localized string similar to VLAN.
+ /// Sucht eine lokalisierte Zeichenfolge, die VLAN ähnelt.
///
public static string VLAN {
get {
@@ -10838,7 +10848,7 @@ public static string VLAN {
}
///
- /// Looks up a localized string similar to Wake on LAN.
+ /// Sucht eine lokalisierte Zeichenfolge, die Wake on LAN ähnelt.
///
public static string WakeOnLAN {
get {
@@ -10847,7 +10857,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 {
@@ -10856,7 +10866,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 {
@@ -10865,7 +10875,7 @@ public static string WalkMode {
}
///
- /// Looks up a localized string similar to Could not resolve ip address for hostname!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Could not resolve ip address for hostname! ähnelt.
///
public static string WarningMessage_CouldNotResolveIPAddressForHostname {
get {
@@ -10874,9 +10884,9 @@ public static string WarningMessage_CouldNotResolveIPAddressForHostname {
}
///
- /// Looks up a localized string similar to The current profile file is not encrypted and passwords will stored unencrypted on disk!
+ /// Sucht eine lokalisierte Zeichenfolge, die The current profile file is not encrypted and passwords will stored unencrypted on disk!
///
- ///Enable profile file encryption in Settings>Profile to store credentials securely..
+ ///Enable profile file encryption in Settings>Profile to store credentials securely. ähnelt.
///
public static string WarningMessage_ProfileFileNotEncryptedStoringPasswords {
get {
@@ -10885,7 +10895,7 @@ public static string WarningMessage_ProfileFileNotEncryptedStoringPasswords {
}
///
- /// Looks up a localized string similar to Enabling this setting is not recommended. Multiple instances of the application share the same settings and profile files. The last instance to be closed may overwrite changes made by other instances..
+ /// Sucht eine lokalisierte Zeichenfolge, die Enabling this setting is not recommended. Multiple instances of the application share the same settings and profile files. The last instance to be closed may overwrite changes made by other instances. ähnelt.
///
public static string WarnMessage_MultipleInstances {
get {
@@ -10894,7 +10904,7 @@ public static string WarnMessage_MultipleInstances {
}
///
- /// Looks up a localized string similar to Run command....
+ /// Sucht eine lokalisierte Zeichenfolge, die Run command... ähnelt.
///
public static string Watermark_RunCommand {
get {
@@ -10903,7 +10913,7 @@ public static string Watermark_RunCommand {
}
///
- /// Looks up a localized string similar to Run command... (Ctrl+Shift+P).
+ /// Sucht eine lokalisierte Zeichenfolge, die Run command... (Ctrl+Shift+P) ähnelt.
///
public static string Watermark_RunCommandWithHotKey {
get {
@@ -10912,7 +10922,7 @@ public static string Watermark_RunCommandWithHotKey {
}
///
- /// Looks up a localized string similar to Web Console.
+ /// Sucht eine lokalisierte Zeichenfolge, die Web Console ähnelt.
///
public static string WebConsole {
get {
@@ -10921,7 +10931,7 @@ public static string WebConsole {
}
///
- /// Looks up a localized string similar to Website.
+ /// Sucht eine lokalisierte Zeichenfolge, die Website ähnelt.
///
public static string Website {
get {
@@ -10930,7 +10940,7 @@ public static string Website {
}
///
- /// Looks up a localized string similar to The WebView control (Microsoft Edge) cannot connect to websites with an invalid certificate!.
+ /// Sucht eine lokalisierte Zeichenfolge, die The WebView control (Microsoft Edge) cannot connect to websites with an invalid certificate! ähnelt.
///
public static string WebViewControlCertificateIsInvalidMessage {
get {
@@ -10939,7 +10949,7 @@ public static string WebViewControlCertificateIsInvalidMessage {
}
///
- /// Looks up a localized string similar to Welcome.
+ /// Sucht eine lokalisierte Zeichenfolge, die Welcome ähnelt.
///
public static string Welcome {
get {
@@ -10948,9 +10958,9 @@ public static string Welcome {
}
///
- /// Looks up a localized string similar to Thank you for using NETworkManager!
+ /// Sucht eine lokalisierte Zeichenfolge, die Thank you for using NETworkManager!
///
- ///If you like this tool, please leave a star on GitHub and recommend it to others..
+ ///If you like this tool, please leave a star on GitHub and recommend it to others. ähnelt.
///
public static string WelcomeMessage {
get {
@@ -10959,7 +10969,7 @@ public static string WelcomeMessage {
}
///
- /// Looks up a localized string similar to To provide additional features, third party services are used that are not operated by me. You can deselect them below. No data is transferred to me at any time..
+ /// Sucht eine lokalisierte Zeichenfolge, die To provide additional features, third party services are used that are not operated by me. You can deselect them below. No data is transferred to me at any time. ähnelt.
///
public static string WelcomePrivacyMessage {
get {
@@ -10968,7 +10978,7 @@ public static string WelcomePrivacyMessage {
}
///
- /// Looks up a localized string similar to White.
+ /// Sucht eine lokalisierte Zeichenfolge, die White ähnelt.
///
public static string White {
get {
@@ -10977,7 +10987,7 @@ public static string White {
}
///
- /// Looks up a localized string similar to Whois.
+ /// Sucht eine lokalisierte Zeichenfolge, die Whois ähnelt.
///
public static string Whois {
get {
@@ -10986,7 +10996,7 @@ public static string Whois {
}
///
- /// Looks up a localized string similar to Whois server not found for the domain: "{0}".
+ /// Sucht eine lokalisierte Zeichenfolge, die Whois server not found for the domain: "{0}" ähnelt.
///
public static string WhoisServerNotFoundForTheDomain {
get {
@@ -10995,7 +11005,7 @@ public static string WhoisServerNotFoundForTheDomain {
}
///
- /// Looks up a localized string similar to Wide Subnet.
+ /// Sucht eine lokalisierte Zeichenfolge, die Wide Subnet ähnelt.
///
public static string WideSubnet {
get {
@@ -11004,7 +11014,7 @@ public static string WideSubnet {
}
///
- /// Looks up a localized string similar to Width.
+ /// Sucht eine lokalisierte Zeichenfolge, die Width ähnelt.
///
public static string Width {
get {
@@ -11013,7 +11023,7 @@ public static string Width {
}
///
- /// Looks up a localized string similar to WiFi.
+ /// Sucht eine lokalisierte Zeichenfolge, die WiFi ähnelt.
///
public static string WiFi {
get {
@@ -11022,11 +11032,11 @@ public static string WiFi {
}
///
- /// Looks up a localized string similar to Access to the Wi-Fi adapter is not permitted by Windows.
+ /// Sucht eine lokalisierte Zeichenfolge, die Access to the Wi-Fi adapter is not permitted by Windows.
///
///Open the Windows settings and allow Wi-Fi access for this application.
///
- ///Restart the application afterwards to use this feature..
+ ///Restart the application afterwards to use this feature. ähnelt.
///
public static string WiFiAccessNotAvailableMessage {
get {
@@ -11035,7 +11045,7 @@ public static string WiFiAccessNotAvailableMessage {
}
///
- /// Looks up a localized string similar to Access to the network has been revoked.
+ /// Sucht eine lokalisierte Zeichenfolge, die Access to the network has been revoked ähnelt.
///
public static string WiFiConnectionStatus_AccessRevoked {
get {
@@ -11044,7 +11054,7 @@ public static string WiFiConnectionStatus_AccessRevoked {
}
///
- /// Looks up a localized string similar to Invalid credentials.
+ /// Sucht eine lokalisierte Zeichenfolge, die Invalid credentials ähnelt.
///
public static string WiFiConnectionStatus_InvalidCredential {
get {
@@ -11053,7 +11063,7 @@ public static string WiFiConnectionStatus_InvalidCredential {
}
///
- /// Looks up a localized string similar to Network not available.
+ /// Sucht eine lokalisierte Zeichenfolge, die Network not available ähnelt.
///
public static string WiFiConnectionStatus_NetworkNotAvailable {
get {
@@ -11062,7 +11072,7 @@ public static string WiFiConnectionStatus_NetworkNotAvailable {
}
///
- /// Looks up a localized string similar to Successful.
+ /// Sucht eine lokalisierte Zeichenfolge, die Successful ähnelt.
///
public static string WiFiConnectionStatus_Success {
get {
@@ -11071,7 +11081,7 @@ public static string WiFiConnectionStatus_Success {
}
///
- /// Looks up a localized string similar to Connection attempt timed out.
+ /// Sucht eine lokalisierte Zeichenfolge, die Connection attempt timed out ähnelt.
///
public static string WiFiConnectionStatus_Timeout {
get {
@@ -11080,7 +11090,7 @@ public static string WiFiConnectionStatus_Timeout {
}
///
- /// Looks up a localized string similar to -/-.
+ /// Sucht eine lokalisierte Zeichenfolge, die -/- ähnelt.
///
public static string WiFiConnectionStatus_UnspecifiedFailure {
get {
@@ -11089,7 +11099,7 @@ public static string WiFiConnectionStatus_UnspecifiedFailure {
}
///
- /// Looks up a localized string similar to Authentication protocol is not supported!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Authentication protocol is not supported! ähnelt.
///
public static string WiFiConnectionStatus_UnsupportedAuthenticationProtocol {
get {
@@ -11098,7 +11108,7 @@ public static string WiFiConnectionStatus_UnsupportedAuthenticationProtocol {
}
///
- /// Looks up a localized string similar to Window.
+ /// Sucht eine lokalisierte Zeichenfolge, die Window ähnelt.
///
public static string Window {
get {
@@ -11107,7 +11117,7 @@ public static string Window {
}
///
- /// Looks up a localized string similar to Windows DNS settings.
+ /// Sucht eine lokalisierte Zeichenfolge, die Windows DNS settings ähnelt.
///
public static string WindowsDNSSettings {
get {
@@ -11116,7 +11126,7 @@ public static string WindowsDNSSettings {
}
///
- /// Looks up a localized string similar to WPS.
+ /// Sucht eine lokalisierte Zeichenfolge, die WPS ähnelt.
///
public static string WPS {
get {
@@ -11125,7 +11135,7 @@ public static string WPS {
}
///
- /// Looks up a localized string similar to Wrong password!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Wrong password! ähnelt.
///
public static string WrongPassword {
get {
@@ -11134,7 +11144,7 @@ public static string WrongPassword {
}
///
- /// Looks up a localized string similar to Profile file could not be decrypted with the given password..
+ /// Sucht eine lokalisierte Zeichenfolge, die Profile file could not be decrypted with the given password. ähnelt.
///
public static string WrongPasswordDecryptionFailedMessage {
get {
@@ -11143,7 +11153,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 {
@@ -11152,7 +11162,7 @@ public static string WrongPasswordMessage {
}
///
- /// Looks up a localized string similar to "{0}" A dns records resolved for "{1}"!.
+ /// Sucht eine lokalisierte Zeichenfolge, die "{0}" A dns records resolved for "{1}"! ähnelt.
///
public static string XADNSRecordsResolvedForXXXMessage {
get {
@@ -11161,7 +11171,7 @@ public static string XADNSRecordsResolvedForXXXMessage {
}
///
- /// Looks up a localized string similar to {0} seconds remaining....
+ /// Sucht eine lokalisierte Zeichenfolge, die {0} seconds remaining... ähnelt.
///
public static string XXSecondsRemainingDots {
get {
@@ -11170,7 +11180,7 @@ public static string XXSecondsRemainingDots {
}
///
- /// Looks up a localized string similar to "{0}" detected as gateway ip address!.
+ /// Sucht eine lokalisierte Zeichenfolge, die "{0}" detected as gateway ip address! ähnelt.
///
public static string XXXDetectedAsGatewayIPAddress {
get {
@@ -11179,7 +11189,7 @@ public static string XXXDetectedAsGatewayIPAddress {
}
///
- /// Looks up a localized string similar to "{0}" detected as local ip address!.
+ /// Sucht eine lokalisierte Zeichenfolge, die "{0}" detected as local ip address! ähnelt.
///
public static string XXXDetectedAsLocalIPAddressMessage {
get {
@@ -11188,7 +11198,7 @@ public static string XXXDetectedAsLocalIPAddressMessage {
}
///
- /// Looks up a localized string similar to {0} disconnected!.
+ /// Sucht eine lokalisierte Zeichenfolge, die {0} disconnected! ähnelt.
///
public static string XXXDisconnected {
get {
@@ -11197,7 +11207,7 @@ public static string XXXDisconnected {
}
///
- /// Looks up a localized string similar to "{0}" is not reachable via ICMP!.
+ /// Sucht eine lokalisierte Zeichenfolge, die "{0}" is not reachable via ICMP! ähnelt.
///
public static string XXXIsNotReachableViaICMPMessage {
get {
@@ -11206,7 +11216,7 @@ public static string XXXIsNotReachableViaICMPMessage {
}
///
- /// Looks up a localized string similar to "{0}" is reachable via ICMP!.
+ /// Sucht eine lokalisierte Zeichenfolge, die "{0}" is reachable via ICMP! ähnelt.
///
public static string XXXIsReachableViaICMPMessage {
get {
@@ -11215,7 +11225,7 @@ public static string XXXIsReachableViaICMPMessage {
}
///
- /// Looks up a localized string similar to Yellow.
+ /// Sucht eine lokalisierte Zeichenfolge, die Yellow ähnelt.
///
public static string Yellow {
get {
@@ -11224,7 +11234,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 {
@@ -11233,7 +11243,7 @@ public static string Yes {
}
///
- /// Looks up a localized string similar to Your system OS is incompatible with the latest release!.
+ /// Sucht eine lokalisierte Zeichenfolge, die Your system OS is incompatible with the latest release! ähnelt.
///
public static string YourSystemOSIsIncompatibleWithTheLatestRelease {
get {
@@ -11242,7 +11252,7 @@ public static string YourSystemOSIsIncompatibleWithTheLatestRelease {
}
///
- /// Looks up a localized string similar to Zip.
+ /// Sucht eine lokalisierte Zeichenfolge, die Zip ähnelt.
///
public static string ZipCode {
get {
diff --git a/Source/NETworkManager.Localization/Resources/Strings.resx b/Source/NETworkManager.Localization/Resources/Strings.resx
index 8d826034e8..acd237281f 100644
--- a/Source/NETworkManager.Localization/Resources/Strings.resx
+++ b/Source/NETworkManager.Localization/Resources/Strings.resx
@@ -3888,4 +3888,7 @@ Right-click for more options.
To edit the hosts file, the application must be started with elevated rights!
+
+ Comment
+
\ No newline at end of file
diff --git a/Source/NETworkManager.Models/HostsFileEditor/HostsFileEditor.cs b/Source/NETworkManager.Models/HostsFileEditor/HostsFileEditor.cs
index 566913c6f4..77e867890f 100644
--- a/Source/NETworkManager.Models/HostsFileEditor/HostsFileEditor.cs
+++ b/Source/NETworkManager.Models/HostsFileEditor/HostsFileEditor.cs
@@ -2,56 +2,71 @@
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
+using System.Threading.Tasks;
using log4net;
using NETworkManager.Utilities;
namespace NETworkManager.Models.HostsFileEditor;
-public class HostsFileEditor
+public static class HostsFileEditor
{
#region Events
- public event EventHandler HostsFileChanged;
+ public static event EventHandler HostsFileChanged;
- private void OnHostsFileChanged()
+ private static void OnHostsFileChanged()
{
Log.Debug("OnHostsFileChanged - Hosts file changed.");
- HostsFileChanged?.Invoke(this, EventArgs.Empty);
+ HostsFileChanged?.Invoke(null, EventArgs.Empty);
}
#endregion
#region Variables
private static readonly ILog Log = LogManager.GetLogger(typeof(HostsFileEditor));
+
+ private static readonly FileSystemWatcher HostsFileWatcher;
///
/// Path to the hosts file.
///
private static string HostsFilePath => Path.Combine(Environment.SystemDirectory, "drivers", "etc", "hosts");
+ ///
+ /// Example values in the hosts file that should be ignored.
+ ///
+ private static readonly HashSet<(string IPAddress, string Hostname)> ExampleValuesToIgnore =
+ [
+ ("102.54.94.97", "rhino.acme.com"),
+ ("38.25.63.10", "x.acme.com")
+ ];
+
///
/// Regex to match a hosts file entry with optional comments, supporting IPv4, IPv6, and hostnames
///
- private readonly Regex _hostsFileEntryRegex = new Regex(RegexHelper.HostsEntryRegex);
+ private static readonly Regex HostsFileEntryRegex = new(RegexHelper.HostsEntryRegex);
#endregion
#region Constructor
- public HostsFileEditor()
+
+ static HostsFileEditor()
{
// Create a file system watcher to monitor changes to the hosts file
try
{
Log.Debug("HostsFileEditor - Creating file system watcher for hosts file...");
- FileSystemWatcher watcher = new();
- watcher.Path = Path.GetDirectoryName(HostsFilePath) ?? throw new InvalidOperationException("Hosts file path is invalid.");
- watcher.Filter = Path.GetFileName(HostsFilePath) ?? throw new InvalidOperationException("Hosts file name is invalid.");
- watcher.NotifyFilter = NotifyFilters.LastWrite;
+ // Create the file system watcher
+ HostsFileWatcher = new FileSystemWatcher();
+ HostsFileWatcher.Path = Path.GetDirectoryName(HostsFilePath) ?? throw new InvalidOperationException("Hosts file path is invalid.");
+ HostsFileWatcher.Filter = Path.GetFileName(HostsFilePath) ?? throw new InvalidOperationException("Hosts file name is invalid.");
+ HostsFileWatcher.NotifyFilter = NotifyFilters.LastWrite;
// Maybe fired twice. This is a known bug/feature.
// See: https://stackoverflow.com/questions/1764809/filesystemwatcher-changed-event-is-raised-twice
- watcher.Changed += (_, _) => OnHostsFileChanged();
+ HostsFileWatcher.Changed += (_, _) => OnHostsFileChanged();
- watcher.EnableRaisingEvents = true;
+ // Enable the file system watcher
+ HostsFileWatcher.EnableRaisingEvents = true;
Log.Debug("HostsFileEditor - File system watcher for hosts file created.");
}
@@ -63,11 +78,16 @@ public HostsFileEditor()
#endregion
#region Methods
+ public static Task> GetHostsFileEntriesAsync()
+ {
+ return Task.Run(GetHostsFileEntries);
+ }
+
///
///
///
///
- public IEnumerable GetHostsFileEntries()
+ private static IEnumerable GetHostsFileEntries()
{
var hostsFileLines = File.ReadAllLines(HostsFilePath);
@@ -76,7 +96,7 @@ public IEnumerable GetHostsFileEntries()
foreach (var line in hostsFileLines)
{
- var result = _hostsFileEntryRegex.Match(line.Trim());
+ var result = HostsFileEntryRegex.Match(line.Trim());
if (result.Success)
{
@@ -85,17 +105,20 @@ public IEnumerable GetHostsFileEntries()
var entry = new HostsFileEntry
{
IsEnabled = !result.Groups[1].Value.Equals("#"),
- IpAddress = result.Groups[2].Value,
- HostName = result.Groups[3].Value.Replace(@"\s", "").Split([' ']),
- Comment = result.Groups[4].Value,
+ IPAddress = result.Groups[2].Value,
+ Hostname = result.Groups[3].Value.Replace(@"\s", "").Trim(),
+ Comment = result.Groups[4].Value.TrimStart('#'),
Line = line
};
// Skip example entries
- if(!entry.IsEnabled && entry.IpAddress is "102.54.94.97" or "38.25.63.10" && entry.HostName[0] is "rhino.acme.com" or "x.acme.com")
+ if(!entry.IsEnabled)
{
- Log.Debug("GetHostsFileEntries - Matched example entry. Skipping...");
- continue;
+ if (ExampleValuesToIgnore.Contains((entry.IPAddress, entry.Hostname)))
+ {
+ Log.Debug("GetHostsFileEntries - Matched example entry. Skipping...");
+ continue;
+ }
}
entries.Add(entry);
diff --git a/Source/NETworkManager.Models/HostsFileEditor/HostsFileEntry.cs b/Source/NETworkManager.Models/HostsFileEditor/HostsFileEntry.cs
index 2453152314..eecb1d7da1 100644
--- a/Source/NETworkManager.Models/HostsFileEditor/HostsFileEntry.cs
+++ b/Source/NETworkManager.Models/HostsFileEditor/HostsFileEntry.cs
@@ -13,12 +13,13 @@ public class HostsFileEntry
///
/// IP address of the host.
///
- public string IpAddress { get; init; }
+ public string IPAddress { get; init; }
///
- /// Host name(s) of the host.
+ /// Host name(s) of the host. Multiple host names are separated by a
+ /// space (equal to the hosts file format).
///
- public string[] HostName { get; init; }
+ public string Hostname { get; init; }
///
/// Comment of the host.
@@ -43,13 +44,13 @@ public HostsFileEntry()
///
/// Indicates whether the entry is enabled or not.
/// IP address of the host.
- /// Host name(s) of the host.
+ /// Host name(s) of the host.
/// Comment of the host.
- public HostsFileEntry(bool isEnabled, string ipAddress, string[] hostName, string comment)
+ public HostsFileEntry(bool isEnabled, string ipAddress, string hostname, string comment)
{
IsEnabled = isEnabled;
- IpAddress = ipAddress;
- HostName = hostName;
+ IPAddress = ipAddress;
+ Hostname = hostname;
Comment = comment;
}
@@ -58,10 +59,10 @@ public HostsFileEntry(bool isEnabled, string ipAddress, string[] hostName, strin
///
/// Indicates whether the entry is enabled or not.
/// IP address of the host.
- /// Host name(s) of the host.
+ /// Host name(s) of the host.
/// Comment of the host.
/// Line of the entry in the hosts file.
- public HostsFileEntry(bool isEnabled, string ipAddress, string[] hostName, string comment, string line) : this(isEnabled, ipAddress, hostName, comment)
+ public HostsFileEntry(bool isEnabled, string ipAddress, string hostname, string comment, string line) : this(isEnabled, ipAddress, hostname, comment)
{
Line = line;
}
diff --git a/Source/NETworkManager.Models/Network/Connection.cs b/Source/NETworkManager.Models/Network/Connection.cs
index 24e3c270a0..866772d0a1 100644
--- a/Source/NETworkManager.Models/Network/Connection.cs
+++ b/Source/NETworkManager.Models/Network/Connection.cs
@@ -52,7 +52,7 @@ public enum TcpTableClass
}
// Cache for remote host names with some default values
- private static readonly Dictionary _remoteHostNames = new()
+ private static readonly Dictionary RemoteHostNames = new()
{
{ IPAddress.Parse("127.0.0.1"), "localhost" },
{ IPAddress.Parse("::1"), "localhost" },
@@ -94,9 +94,9 @@ private static List GetActiveTcpConnections()
var row = (MibTcpRowOwnerPid)Marshal.PtrToStructure(rowPtr, typeof(MibTcpRowOwnerPid))!;
var localAddress = new IPAddress(row.localAddr);
- var localPort = BitConverter.ToUInt16(new[] { row.localPort2, row.localPort1 }, 0);
+ var localPort = BitConverter.ToUInt16([row.localPort2, row.localPort1], 0);
var remoteAddress = new IPAddress(row.remoteAddr);
- var remotePort = BitConverter.ToUInt16(new[] { row.remotePort2, row.remotePort1 }, 0);
+ var remotePort = BitConverter.ToUInt16([row.remotePort2, row.remotePort1], 0);
var state = (TcpState)row.state;
// Get process info by PID
@@ -116,14 +116,14 @@ private static List GetActiveTcpConnections()
}
// Resolve remote host name if not cached
- if (!_remoteHostNames.ContainsKey(remoteAddress))
+ if (!RemoteHostNames.ContainsKey(remoteAddress))
{
var dnsResolverTask = DNSClient.GetInstance().ResolvePtrAsync(remoteAddress);
dnsResolverTask.Wait();
// Cache the result
- _remoteHostNames.Add(remoteAddress,
+ RemoteHostNames.Add(remoteAddress,
!dnsResolverTask.Result.HasError ? dnsResolverTask.Result.Value : "-/-");
}
@@ -133,7 +133,7 @@ private static List GetActiveTcpConnections()
localPort,
remoteAddress,
remotePort,
- _remoteHostNames.GetValueOrDefault(remoteAddress, "-/-"),
+ RemoteHostNames.GetValueOrDefault(remoteAddress, "-/-"),
state,
processId,
processName,
diff --git a/Source/NETworkManager/ViewModels/ARPTableViewModel.cs b/Source/NETworkManager/ViewModels/ARPTableViewModel.cs
index f2944390c2..dd03b2b545 100644
--- a/Source/NETworkManager/ViewModels/ARPTableViewModel.cs
+++ b/Source/NETworkManager/ViewModels/ARPTableViewModel.cs
@@ -38,11 +38,11 @@ public ARPTableViewModel(IDialogCoordinator instance)
ResultsView.Filter = o =>
{
- if (o is not ARPInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not ARPInfo info)
+ return false;
// Search by IPAddress and MACAddress
return info.IPAddress.ToString().IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
@@ -95,7 +95,7 @@ public string Search
}
}
- private ObservableCollection _results = new();
+ private ObservableCollection _results = [];
public ObservableCollection Results
{
@@ -429,8 +429,8 @@ private async Task Refresh()
IsRefreshing = true;
Results.Clear();
-
- (await ARP.GetTableAsync()).ForEach(x => Results.Add(x));
+
+ (await ARP.GetTableAsync()).ForEach(Results.Add);
IsRefreshing = false;
}
diff --git a/Source/NETworkManager/ViewModels/AWSSessionManagerHostViewModel.cs b/Source/NETworkManager/ViewModels/AWSSessionManagerHostViewModel.cs
index 7b77c82db8..428a03d3ad 100644
--- a/Source/NETworkManager/ViewModels/AWSSessionManagerHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/AWSSessionManagerHostViewModel.cs
@@ -650,7 +650,7 @@ private async Task SyncAllInstanceIDsFromAWS()
}
// Make the user happy, let him see a reload animation (and he cannot spam the reload command)
- await Task.Delay(2000);
+ await Task.Delay(2500);
Log.Info("All Instance IDs synced from AWS!");
@@ -679,7 +679,7 @@ private async Task SyncGroupInstanceIDsFromAWS(string group)
}
// Make the user happy, let him see a reload animation (and he cannot spam the reload command)
- await Task.Delay(2000);
+ await Task.Delay(2500);
Log.Info("Group synced!");
@@ -998,12 +998,12 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
+ if (string.IsNullOrEmpty(Search))
+ return true ;
+
if (o is not ProfileInfo info)
return false;
- if (string.IsNullOrEmpty(Search))
- return true;
-
var search = Search.Trim();
// Search by: Tag=xxx (exact match, ignore case)
diff --git a/Source/NETworkManager/ViewModels/AboutViewModel.cs b/Source/NETworkManager/ViewModels/AboutViewModel.cs
index c4b1913122..4642b17f5d 100644
--- a/Source/NETworkManager/ViewModels/AboutViewModel.cs
+++ b/Source/NETworkManager/ViewModels/AboutViewModel.cs
@@ -42,7 +42,7 @@ private async Task CheckForUpdatesAsync()
IsUpdateCheckRunning = true;
// Show a loading animation for the user
- await Task.Delay(1000);
+ await Task.Delay(1250);
var updater = new Updater();
diff --git a/Source/NETworkManager/ViewModels/ConnectionsViewModel.cs b/Source/NETworkManager/ViewModels/ConnectionsViewModel.cs
index 420296ebb9..c12096632b 100644
--- a/Source/NETworkManager/ViewModels/ConnectionsViewModel.cs
+++ b/Source/NETworkManager/ViewModels/ConnectionsViewModel.cs
@@ -39,12 +39,12 @@ public ConnectionsViewModel(IDialogCoordinator instance)
IPAddressHelper.CompareIPAddresses(x.LocalIPAddress, y.LocalIPAddress));
ResultsView.Filter = o =>
- {
- if (o is not ConnectionInfo info)
- return false;
-
+ {
if (string.IsNullOrEmpty(Search))
- return true;
+ return true;
+
+ if (o is not ConnectionInfo info)
+ return false;
// Search by local/remote IP Address, local/remote Port, Protocol and State
return info.LocalIPAddress.ToString().IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
@@ -346,8 +346,8 @@ private async Task Refresh()
IsRefreshing = true;
Results.Clear();
-
- (await Connection.GetActiveTcpConnectionsAsync()).ForEach(x => Results.Add(x));
+
+ (await Connection.GetActiveTcpConnectionsAsync()).ForEach(Results.Add);
IsRefreshing = false;
}
diff --git a/Source/NETworkManager/ViewModels/DNSLookupHostViewModel.cs b/Source/NETworkManager/ViewModels/DNSLookupHostViewModel.cs
index 14d5b7aba1..8ef01da9d7 100644
--- a/Source/NETworkManager/ViewModels/DNSLookupHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/DNSLookupHostViewModel.cs
@@ -372,11 +372,13 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
+ if (string.IsNullOrEmpty(Search))
+ return true;
+
if (o is not ProfileInfo info)
return false;
- if (string.IsNullOrEmpty(Search))
- return true;
+
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/HostsFileEditorViewModel.cs b/Source/NETworkManager/ViewModels/HostsFileEditorViewModel.cs
index 7f4322a743..835e06f7e0 100644
--- a/Source/NETworkManager/ViewModels/HostsFileEditorViewModel.cs
+++ b/Source/NETworkManager/ViewModels/HostsFileEditorViewModel.cs
@@ -1,10 +1,14 @@
using System;
+using System.Collections;
using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using System.Timers;
using System.Windows;
+using System.Windows.Data;
using System.Windows.Input;
using System.Windows.Threading;
using log4net;
@@ -28,6 +32,85 @@ public class HostsFileEditorViewModel : ViewModelBase
private readonly bool _isLoading;
+ private string _search;
+ public string Search
+ {
+ get => _search;
+ set
+ {
+ if (value == _search)
+ return;
+
+ _search = value;
+
+ ResultsView.Refresh();
+
+ OnPropertyChanged();
+ }
+ }
+
+ private ObservableCollection _results = [];
+
+ public ObservableCollection Results
+ {
+ get => _results;
+ set
+ {
+ if (value == _results)
+ return;
+
+ _results = value;
+ OnPropertyChanged();
+ }
+ }
+
+ public ICollectionView ResultsView { get; }
+
+ private HostsFileEntry _selectedResult;
+
+ public HostsFileEntry SelectedResult
+ {
+ get => _selectedResult;
+ set
+ {
+ if (value == _selectedResult)
+ return;
+
+ _selectedResult = value;
+ OnPropertyChanged();
+ }
+ }
+
+ private IList _selectedResults = new ArrayList();
+
+ public IList SelectedResults
+ {
+ get => _selectedResults;
+ set
+ {
+ if (Equals(value, _selectedResults))
+ return;
+
+ _selectedResults = value;
+ OnPropertyChanged();
+ }
+ }
+
+ private bool _isRefreshing;
+
+ public bool IsRefreshing
+ {
+ get => _isRefreshing;
+ set
+ {
+ if (value == _isRefreshing)
+ return;
+
+ _isRefreshing = value;
+ OnPropertyChanged();
+ }
+ }
+
private bool _isStatusMessageDisplayed;
public bool IsStatusMessageDisplayed
@@ -65,17 +148,37 @@ private set
public HostsFileEditorViewModel(IDialogCoordinator instance)
{
_isLoading = true;
-
_dialogCoordinator = instance;
- LoadSettings();
+ // Result view + search
+ ResultsView = CollectionViewSource.GetDefaultView(Results);
+ ResultsView.Filter = o =>
+ {
+ if (string.IsNullOrEmpty(Search))
+ return true;
- var x = new HostsFileEditor();
+ if (o is not HostsFileEntry entry)
+ return false;
- foreach (var y in x.GetHostsFileEntries())
+ return entry.IPAddress.IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
+ entry.Hostname.IndexOf(Search, StringComparison.OrdinalIgnoreCase)> -1 ||
+ entry.Comment.IndexOf(Search, StringComparison.OrdinalIgnoreCase)> -1;
+ };
+
+ // Get hosts file entries
+ Refresh().ConfigureAwait(false);
+
+ // Watch hosts file for changes
+ HostsFileEditor.HostsFileChanged += async (_, _) =>
{
- Debug.WriteLine("IsEnabled: " + y.IsEnabled + " IpAddress: " + y.IpAddress + " HostName: " + y.HostName + " Comment: " + y.Comment);
- }
+ StatusMessage = "Hosts file changed on disk. Reloading...";
+ IsStatusMessageDisplayed = true;
+
+ Application.Current.Dispatcher.Invoke(() =>
+ {
+ Refresh().ConfigureAwait(false);
+ });
+ };
_isLoading = false;
}
@@ -107,6 +210,23 @@ await _dialogCoordinator.ShowMessageAsync(this, Strings.Error, ex.Message,
#region Methods
+ private async Task Refresh()
+ {
+ if(IsRefreshing)
+ return;
+
+ IsRefreshing = true;
+
+ Results.Clear();
+
+ (await HostsFileEditor.GetHostsFileEntriesAsync()).ToList().ForEach(Results.Add);
+
+ StatusMessage = "Hosts file reloaded at " + DateTime.Now;
+ IsStatusMessageDisplayed = true;
+
+ IsRefreshing = false;
+ }
+
public void OnViewVisible()
{
diff --git a/Source/NETworkManager/ViewModels/IPApiDNSResolverWidgetViewModel.cs b/Source/NETworkManager/ViewModels/IPApiDNSResolverWidgetViewModel.cs
index 027847f1d6..ab513b2090 100644
--- a/Source/NETworkManager/ViewModels/IPApiDNSResolverWidgetViewModel.cs
+++ b/Source/NETworkManager/ViewModels/IPApiDNSResolverWidgetViewModel.cs
@@ -88,7 +88,7 @@ private async Task CheckAsync()
Result = null;
// Make the user happy, let him see a reload animation (and he cannot spam the reload command)
- await Task.Delay(2000);
+ await Task.Delay(2500);
Result = await DNSResolverService.GetInstance().GetDNSResolverAsync();
diff --git a/Source/NETworkManager/ViewModels/IPApiIPGeolocationWidgetViewModel.cs b/Source/NETworkManager/ViewModels/IPApiIPGeolocationWidgetViewModel.cs
index 5f68a2c463..c72f3e9e68 100644
--- a/Source/NETworkManager/ViewModels/IPApiIPGeolocationWidgetViewModel.cs
+++ b/Source/NETworkManager/ViewModels/IPApiIPGeolocationWidgetViewModel.cs
@@ -90,7 +90,7 @@ private async Task CheckAsync()
Result = null;
// Make the user happy, let him see a reload animation (and he cannot spam the reload command)
- await Task.Delay(2000);
+ await Task.Delay(2500);
Result = await IPGeolocationService.GetInstance().GetIPGeolocationAsync();
diff --git a/Source/NETworkManager/ViewModels/IPGeolocationHostViewModel.cs b/Source/NETworkManager/ViewModels/IPGeolocationHostViewModel.cs
index 11cbed1e30..b0bb7f42eb 100644
--- a/Source/NETworkManager/ViewModels/IPGeolocationHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/IPGeolocationHostViewModel.cs
@@ -373,11 +373,11 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
- return true;
+ return true;
+
+ if (o is not ProfileInfo info)
+ return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/IPScannerHostViewModel.cs b/Source/NETworkManager/ViewModels/IPScannerHostViewModel.cs
index 54896a8470..a352707c3a 100644
--- a/Source/NETworkManager/ViewModels/IPScannerHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/IPScannerHostViewModel.cs
@@ -377,12 +377,12 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
+ if (string.IsNullOrEmpty(Search))
+ return true;
+
if (o is not ProfileInfo info)
return false;
- if (string.IsNullOrEmpty(Search))
- return true;
-
var search = Search.Trim();
// Search by: Tag=xxx (exact match, ignore case)
diff --git a/Source/NETworkManager/ViewModels/ListenersViewModel.cs b/Source/NETworkManager/ViewModels/ListenersViewModel.cs
index 2fbb0c11e4..5b7ecb8643 100644
--- a/Source/NETworkManager/ViewModels/ListenersViewModel.cs
+++ b/Source/NETworkManager/ViewModels/ListenersViewModel.cs
@@ -39,12 +39,12 @@ public ListenersViewModel(IDialogCoordinator instance)
ResultsView.Filter = o =>
{
+ if (string.IsNullOrEmpty(Search))
+ return true;
+
if (o is not ListenerInfo info)
return false;
- if (string.IsNullOrEmpty(Search))
- return true;
-
// Search by IP Address, Port and Protocol
return info.IPAddress.ToString().IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
info.Port.ToString().IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
@@ -335,8 +335,8 @@ private async Task Refresh()
IsRefreshing = true;
Results.Clear();
-
- (await Listener.GetAllActiveListenersAsync()).ForEach(x => Results.Add(x));
+
+ (await Listener.GetAllActiveListenersAsync()).ForEach(Results.Add);
IsRefreshing = false;
}
diff --git a/Source/NETworkManager/ViewModels/NetworkInterfaceViewModel.cs b/Source/NETworkManager/ViewModels/NetworkInterfaceViewModel.cs
index cbddcf2b1e..b845a7f535 100644
--- a/Source/NETworkManager/ViewModels/NetworkInterfaceViewModel.cs
+++ b/Source/NETworkManager/ViewModels/NetworkInterfaceViewModel.cs
@@ -945,7 +945,7 @@ private async void ReloadNetworkInterfaces()
IsNetworkInterfaceLoading = true;
// Make the user happy, let him see a reload animation (and he cannot spam the reload command)
- await Task.Delay(2000);
+ await Task.Delay(2500);
// Store the last selected id
var id = SelectedNetworkInterface?.Id ?? string.Empty;
@@ -1335,12 +1335,12 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
- return true;
+ return true;
+ if (o is not ProfileInfo info)
+ return false;
+
var search = Search.Trim();
// Search by: Tag=xxx (exact match, ignore case)
diff --git a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs
index 2cbb4a41ca..413f213ebb 100644
--- a/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/PingMonitorHostViewModel.cs
@@ -594,11 +594,11 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not ProfileInfo info)
+ return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/PortScannerHostViewModel.cs b/Source/NETworkManager/ViewModels/PortScannerHostViewModel.cs
index ec1f7ac912..bac9aa7a66 100644
--- a/Source/NETworkManager/ViewModels/PortScannerHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/PortScannerHostViewModel.cs
@@ -378,12 +378,12 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
+ if (string.IsNullOrEmpty(Search))
+ return true;
+
if (o is not ProfileInfo info)
return false;
- if (string.IsNullOrEmpty(Search))
- return true;
-
var search = Search.Trim();
// Search by: Tag=xxx (exact match, ignore case)
diff --git a/Source/NETworkManager/ViewModels/PowerShellHostViewModel.cs b/Source/NETworkManager/ViewModels/PowerShellHostViewModel.cs
index f88a0a0b56..df0b01342c 100644
--- a/Source/NETworkManager/ViewModels/PowerShellHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/PowerShellHostViewModel.cs
@@ -637,11 +637,11 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not ProfileInfo info)
+ return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/ProfilesViewModel.cs b/Source/NETworkManager/ViewModels/ProfilesViewModel.cs
index 86f21862ab..e71def69ba 100644
--- a/Source/NETworkManager/ViewModels/ProfilesViewModel.cs
+++ b/Source/NETworkManager/ViewModels/ProfilesViewModel.cs
@@ -264,11 +264,11 @@ private void SetProfilesView(GroupInfo group, ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not ProfileInfo info)
+ return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/PuTTYHostViewModel.cs b/Source/NETworkManager/ViewModels/PuTTYHostViewModel.cs
index c40c225d7a..e560490cf1 100644
--- a/Source/NETworkManager/ViewModels/PuTTYHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/PuTTYHostViewModel.cs
@@ -714,11 +714,11 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not ProfileInfo info)
+ return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/RemoteDesktopHostViewModel.cs b/Source/NETworkManager/ViewModels/RemoteDesktopHostViewModel.cs
index 06b8e44942..9995bbf22c 100644
--- a/Source/NETworkManager/ViewModels/RemoteDesktopHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/RemoteDesktopHostViewModel.cs
@@ -586,11 +586,11 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not ProfileInfo info)
+ return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/SNMPHostViewModel.cs b/Source/NETworkManager/ViewModels/SNMPHostViewModel.cs
index d606bb5230..d624478b5b 100644
--- a/Source/NETworkManager/ViewModels/SNMPHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/SNMPHostViewModel.cs
@@ -393,11 +393,11 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not ProfileInfo info)
+ return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/SettingsAutostartViewModel.cs b/Source/NETworkManager/ViewModels/SettingsAutostartViewModel.cs
index f7274df5db..72c232efac 100644
--- a/Source/NETworkManager/ViewModels/SettingsAutostartViewModel.cs
+++ b/Source/NETworkManager/ViewModels/SettingsAutostartViewModel.cs
@@ -47,7 +47,7 @@ private async Task EnableDisableAutostart(bool enable)
await AutostartManager.DisableAsync();
// Make the user happy, let him see a reload animation (and he cannot spam the reload command)
- await Task.Delay(2000);
+ await Task.Delay(2500);
}
catch (Exception ex)
{
diff --git a/Source/NETworkManager/ViewModels/SettingsLanguageViewModel.cs b/Source/NETworkManager/ViewModels/SettingsLanguageViewModel.cs
index 98904dc020..ef6213c807 100644
--- a/Source/NETworkManager/ViewModels/SettingsLanguageViewModel.cs
+++ b/Source/NETworkManager/ViewModels/SettingsLanguageViewModel.cs
@@ -27,7 +27,7 @@ public SettingsLanguageViewModel()
if (string.IsNullOrEmpty(Search))
return true;
- if (!(o is LocalizationInfo info))
+ if (o is not LocalizationInfo info)
return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/TigerVNCHostViewModel.cs b/Source/NETworkManager/ViewModels/TigerVNCHostViewModel.cs
index b93eb53032..9240e006f6 100644
--- a/Source/NETworkManager/ViewModels/TigerVNCHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/TigerVNCHostViewModel.cs
@@ -512,13 +512,12 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.GroupDescriptions.Add(new PropertyGroupDescription(nameof(ProfileInfo.Group)));
Profiles.Filter = o =>
- {
+ {if (string.IsNullOrEmpty(Search))
+ return true;
+
if (o is not ProfileInfo info)
return false;
- if (string.IsNullOrEmpty(Search))
- return true;
-
var search = Search.Trim();
// Search by: Tag=xxx (exact match, ignore case)
diff --git a/Source/NETworkManager/ViewModels/TracerouteHostViewModel.cs b/Source/NETworkManager/ViewModels/TracerouteHostViewModel.cs
index c43a0b1760..dee7c15f94 100644
--- a/Source/NETworkManager/ViewModels/TracerouteHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/TracerouteHostViewModel.cs
@@ -378,11 +378,11 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not ProfileInfo info)
+ return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/WakeOnLANViewModel.cs b/Source/NETworkManager/ViewModels/WakeOnLANViewModel.cs
index 6ff7c1e246..0647f46678 100644
--- a/Source/NETworkManager/ViewModels/WakeOnLANViewModel.cs
+++ b/Source/NETworkManager/ViewModels/WakeOnLANViewModel.cs
@@ -369,7 +369,7 @@ private async Task WakeUp(WakeOnLANInfo info)
WakeOnLAN.Send(info);
// Make the user happy, let him see a reload animation (and he cannot spam the reload command)
- await Task.Delay(2000);
+ await Task.Delay(2500);
StatusMessage = Strings.MagicPacketSentMessage;
IsStatusMessageDisplayed = true;
@@ -464,11 +464,11 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not ProfileInfo info)
+ return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/WebConsoleHostViewModel.cs b/Source/NETworkManager/ViewModels/WebConsoleHostViewModel.cs
index b8a672cd76..59dbf9c47e 100644
--- a/Source/NETworkManager/ViewModels/WebConsoleHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/WebConsoleHostViewModel.cs
@@ -482,11 +482,11 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not ProfileInfo info)
+ return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/WhoisHostViewModel.cs b/Source/NETworkManager/ViewModels/WhoisHostViewModel.cs
index 66690ca5ea..68351a70ef 100644
--- a/Source/NETworkManager/ViewModels/WhoisHostViewModel.cs
+++ b/Source/NETworkManager/ViewModels/WhoisHostViewModel.cs
@@ -372,11 +372,11 @@ private void SetProfilesView(ProfileInfo profile = null)
Profiles.Filter = o =>
{
- if (o is not ProfileInfo info)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not ProfileInfo info)
+ return false;
var search = Search.Trim();
diff --git a/Source/NETworkManager/ViewModels/WiFiConnectViewModel.cs b/Source/NETworkManager/ViewModels/WiFiConnectViewModel.cs
index df40ca1548..90891b99d3 100644
--- a/Source/NETworkManager/ViewModels/WiFiConnectViewModel.cs
+++ b/Source/NETworkManager/ViewModels/WiFiConnectViewModel.cs
@@ -345,13 +345,13 @@ public async Task CheckWpsAsync()
IsWpsChecking = true;
// Make the user happy, let him see a reload animation (and he cannot spam the reload command)
- await Task.Delay(1000);
+ await Task.Delay(1250);
IsWpsAvailable =
await WiFi.IsWpsAvailable(Options.AdapterInfo.WiFiAdapter, Options.NetworkInfo.AvailableNetwork);
// Make the user happy, let him see a reload animation (and he cannot spam the reload command)
- await Task.Delay(1000);
+ await Task.Delay(1250);
IsWpsChecking = false;
}
diff --git a/Source/NETworkManager/ViewModels/WiFiViewModel.cs b/Source/NETworkManager/ViewModels/WiFiViewModel.cs
index 8d6c713639..07a01c55b6 100644
--- a/Source/NETworkManager/ViewModels/WiFiViewModel.cs
+++ b/Source/NETworkManager/ViewModels/WiFiViewModel.cs
@@ -471,29 +471,28 @@ public WiFiViewModel(IDialogCoordinator instance)
ListSortDirection.Ascending));
NetworksView.Filter = o =>
{
- if (o is not WiFiNetworkInfo info)
- return false;
-
- if (info.Radio == WiFiRadio.GHz2dot4 && !Show2dot4GHzNetworks)
- return false;
-
- if (info.Radio == WiFiRadio.GHz5 && !Show5GHzNetworks)
- return false;
-
- if (info.Radio == WiFiRadio.GHz6 && !Show6GHzNetworks)
- return false;
-
if (string.IsNullOrEmpty(Search))
return true;
+
+ if (o is not WiFiNetworkInfo info)
+ return false;
- // Search by: SSID, Security, Frequency , Channel, BSSID (MAC address), Vendor, Phy kind
- return info.AvailableNetwork.Ssid.IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
- info.NetworkAuthenticationType.IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
- $"{info.ChannelCenterFrequencyInGigahertz}".IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
- $"{info.Channel}".IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
- info.AvailableNetwork.Bssid.IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
- info.Vendor.IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
- info.PhyKind.IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1;
+ switch (info.Radio)
+ {
+ case WiFiRadio.GHz2dot4 when !Show2dot4GHzNetworks:
+ case WiFiRadio.GHz5 when !Show5GHzNetworks:
+ case WiFiRadio.GHz6 when !Show6GHzNetworks:
+ return false;
+ default:
+ // Search by: SSID, Security, Frequency , Channel, BSSID (MAC address), Vendor, Phy kind
+ return info.AvailableNetwork.Ssid.IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
+ info.NetworkAuthenticationType.IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
+ $"{info.ChannelCenterFrequencyInGigahertz}".IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
+ $"{info.Channel}".IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
+ info.AvailableNetwork.Bssid.IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
+ info.Vendor.IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1 ||
+ info.PhyKind.IndexOf(Search, StringComparison.OrdinalIgnoreCase) > -1;
+ }
};
// Load network adapters
diff --git a/Source/NETworkManager/Views/ARPTableView.xaml b/Source/NETworkManager/Views/ARPTableView.xaml
index fb5b342a0d..7a6eb1f49a 100644
--- a/Source/NETworkManager/Views/ARPTableView.xaml
+++ b/Source/NETworkManager/Views/ARPTableView.xaml
@@ -38,8 +38,8 @@
+ Width="250" Text="{Binding Path=Search, UpdateSourceTrigger=PropertyChanged}"
+ Style="{StaticResource ResourceKey=SearchTextBox}" />
-
-
+
@@ -141,7 +141,7 @@
-
+
diff --git a/Source/NETworkManager/Views/HostsFileEditorView.xaml b/Source/NETworkManager/Views/HostsFileEditorView.xaml
index d238ba1423..16ea2ee793 100644
--- a/Source/NETworkManager/Views/HostsFileEditorView.xaml
+++ b/Source/NETworkManager/Views/HostsFileEditorView.xaml
@@ -8,17 +8,148 @@
xmlns:converters="clr-namespace:NETworkManager.Converters;assembly=NETworkManager.Converters"
xmlns:dialog="clr-namespace:MahApps.Metro.Controls.Dialogs;assembly=MahApps.Metro"
xmlns:viewModels="clr-namespace:NETworkManager.ViewModels"
+ xmlns:hostsFileEditor="clr-namespace:NETworkManager.Models.HostsFileEditor;assembly=NETworkManager.Models"
xmlns:localization="clr-namespace:NETworkManager.Localization.Resources;assembly=NETworkManager.Localization"
xmlns:settings="clr-namespace:NETworkManager.Settings;assembly=NETworkManager.Settings"
+ xmlns:mahAppsControls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
+ xmlns:controls="clr-namespace:NETworkManager.Controls;assembly=NETworkManager.Controls"
dialog:DialogParticipation.Register="{Binding}"
mc:Ignorable="d" d:DataContext="{d:DesignInstance viewModels:HostsFileEditorViewModel}">
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -32,8 +30,6 @@
-
-
@@ -123,33 +119,56 @@
Binding="{Binding Path=(hostsFileEditor:HostsFileEntry.IPAddress)}"
SortMemberPath="IPAddress"
MinWidth="150" />
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+